Source: https://bsky.app/profile/did:plc:lghfd7elj6cjjwlhecp2utao/post/3ll7hx7diu22d https://web.archive.org/web/20250325154433/https://bsky.app/profile/did:plc:lghfd7elj6cjjwlhecp2utao/post/3ll7hx7diu22d
21 lines
643 B
Text
21 lines
643 B
Text
---
|
|
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>
|
|
<li><a href="/extreme-format-test">Goofy video format test</a></li>
|
|
</ul>
|
|
</Partition>
|
|
</BaseLayout>
|
|
|