From ad3eb66144e9482aa59d154b58513bc018348f9d Mon Sep 17 00:00:00 2001 From: SrJuggernaut Date: Wed, 25 Feb 2026 17:56:39 -0600 Subject: [PATCH] feat(layout): add footer component and centralize imports in Landing layout --- src/components/layout/Landing.astro | 9 +++++++++ src/components/layout/parts/Footer.astro | 25 ++++++++++++++++++++++++ src/pages/index.astro | 6 ------ 3 files changed, 34 insertions(+), 6 deletions(-) create mode 100644 src/components/layout/parts/Footer.astro diff --git a/src/components/layout/Landing.astro b/src/components/layout/Landing.astro index 486590a..0feb567 100644 --- a/src/components/layout/Landing.astro +++ b/src/components/layout/Landing.astro @@ -1,4 +1,12 @@ --- +import '@/styles/global.css' +import '@fontsource-variable/roboto' +import '@fontsource/orbitron/900.css' +import '@fortawesome/fontawesome-free/css/fontawesome.min.css' +import '@fortawesome/fontawesome-free/css/solid.min.css' +import '@fortawesome/fontawesome-free/css/brands.min.css' +import Footer from '@/components/layout/parts/Footer.astro' + export interface Props { title?: string description?: string @@ -37,5 +45,6 @@ const seoImage =
+