Add placeholder route for guides

This commit is contained in:
Justin Edmund 2025-09-17 21:49:57 -07:00
parent bab0ce2a06
commit a0d9645385

View file

@ -0,0 +1,31 @@
<svelte:options runes={true} />
<script lang="ts">
import { page } from '$app/stores'
</script>
<svelte:head>
<title>Guides</title>
</svelte:head>
<div class="container">
<h1>Guides</h1>
<p>Guides and resources for Granblue Fantasy players.</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>