Add back a few videos to archive

This commit is contained in:
Troy 2025-04-26 17:26:29 +01:00
parent 522392cdfc
commit 90edb8db0a
Signed by: troy
GPG key ID: DFC06C02ED3B4711
5 changed files with 45 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View file

@ -3,6 +3,11 @@ import Layout from "@layouts/Layout.astro";
import { Image } from "astro:assets";
import { ARCHIVE } from "@consts";
import lighting from "./assets/cinematic-lighting-in-blender-night-lighting-03-projection.webm";
import pillows from "./assets/houdini-pillows.webm";
import interior from "./assets/interior_test.webm";
import particles from "./assets/houdini-abstract-particles.webm";
const images = import.meta.glob<{ default: ImageMetadata }>(
`./assets/*.{jpeg,jpg,png}`,
);
@ -28,6 +33,46 @@ const imageList = await Promise.all(
</h1>
<div
class="animate-reveal grid grid-cols-2 gap-2 [animation-delay:0.1s] md:grid-cols-3"
>
<video
preload="metadata"
loop
muted
controls
class="aspect-square h-full w-full rounded-sm object-cover"
>
<source src={lighting} type="video/webm" />
</video>
<video
preload="metadata"
loop
muted
controls
class="aspect-square h-full w-full rounded-sm object-cover"
>
<source src={pillows} type="video/webm" />
</video>
<video
preload="metadata"
loop
muted
controls
class="aspect-square h-full w-full rounded-sm object-cover"
>
<source src={interior} type="video/webm" />
</video>
<video
preload="metadata"
loop
muted
controls
class="aspect-square h-full w-full rounded-sm object-cover"
>
<source src={particles} type="video/webm" />
</video>
</div>
<div
class="animate-reveal grid grid-cols-2 gap-2 [animation-delay:0.2s] md:grid-cols-3"
>
{
imageList.map((item) => (