File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import { SITE_TITLE } from "../consts";
1212 <div class =" internal-links" >
1313 <HeaderLink href =" /" >Home</HeaderLink >
1414 <HeaderLink href =" /projects" >Projects</HeaderLink >
15+ <HeaderLink href =" /donate" >Donate</HeaderLink >
1516 <HeaderLink href =" /blog" >Blog</HeaderLink >
1617 <!-- NOT WRITTEN YET <HeaderLink href="/about">About</HeaderLink> -->
1718 </div >
Original file line number Diff line number Diff line change 1+ ---
2+ import BaseHead from " ../components/BaseHead.astro" ;
3+ import Header from " ../components/Header.astro" ;
4+ import Footer from " ../components/Footer.astro" ;
5+ import { SITE_TITLE , SITE_DESCRIPTION } from " ../consts" ;
6+ ---
7+
8+ <!doctype html >
9+ <html lang =" en" >
10+ <head >
11+ <BaseHead
12+ title ={ ` Donate - ${SITE_TITLE } ` }
13+ description ={ SITE_DESCRIPTION }
14+ />
15+ </head >
16+ <body >
17+ <Header />
18+ <main >
19+ <h1 >donations</h1 >
20+ <p >
21+ if you want to support my work, you can donate to me via <a
22+ href =" https://ko-fi.com/rexogamer" >Ko-fi</a
23+ > and <a href =" https://en.liberapay.com/rexogamer" >Liberapay</a
24+ >.
25+ </p >
26+ <p >
27+ I want to genuinely and sincerely thank you. this kind of
28+ generosity means a lot to me { " <" } 3
29+ </p >
30+ </main >
31+ <Footer />
32+ </body >
33+ </html >
You can’t perform that action at this time.
0 commit comments