Add directory of extra pages

This commit is contained in:
Aria 2025-03-19 08:31:08 +11:00
parent 6e55b498f8
commit 4fe40bed6b
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
3 changed files with 23 additions and 1 deletions

20
src/pages/directory.astro Normal file
View file

@ -0,0 +1,20 @@
---
import Partition from "../components/Partition.astro";
import BaseLayout from "../layouts/BaseLayout.astro";
const pageTitle = "A bunch of other pages!";
---
<BaseLayout pageTitle={pageTitle}>
<Partition>
<h1 class="text-4xl font-bold">{pageTitle}</h1>
<p>Here are some other pages I have for various reasons!</p>
<ul class=" list-disc px-8">
<li><a href="/jxl-testing">JpegXL Decoder Test</a></li>
<li><a href="/other buttons">Extra 88x31 buttons</a></li>
</ul>
</Partition>
</BaseLayout>