Add donation page
This commit is contained in:
parent
a25e8c2d07
commit
79e8144fe2
2 changed files with 13 additions and 0 deletions
|
@ -47,5 +47,6 @@ const optimizedBackgroundLQ = await getImage({
|
||||||
<!-- <a href="/friends" class="nav-btn">Friends</a> | -->
|
<!-- <a href="/friends" class="nav-btn">Friends</a> | -->
|
||||||
<a href="/directory" class="nav-btn">Other Pages</a> |
|
<a href="/directory" class="nav-btn">Other Pages</a> |
|
||||||
<a href="/portfolio" class="nav-btn">Portfolio</a> |
|
<a href="/portfolio" class="nav-btn">Portfolio</a> |
|
||||||
|
<a href="/pay-me" class="nav-btn">Donate</a> |
|
||||||
</p>
|
</p>
|
||||||
</Partition>
|
</Partition>
|
||||||
|
|
12
src/pages/pay-me.astro
Normal file
12
src/pages/pay-me.astro
Normal file
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue