From 4ed3208eff0c8f5474c5ba22a5cb804776bd361b Mon Sep 17 00:00:00 2001 From: serenity <98162476+NekoDrone@users.noreply.github.com> Date: Wed, 15 Apr 2026 01:45:18 +0800 Subject: [PATCH] feat: small footer component --- src/components/Nav/Footer.astro | 10 ++++++++++ src/layouts/BaseLayout.astro | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 src/components/Nav/Footer.astro diff --git a/src/components/Nav/Footer.astro b/src/components/Nav/Footer.astro new file mode 100644 index 0000000..c1b2ba8 --- /dev/null +++ b/src/components/Nav/Footer.astro @@ -0,0 +1,10 @@ +--- +import LucideLineSquiggle from "../Icons/LucideLineSquiggle.astro"; +--- + +
+
+
+

May this journey lead us starward.

+
+
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index fe7772a..5af87fb 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -1,6 +1,8 @@ --- import NavBar from "../components/Nav/NavBar.astro"; import RootLayout from "../layouts/RootLayout.astro"; +import Footer from "../components/Nav/Footer.astro"; + const { title } = Astro.props; --- @@ -9,4 +11,5 @@ const { title } = Astro.props;
+