feat: commit unoptimised assets to cleanup later
Some checks are pending
Docker / run-tests (push) Waiting to run
Docker / build-and-push-image (push) Blocked by required conditions

This commit is contained in:
Troy 2025-05-05 19:29:23 +01:00
parent 26258249d1
commit de0b56ef5b
Signed by: troy
GPG key ID: DFC06C02ED3B4711
142 changed files with 359 additions and 425 deletions

View file

@ -1,6 +1,5 @@
---
import { getCollection } from "astro:content";
import type { CollectionEntry } from "astro:content";
import { PROJECTS, SITE } from "@consts";
import Layout from "@layouts/Layout.astro";
import ShowcaseProject from "@components/ShowcaseProject.astro";
@ -19,4 +18,17 @@ const projects = (await getCollection("projects"))
>
{projects.map((article: any) => <ShowcaseProject collection={article} />)}
</ol>
<div role="alert" class="animate-reveal opacity-0 [animation-delay:0.2s]">
<div class="rounded-t bg-amber-500 px-4 py-2 font-bold text-white">
Notice
</div>
<div
class="rounded-b border border-t-0 border-amber-400 bg-amber-100 px-4 py-3 text-amber-700 dark:border-amber-600 dark:bg-amber-900 dark:text-amber-300"
>
<p>
Some content may be unoptimised as I am in the process of
reworking what is on display.
</p>
</div>
</div>
</Layout>