20 lines
573 B
Svelte
20 lines
573 B
Svelte
<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 bannerContent={{
|
|
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> |