31 lines
1.3 KiB
TypeScript
31 lines
1.3 KiB
TypeScript
|
|
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!).",
|
||
|
|
],
|
||
|
|
},
|
||
|
|
];
|