added digital garden page

This commit is contained in:
2025-08-18 14:31:36 +02:00
parent a5d077c6c7
commit 5ebbfb959e
3 changed files with 53 additions and 0 deletions

View File

@@ -7,6 +7,8 @@
<span>»</span>
<a href="/projects">Projects</a>
<span> // </span>
<a href="/garden">Garden</a>
<span> // </span>
<a href="/about">About</a>
<span>«</span>
</div>

View File

@@ -0,0 +1,31 @@
<script lang="ts">
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
import Content from "$lib/content.svelte";
import LinkList, { type LinkEntry } from "$lib/link-list.svelte";
let links: LinkEntry[] = [
{
text: "Music I Like",
link: "music",
},
{
text: "Recipes",
link: "recipes",
},
]
</script>
<svelte:head>
<title>Digital Garden | denizk0461</title>
</svelte:head>
<BannerTitleAlt
title="Digital Garden"
banner="/common/me/.webp"
subtitle="smell the flowers!"
/>
<Content>
<p>work in progress! but some subpages already exist:</p>
<LinkList entries={links}></LinkList>
</Content>

View File

@@ -0,0 +1,20 @@
<script lang="ts">
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
import Content from "$lib/content.svelte";
</script>
<svelte:head>
<title>Recipes | denizk0461</title>
</svelte:head>
<BannerTitleAlt
title="Recipes"
banner="/common/me/.webp"
subtitle="we be cooking here"
/>
<Content>
<p>This is the future site for my recipes!</p>
<p>All my recipes are vegan, require not too many steps and ingredients, and are relatively inexpensive, because I don't have a lot of money lol</p>
</Content>