feat: commit unoptimised assets to cleanup later
This commit is contained in:
parent
26258249d1
commit
de0b56ef5b
142 changed files with 359 additions and 425 deletions
113
src/content/projects/archive/index.mdx
Normal file
113
src/content/projects/archive/index.mdx
Normal file
|
@ -0,0 +1,113 @@
|
|||
---
|
||||
title: "Archive"
|
||||
description: "A collection of smaller, unfinished, or historic personal works."
|
||||
date: 2021-01-15
|
||||
featured: true
|
||||
image: { url: "2023-11-23.jpg", alt: "Ugolino and His Sons lighting" }
|
||||
tags:
|
||||
[
|
||||
"blender",
|
||||
"unreal engine",
|
||||
"davinci resolve",
|
||||
"photoshop",
|
||||
"gimp",
|
||||
"affinity photo",
|
||||
]
|
||||
categories: ["personal"]
|
||||
---
|
||||
|
||||
import Gallery from "@components/Gallery.astro";
|
||||
|
||||
Whilst not all of these pieces are large enough to have their own project page, I still think they showcase what I am interested in and it didn't feel right to exclude them entirely. This page receives updates periodically.
|
||||
|
||||
import video2023_04_08 from "./2023-04-08.webm";
|
||||
import video2023_02_08 from "./2023-02-08.webm";
|
||||
import video2023_01_08 from "./2023-01-08.webm";
|
||||
import video2023_07_19 from "./2023-07-19.webm";
|
||||
|
||||
<div class="mb-6 grid grid-cols-1 gap-3 md:grid-cols-2">
|
||||
<video
|
||||
preload="metadata"
|
||||
autoplay
|
||||
muted
|
||||
loop
|
||||
class="mt-0 mb-0 aspect-square h-full max-h-[90svh] w-full object-cover"
|
||||
>
|
||||
<source src={video2023_04_08} type="video/webm" />
|
||||
</video>
|
||||
<video
|
||||
preload="metadata"
|
||||
autoplay
|
||||
muted
|
||||
loop
|
||||
class="mt-0 mb-0 aspect-square h-full max-h-[90svh] w-full object-cover"
|
||||
>
|
||||
<source src={video2023_02_08} type="video/webm" />
|
||||
</video>
|
||||
<video
|
||||
preload="metadata"
|
||||
autoplay
|
||||
muted
|
||||
loop
|
||||
class="mt-0 mb-0 aspect-square h-full max-h-[90svh] w-full object-cover"
|
||||
>
|
||||
<source src={video2023_01_08} type="video/webm" />
|
||||
</video>
|
||||
<video
|
||||
preload="metadata"
|
||||
autoplay
|
||||
muted
|
||||
loop
|
||||
class="mt-0 mb-0 aspect-square h-full max-h-[90svh] w-full object-cover"
|
||||
>
|
||||
<source src={video2023_07_19} type="video/webm" />
|
||||
</video>
|
||||
</div>
|
||||
|
||||
import image2024_04_01 from "./2024-04-01.jpg";
|
||||
import image2022_01_27 from "./2022-01-27.jpg";
|
||||
import image2022_01_06 from "./2022-01-06.jpg";
|
||||
import image2023_11_23 from "./2023-11-23.jpg";
|
||||
import image2024_02_15 from "./2024-02-15.jpg";
|
||||
import image2023_10_12 from "./2023-10-12.jpg";
|
||||
import image2022_09_26 from "./2022-09-26.jpg";
|
||||
import image2023_11_02 from "./2023-11-02.jpg";
|
||||
import image2022_03_27 from "./2022-03-27.png";
|
||||
import image2022_05_17 from "./2022-05-17.jpg";
|
||||
import image2023_01_05 from "./2023-01-05.jpg";
|
||||
import image2024_07_19 from "./2024-07-19.jpg";
|
||||
import image2025_01_24 from "./2025-01-24.jpg";
|
||||
import image2022_03_28 from "./2022-03-28.jpg";
|
||||
import image2023_044_18 from "./2023-04-18.avif";
|
||||
import imageforestfire from "./forestfire.jpg";
|
||||
import imagedatsun from "./datsun.jpg";
|
||||
import imageedit from "./edit.jpg";
|
||||
import imagezomax from "./zomax.jpg";
|
||||
import imagesea from "./sea.jpg";
|
||||
import imagelovesongs from "./lovesongs-2-2153-P.jpg";
|
||||
|
||||
<Gallery
|
||||
items={[
|
||||
{ src: image2024_04_01, alt: "224 Torquay Road" },
|
||||
{ src: image2022_01_27, alt: "Studying Spider" },
|
||||
{ src: image2022_01_06, alt: "Firespline" },
|
||||
{ src: image2023_11_23, alt: "Ugolino and His Sons lighting" },
|
||||
{ src: image2024_02_15, alt: "Austin" },
|
||||
{ src: image2023_10_12, alt: "Austin" },
|
||||
{ src: image2022_09_26, alt: "Wes Cockx" },
|
||||
{ src: image2023_11_02, alt: "Trees" },
|
||||
{ src: image2022_03_27, alt: "Sewer" },
|
||||
{ src: image2022_05_17, alt: "Hanging light fixtures" },
|
||||
{ src: image2023_01_05, alt: "Digital Artefact: Corridor" },
|
||||
{ src: image2024_07_19, alt: "DOF tiles" },
|
||||
{ src: imageforestfire, alt: "Forest fire" },
|
||||
{ src: image2025_01_24, alt: "Escalator" },
|
||||
{ src: image2022_03_28, alt: "Astronaut" },
|
||||
{ src: imagedatsun, alt: "Datsun" },
|
||||
{ src: imagezomax, alt: "Zomax" },
|
||||
{ src: imagesea, alt: "Sea" },
|
||||
{ src: imagelovesongs, alt: "Love Songs record cover" },
|
||||
{ src: image2023_044_18, alt: "Abstract swirl" },
|
||||
{ src: imageedit, alt: "Little Nightmares" },
|
||||
]}
|
||||
/>
|
Loading…
Add table
Add a link
Reference in a new issue