2026-03-09 17:17:07 +01:00
|
|
|
<script lang="ts">
|
|
|
|
|
import Banner2 from "$lib/banner2.svelte";
|
|
|
|
|
import Content from "$lib/viewport/content.svelte";
|
|
|
|
|
import GalleryRow, { type GalleryRowEntry } from "$lib/lists/gallery-row.svelte";
|
|
|
|
|
|
|
|
|
|
const subpages: GalleryRowEntry[] = [
|
|
|
|
|
{
|
|
|
|
|
title: "Drawing Gallery",
|
|
|
|
|
description: "Some cool things I've drawn!",
|
|
|
|
|
img: "drawings/banner.webp",
|
|
|
|
|
altText: "Several Faber-Castell Polychromos colour pencils lined up with markings next to them in the same colour on a sheet of paper.",
|
|
|
|
|
link: "drawings",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: "Discography",
|
|
|
|
|
description: "Small stories about my past music",
|
|
|
|
|
img: "/main/hypertext.webp",
|
|
|
|
|
altText: "",
|
|
|
|
|
link: "music",
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<svelte:head>
|
|
|
|
|
<title>Art | denizk0461</title>
|
|
|
|
|
</svelte:head>
|
|
|
|
|
|
|
|
|
|
<Content>
|
|
|
|
|
<Banner2
|
|
|
|
|
title="Art"
|
2026-03-09 17:40:30 +01:00
|
|
|
banner="banner.webp"
|
|
|
|
|
bannerAlt="A rainbow-like holographic effect produced by bending a reflective sheet of cardboard."
|
2026-03-09 17:21:37 +01:00
|
|
|
subtitle="my creative side" />
|
2026-03-09 17:17:07 +01:00
|
|
|
|
|
|
|
|
<p>Here I have collected the products of some of my creative endeavours. Check them out below!</p>
|
|
|
|
|
|
|
|
|
|
<GalleryRow entries={subpages} />
|
|
|
|
|
|
|
|
|
|
</Content>
|