added My Tracks page

This commit is contained in:
2026-02-25 19:23:59 +01:00
parent 005684ad8c
commit 5a0a8b25c4
2 changed files with 25 additions and 1 deletions

View File

@@ -4,7 +4,6 @@
import { type Project, games, hardware, apps, music, getStatusText, getStatusCode } from './projects';
import LinkList from "$lib/lists/link-list.svelte";
import Content from "$lib/viewport/content.svelte";
import OutlinedButton from "$lib/components/outlined-button.svelte";
</script>
<svelte:head>
@@ -36,6 +35,11 @@
{/each}
<h2 id="music">Music</h2>
<p>I made a lot of music in the past; over a hundred songs in total. There's at least a small story behind pretty much every one of them here, and I am chronicling my memories on a subpage.</p>
<p>You can find this <a href="my-tracks">here</a>, if you're interested.</p>
{#each music as project}
{@render projectSummary({ project: project })}
{/each}

View File

@@ -0,0 +1,20 @@
<script>
import Banner2 from "$lib/banner2.svelte";
import Content from "$lib/viewport/content.svelte";
</script>
<svelte:head>
<title>My Tracks | denizk0461</title>
</svelte:head>
<Content>
<Banner2
title="My Tracks"
subtitle=""
banner=""
bannerAlt="" />
well this is awkward. there's nothing here yet. come back later?
<!-- <p>Fun fact: this page is named 'my tracks' because the folder on my PC where I store my finished songs is called 'my tracks' and it's been like this for a very long time.</p> -->
</Content>