From 79e8144fe2ba9595a34428d7ee002cee8c637f97 Mon Sep 17 00:00:00 2001 From: Aria <hello@buymymojo.net> Date: Sun, 11 May 2025 22:33:52 +1000 Subject: [PATCH] Add donation page --- src/components/NavHeader.astro | 1 + src/pages/pay-me.astro | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 src/pages/pay-me.astro diff --git a/src/components/NavHeader.astro b/src/components/NavHeader.astro index 283fdaa..0e3fb33 100644 --- a/src/components/NavHeader.astro +++ b/src/components/NavHeader.astro @@ -47,5 +47,6 @@ const optimizedBackgroundLQ = await getImage({ <!-- <a href="/friends" class="nav-btn">Friends</a> | --> <a href="/directory" class="nav-btn">Other Pages</a> | <a href="/portfolio" class="nav-btn">Portfolio</a> | + <a href="/pay-me" class="nav-btn">Donate</a> | </p> </Partition> diff --git a/src/pages/pay-me.astro b/src/pages/pay-me.astro new file mode 100644 index 0000000..fc58c49 --- /dev/null +++ b/src/pages/pay-me.astro @@ -0,0 +1,12 @@ +--- +import Donations from "../components/Donations.astro"; +import BaseLayout from "../layouts/BaseLayout.astro"; +import "../styles/aria.css"; + +const pageTitle = "Give Aria money"; +const description = "Hey look sometime you gotta give your wealth to a cute girl"; +--- + +<BaseLayout pageTitle={pageTitle} description={description}> + <Donations /> +</BaseLayout>