From a01febc38ecfdb4d880b1ccd419d2a075c66b1b1 Mon Sep 17 00:00:00 2001 From: momo-shogun Date: Fri, 17 Jan 2025 01:51:32 +0530 Subject: [PATCH] footer --- components/SocialLinks.tsx | 2 +- components/footer.tsx | 50 +++++++++++++++++++++++++++++++++++--- 2 files changed, 47 insertions(+), 5 deletions(-) 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() {