From c494a8bec3e46114fdb1664fc30e3ee78bb7bdc1 Mon Sep 17 00:00:00 2001 From: l3wdfut4pwr l3wdfut4pwr Date: Thu, 22 Jan 2026 09:04:23 +0200 Subject: update footer --- public/icons/download.svg | 3 +++ public/icons/faq.svg | 4 ++++ public/icons/premium.svg | 3 +++ src/app/faq/page.tsx | 3 +++ src/components/footer/Footer.tsx | 46 ++++++++++++++++++++++++++++++++++++++++ src/components/header/NavBar.tsx | 2 +- src/components/header/SubNav.tsx | 2 +- 7 files changed, 61 insertions(+), 2 deletions(-) create mode 100644 public/icons/download.svg create mode 100644 public/icons/faq.svg create mode 100644 public/icons/premium.svg create mode 100644 src/app/faq/page.tsx diff --git a/public/icons/download.svg b/public/icons/download.svg new file mode 100644 index 0000000..56f933b --- /dev/null +++ b/public/icons/download.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/icons/faq.svg b/public/icons/faq.svg new file mode 100644 index 0000000..07eb76e --- /dev/null +++ b/public/icons/faq.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/icons/premium.svg b/public/icons/premium.svg new file mode 100644 index 0000000..2ec4ffe --- /dev/null +++ b/public/icons/premium.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx new file mode 100644 index 0000000..402f845 --- /dev/null +++ b/src/app/faq/page.tsx @@ -0,0 +1,3 @@ +export default function Faq() { + return
; +} diff --git a/src/components/footer/Footer.tsx b/src/components/footer/Footer.tsx index 9b2a3f2..d33a66f 100644 --- a/src/components/footer/Footer.tsx +++ b/src/components/footer/Footer.tsx @@ -1,4 +1,9 @@ +import Link from 'next/link'; +import Discord from '@icons/discord.svg'; +import Premium from '@icons/premium.svg'; +import Faq from '@icons/faq.svg'; import Logo from '@icons/logo.svg'; +import Download from '@icons/download.svg'; import ArtberryIcon from '@icons/artberry.svg'; export function Footer() { @@ -19,6 +24,47 @@ export function Footer() { © 2025 artberry.xyz +
+
+
+ + + Загрузить контент + + + + FAQ + + + + Премиум + + + + Сообщество + +
+
+ Теги + Персонажи + Категории + Коллекции + Рандом +
+
+
+
); } diff --git a/src/components/header/NavBar.tsx b/src/components/header/NavBar.tsx index e83d238..217be3a 100644 --- a/src/components/header/NavBar.tsx +++ b/src/components/header/NavBar.tsx @@ -7,7 +7,7 @@ import DiscordIcon from '@icons/discord.svg'; import { Switch } from '@/components/ui/switch'; export function NavBar() { return ( -
+
+
ТЕГИ -- cgit v1.3-3-g829e