From 0fe7c10b1e7f6d275356fa5dea052a28c88c6a02 Mon Sep 17 00:00:00 2001 From: donny Date: Thu, 28 May 2026 17:46:39 -0700 Subject: [PATCH] feat: updated footer with new icons --- components/layout/Footer.tsx | 41 +++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/components/layout/Footer.tsx b/components/layout/Footer.tsx index 4023a5b..4483253 100644 --- a/components/layout/Footer.tsx +++ b/components/layout/Footer.tsx @@ -1,8 +1,47 @@ +import { + IconBrandLinkedinFilled, + IconMailFilled, + IconPhoneFilled, +} from "@tabler/icons-react"; +import GiteaIcon from "@/components/icons/GiteaIcon"; +import Tooltip from "@/components/ui/Tooltip"; +import CopyButton from "@/components/ui/CopyButton"; +import { email, linkedIn, phone, gitea } from "@/constants"; + export default function Footer() { return ( ); }