···11+---
22+import Partition from "../components/Partition.astro";
33+44+import BaseLayout from "../layouts/BaseLayout.astro";
55+const pageTitle = "A bunch of other pages!";
66+77+---
88+99+<BaseLayout pageTitle={pageTitle}>
1010+ <Partition>
1111+ <h1 class="text-4xl font-bold">{pageTitle}</h1>
1212+ <p>Here are some other pages I have for various reasons!</p>
1313+1414+ <ul class=" list-disc px-8">
1515+ <li><a href="/jxl-testing">JpegXL Decoder Test</a></li>
1616+ <li><a href="/other buttons">Extra 88x31 buttons</a></li>
1717+ </ul>
1818+ </Partition>
1919+</BaseLayout>
2020+