rename folder

This commit is contained in:
2023-07-16 18:42:59 +02:00
parent bc63f9cc41
commit 2375dd91de
53 changed files with 154 additions and 1 deletions

View File

@ -0,0 +1,16 @@
<script lang="ts">
import { user } from '../../stores/User.js';
</script>
<svelte:head>
<title>FAQ - ASKÖ Ruderverein Donau Linz</title>
</svelte:head>
<div class="max-w-screen-lg w-full">
<h1 class="h1">User</h1>
<div class="grid pt-8 text-left gap-10">
Test
</div>
</div>

View File

@ -0,0 +1,9 @@
import { dev } from '$app/environment';
// we don't need any JS on this page, though we'll load
// it in dev so that we get hot module replacement
export const csr = dev;
// since there's no dynamic data here, we can prerender
// it so that it gets served as a static asset in production
export const prerender = true;