added digital garden page
This commit is contained in:
@@ -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>
|
||||
|
||||
31
src/routes/garden/+page.svelte
Normal file
31
src/routes/garden/+page.svelte
Normal 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>
|
||||
20
src/routes/garden/recipes/+page.svelte
Normal file
20
src/routes/garden/recipes/+page.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user