From ab5eedeb07f695d2710aa6bb686e45fd3770fe38 Mon Sep 17 00:00:00 2001 From: Radiquum Date: Fri, 25 Jul 2025 01:36:04 +0500 Subject: [PATCH] feat: add footer --- app/Section/Footer.tsx | 60 ++++++++++++++++++++++++++++++++++++++++++ app/page.tsx | 24 ++++++++++------- 2 files changed, 75 insertions(+), 9 deletions(-) create mode 100644 app/Section/Footer.tsx diff --git a/app/Section/Footer.tsx b/app/Section/Footer.tsx new file mode 100644 index 0000000..c2e1321 --- /dev/null +++ b/app/Section/Footer.tsx @@ -0,0 +1,60 @@ +import { Section } from "../components/Section"; + +const artists = [ + { + name: "sleepy_muzzle", + url: "https://t.me/rerandpulseup", + }, + { + name: "yoshi_ruko", + url: "https://t.me/yoshi_ruko", + }, + { + name: "ketfox", + url: "https://vk.com/ketfox18", + }, + { + name: "whizzie", + url: "https://bsky.app/profile/whizzie.bsky.social", + }, +]; + +export const Footer = () => { + return ( +
+
+
+
+ Arts by: +
+ {artists.map((item) => ( + + {item.name} + + ))} +
+
+
+ Font: LT Superior by + + LyonsType + + + (License) + +
+
+
+
+ ); +}; diff --git a/app/page.tsx b/app/page.tsx index a396882..93f83cc 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,5 +1,6 @@ import { Characters } from "./Section/Characters"; import { Contacts } from "./Section/Contacts"; +import { Footer } from "./Section/Footer"; import { Intro } from "./Section/Intro"; import { Photos } from "./Section/Photos"; import { Projects } from "./Section/Projects"; @@ -7,16 +8,21 @@ import { Socials } from "./Section/Socials"; export default function Home() { return ( -
-
- - - - +
+
+
+ + + + +
+
+ + +
-
- - +
+
);