Test out animated avif support
Some checks failed
Deploy to Web Server / deploy (push) Has been cancelled

This commit is contained in:
Aria 2025-05-14 20:53:48 +10:00
parent a2190f3187
commit 2f1e668b94
Signed by: aria
SSH key fingerprint: SHA256:WqtcVnDMrv1lnUlNah5k31iywFUI/DV+5yHzCTO4Vds
3 changed files with 23 additions and 0 deletions

19
src/pages/avif-test.astro Normal file
View file

@ -0,0 +1,19 @@
---
import Partition from "../components/Partition.astro";
import BaseLayoutJxl from "../layouts/BaseLayoutJxl.astro";
import BaseLayout from "../layouts/BaseLayout.astro";
const pageTitle = "Testing animated AVIF support!";
---
<BaseLayout pageTitle={pageTitle}>
<Partition>
<h1 class="text-4xl font-bold">{pageTitle}</h1>
</Partition>
<Partition>
<main>
<h3 class="text-2xl text-center font-bold">TEST:</h3>
<img src="/static/img/tests/mage-demon-queen-fastflix-0bb2.avif" />
</main>
</Partition>
</BaseLayout>

View file

@ -10,13 +10,17 @@ const pageTitle = "A bunch of other pages!";
<Partition>
<h1 class="text-4xl font-bold">{pageTitle}</h1>
<p>Here are some other pages I have for various reasons!</p>
<p>A lot of them will most likely be tests and experiments or cool things I want to share but dont need to be directly in the nav bar lol</p>
<main>
<ul class=" list-disc px-8">
<li><a href="/albums">Albums and Gallerys</a></li>
<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>
<li><a href="/avif-test">Quick test of animated AVIF</a></li>
</ul>
</main>
</Partition>
</BaseLayout>