From 20df4a9e8e9255e2a32f1eee5a171f9b6be5b4a6 Mon Sep 17 00:00:00 2001 From: awfufu Date: Wed, 10 Dec 2025 10:31:44 +0800 Subject: [PATCH] feat: add footer component with zoom in/out functionality --- src/components/Footer.astro | 99 +++++++++++++++++++++++++++++++++++ src/components/MainView.astro | 42 +++++++++++++-- 2 files changed, 138 insertions(+), 3 deletions(-) create mode 100644 src/components/Footer.astro diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..ced9a9b --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,99 @@ +--- + +--- + + + + diff --git a/src/components/MainView.astro b/src/components/MainView.astro index 3d13935..0522b41 100644 --- a/src/components/MainView.astro +++ b/src/components/MainView.astro @@ -2,6 +2,7 @@ import titleSvg from "../assets/title.svg?raw"; import Navbar from "./Navbar.astro"; import Particles from "./Particles.astro"; +import Footer from "./Footer.astro"; --- @@ -9,6 +10,7 @@ import Particles from "./Particles.astro";
+