diff --git a/src/routes/drawing-gallery/+page.svelte b/src/routes/drawing-gallery/+page.svelte deleted file mode 100644 index 1e7164e..0000000 --- a/src/routes/drawing-gallery/+page.svelte +++ /dev/null @@ -1,151 +0,0 @@ - - - - Drawing Gallery | denizk0461 - - -{#snippet drawing({ drawing }: { drawing: DrawingData })} - -{/snippet} - -{#snippet inspector({ index }: { index: number })} - {#if index == -1} -

click on an image to view details about it

- {:else} - - {drawings[index].altText} - -

{drawings[index].date}

-
- {#each drawings[index].notes as n} -

{n}

- {/each} - {/if} -{/snippet} - - - - -

I'm trying this to motivate myself to draw more now. Let's see where this takes us.

- -
- -
- {@render inspector({ index: selectedDrawingIndex })} -
-
-
- - \ No newline at end of file diff --git a/src/routes/drawing-gallery/drawing-data.ts b/src/routes/drawing-gallery/drawing-data.ts deleted file mode 100644 index 5e92265..0000000 --- a/src/routes/drawing-gallery/drawing-data.ts +++ /dev/null @@ -1,31 +0,0 @@ -export interface DrawingData { - fileName: string; - altText: string; - - // Format: yyyy-MM-dd - date: string; - - notes: string[]; -} - -export let drawings: DrawingData[] = [ - { - fileName: "2026/breadgirl.webp", - altText: "An anime-style girl chewing on a piece of bread. She wears a ponytail and a sleeveless top.", - date: "2026-01-30", - notes: [ - "I drew her during a game of Wizard. I initially wanted to make her chew on a whole loaf but I wasn't sure if I could draw that.", - "Wasn't really sure how to convey that her mouth is full, but in retrospect, I could have exaggerated the bow in her lower eyelids to do so.", - "I like her eyes. Her head could be taller, actually.", - ], - }, - { - fileName: "2026/girl.webp", - altText: "An anime-style girl's head. She has a ponytail and is looking towards the left with a concentrated gaze.", - date: "2026-01-29", - notes: [ - "Her nose is a bit high but I do like her focused gaze. I think I nailed the eyes, to be honest, at least the left one, considering the drawing is just 3x4cm.", - "I'm super happy with this, especially since it was my first try drawing in a long time and I only used a ballpoint pen (non-erasable!).", - ], - }, -]; \ No newline at end of file diff --git a/static/garden/drawing-gallery/2026/breadgirl.webp b/static/garden/drawing-gallery/2026/breadgirl.webp deleted file mode 100644 index 6f3e3bb..0000000 Binary files a/static/garden/drawing-gallery/2026/breadgirl.webp and /dev/null differ diff --git a/static/garden/drawing-gallery/2026/girl.webp b/static/garden/drawing-gallery/2026/girl.webp deleted file mode 100644 index 945a646..0000000 Binary files a/static/garden/drawing-gallery/2026/girl.webp and /dev/null differ