diff --git a/src/web/src/components/footer/content.jsx b/src/web/src/components/footer/content.jsx index 347a0d6..c10b0d5 100644 --- a/src/web/src/components/footer/content.jsx +++ b/src/web/src/components/footer/content.jsx @@ -1,6 +1,59 @@ +"use client" + +import Link from "next/link"; +import { motion } from "framer-motion"; + +const Items = [ + { id: 0, href: "https://github.com/timmypidashev/web", label: "Source", color: "green" }, + { id: 1, href: "https://github.com/timmypidashev", label: "Github", color: "yellow" }, + { id: 3, href: "https://linkedin.com/in/timothy-pidashev-9055922a7", label: "Linkedin", color: "blue" }, + { id: 4, href: "https://instagram.com/timmypidashev", label: "Instagram", color: "purple" }, + { id: 5, href: "https://null", label: "Contact", color: "aqua" }, +]; + +const ItemColors = { + green: "text-light-green-1 dark:text-dark-green-1", + yellow: "text-light-yellow-1 dark:text-dark-yellow-1", + blue: "text-light-blue-1 dark:text-dark-blue-1", + purple: "text-light-purple-1 dark:text-dark-purple-1", + aqua: "text-light-aqua-1 dark:text-dark-aqua-1" +}; + function Content() { return ( -
+ +
+ {Items.map((item) => ( + + {item.label} + + ))} +
+
); }