diff --git a/components/SocialLinks.tsx b/components/SocialLinks.tsx index 5228c92..8d7ad70 100644 --- a/components/SocialLinks.tsx +++ b/components/SocialLinks.tsx @@ -19,7 +19,7 @@ export function SocialLinks() { href={link.url} target="_blank" rel="noopener noreferrer" - className="text-muted-foreground hover:text-primary" + className=" hover:text-primary" whileHover={{ scale: 1.1 }} whileTap={{ scale: 0.95 }} initial={{ opacity: 0, y: 20 }} diff --git a/components/footer.tsx b/components/footer.tsx index 209e3a5..a41e91c 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -4,6 +4,8 @@ import { RainbowButton } from "@/components/ui/rainbow-button"; import { SocialLinks } from "@/components/SocialLinks"; import { BookOpen, Github } from "lucide-react"; import { useEffect, useState } from "react"; +import { Separator } from "./ui/separator"; +import Link from "next/link"; export default function Footer() { const [currentYear, setCurrentYear] = useState(new Date().getFullYear()); @@ -16,10 +18,15 @@ export default function Footer() {