From 7113768663d4f1d871e52624302e94a27581ba27 Mon Sep 17 00:00:00 2001 From: AderKonstantin Date: Wed, 26 Mar 2025 13:41:10 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(footer):=20Add=20social=20medi?= =?UTF-8?q?a=20icons=20and=20game/project=20icons=20to=20footer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds new SVG icons for Mastodon, GitHub, Instagram, and Steam to the footer. It also adds icons for a gamepad and a project icon. --- app/page.tsx | 88 ++++++++++++++++++++++++++++++++++++++------ public/gamepad.svg | 11 ++++++ public/github.svg | 1 + public/instagram.svg | 1 + public/mastodon.svg | 1 + public/project.svg | 1 + public/steam.svg | 1 + 7 files changed, 93 insertions(+), 11 deletions(-) create mode 100644 public/gamepad.svg create mode 100644 public/github.svg create mode 100644 public/instagram.svg create mode 100644 public/mastodon.svg create mode 100644 public/project.svg create mode 100644 public/steam.svg diff --git a/app/page.tsx b/app/page.tsx index f306f40..a258099 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,6 +1,14 @@ import searchPic from '../public/search.svg'; +import mastodonPic from '../public/mastodon.svg'; +import githubPic from '../public/github.svg'; +import instagramPic from '../public/instagram.svg'; +import steamPic from '../public/steam.svg'; + +import gamePic from '../public/gamepad.svg'; +import projectPic from '../public/project.svg'; + import Image from "next/image"; import Link from "next/link"; import AnimatedLink from '../components/animatedLink'; @@ -21,6 +29,18 @@ const blogposts = [ publish: '2023-09-25', get_absolute_url: '/blog/science-video-games', }, + { + label: 'How to install Docker & Docker Compose', + body: 'Guide to install Docker & Docker Compose on your machine.', + publish: '2023-09-25', + get_absolute_url: '/blog/docker-installation', + }, + { + label: 'Rocket Science', + body: 'Discover how rocket are work.', + publish: '2023-09-25', + get_absolute_url: '/blog/rocket-science', + }, ]; export default function Home() { @@ -49,7 +69,7 @@ export default function Home() {

- Hello. I am is a programmer, hacker, and gamer. Love comics, coding, read books. There I am posting articles about science and another staff, that’s im like. + Hello. I am is a programmer, hacker, and gamer. Love comics, coding, read books. There I am posting articles about science and another staff, that’s im like.

@@ -61,20 +81,66 @@ export default function Home() {
    -
  • Socials

  • -
  • Instagram
  • -
  • Mastodon
  • -
  • GitHub
  • -
  • Steam
  • +
  • Socials

  • +
  • + + lang + +
  • +
  • + + lang + +
  • +
  • + + lang + +
  • +
  • + + lang + +
    -
  • Games

  • -
  • Joe The Rabbit
  • +
  • Games

    lang
  • +
  • + Robot Fire +
    -
  • Other Projects

  • -
  • Ader Berry Bot (Telegram)
  • -
  • Store
  • +
  • Other Projects

    lang
  • +
  • + cloudberrygames +
  • +
  • + northfamily +
diff --git a/public/gamepad.svg b/public/gamepad.svg new file mode 100644 index 0000000..d5f0644 --- /dev/null +++ b/public/gamepad.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/github.svg b/public/github.svg new file mode 100644 index 0000000..afb1814 --- /dev/null +++ b/public/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/instagram.svg b/public/instagram.svg new file mode 100644 index 0000000..8fc9c72 --- /dev/null +++ b/public/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/mastodon.svg b/public/mastodon.svg new file mode 100644 index 0000000..69ab9c0 --- /dev/null +++ b/public/mastodon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/project.svg b/public/project.svg new file mode 100644 index 0000000..465269a --- /dev/null +++ b/public/project.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/steam.svg b/public/steam.svg new file mode 100644 index 0000000..ba29e7d --- /dev/null +++ b/public/steam.svg @@ -0,0 +1 @@ + \ No newline at end of file