From 43795112060eff0ab3a979acea8f87100a22f46a Mon Sep 17 00:00:00 2001 From: z0x Date: Wed, 7 May 2025 09:00:11 -0400 Subject: [PATCH] refactor(index): add footer link to z0x.ca. redirect header link to / --- src/components/Footer.astro | 6 +++--- src/components/Header.astro | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index b782b3b..305a3c9 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,9 +1,9 @@ --- import Container from "@/components/Container.astro"; +import Link from "@/components/Link.astro"; import { Separator } from "@/components/ui/separator"; import { SOCIAL_LINKS } from "@/consts"; -import SocialIcons from "./SocialIcons.astro"; ---- +import SocialIcons from "./SocialIcons.astro";---