Skip to content

Commit aab6c50

Browse files
committed
feat: add donation info
1 parent 3c173e5 commit aab6c50

2 files changed

Lines changed: 34 additions & 0 deletions

File tree

src/components/Header.astro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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>

src/pages/donate.astro

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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>

0 commit comments

Comments
 (0)