Wowie what a gay little website for my gay little self aria.coffee
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add donation page

Aria 79e8144f a25e8c2d

+13
+1
src/components/NavHeader.astro
··· 47 47 <!-- <a href="/friends" class="nav-btn">Friends</a> | --> 48 48 <a href="/directory" class="nav-btn">Other Pages</a> | 49 49 <a href="/portfolio" class="nav-btn">Portfolio</a> | 50 + <a href="/pay-me" class="nav-btn">Donate</a> | 50 51 </p> 51 52 </Partition>
+12
src/pages/pay-me.astro
··· 1 + --- 2 + import Donations from "../components/Donations.astro"; 3 + import BaseLayout from "../layouts/BaseLayout.astro"; 4 + import "../styles/aria.css"; 5 + 6 + const pageTitle = "Give Aria money"; 7 + const description = "Hey look sometime you gotta give your wealth to a cute girl"; 8 + --- 9 + 10 + <BaseLayout pageTitle={pageTitle} description={description}> 11 + <Donations /> 12 + </BaseLayout>