diff --git a/app/layout.tsx b/app/layout.tsx index 421d99b..c0945a8 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,20 +1,8 @@ import type { Metadata } from "next"; import "./globals.css"; -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'; - import MainHeader from "@/components/header/main"; - +import MainFooter from "@/components/footer/main"; export const metadata: Metadata = { title: 'AderKI Blog', @@ -50,71 +38,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
{children} - -
-
    -
  • Socials

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

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

    lang
  • -
  • - cloudberrygames -
  • -
  • - northfamily -
  • -
-
+
diff --git a/components/footer/main.tsx b/components/footer/main.tsx new file mode 100644 index 0000000..8201046 --- /dev/null +++ b/components/footer/main.tsx @@ -0,0 +1,81 @@ + +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'; + +export default function MainFooter() { + return ( + + ); +} \ No newline at end of file