dummy text for collection route

This commit is contained in:
Justin Edmund 2025-09-17 21:50:23 -07:00
parent a0d9645385
commit 94a3227632

View file

@ -0,0 +1,31 @@
<svelte:options runes={true} />
<script lang="ts">
import { page } from '$app/stores'
</script>
<svelte:head>
<title>Collection</title>
</svelte:head>
<div class="container">
<h1>Collection</h1>
<p>Your collection in Granblue Fantasy</p>
<!-- Content will be added here -->
</div>
<style lang="scss">
.container {
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
h1 {
margin-bottom: 1rem;
}
p {
color: var(--text-secondary);
}
}
</style>