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 (
+
+ );
+};
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 (
-
-