rename folder
This commit is contained in:
16
svelte/src/routes/admin/+page.svelte
Normal file
16
svelte/src/routes/admin/+page.svelte
Normal 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>
|
9
svelte/src/routes/admin/+page.ts
Normal file
9
svelte/src/routes/admin/+page.ts
Normal 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;
|
Reference in New Issue
Block a user