From 0c86d207381a827d97e3a593ca2f91a3a29f6ade Mon Sep 17 00:00:00 2001 From: Ruidy Date: Tue, 31 Dec 2024 09:14:32 +0100 Subject: [PATCH] feat: add footer component --- src/components/Footer.astro | 8 ++++++++ src/pages/about.astro | 3 +++ src/pages/blog.astro | 2 ++ src/pages/index.astro | 2 ++ 4 files changed, 15 insertions(+) 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..294389d --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,8 @@ +--- +const platform = "GitHub" +const username = "rjNemo" +const url = `https://ruidy.nemausat.com` +--- + diff --git a/src/pages/about.astro b/src/pages/about.astro index 22fb270..589adf4 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -1,6 +1,7 @@ --- import "../styles/global.css" import Navigation from "../components/Navigation.astro" +import Footer from "../components/Footer.astro" const pageTitle = "About Me" @@ -76,5 +77,7 @@ const skillColor = "navy" {finished &&

I finished this tutorial!

} {goal === 3 ?

My goal is to finish in 3 days.

:

My goal is not 3 days.

} + +