You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
435 B
19 lines
435 B
<style>
|
|
</style>
|
|
|
|
<script>
|
|
import { Hydrate } from '@jamcart/7ty/components';
|
|
import {link} from 'svelte-spa-router';
|
|
import {user} from '$client/stores';
|
|
import Icon from '$client/components/Icon.svelte';
|
|
import Layout from '../Layout.svelte';
|
|
</script>
|
|
|
|
<Layout>
|
|
<main>
|
|
<h1>Rendered Page</h1>
|
|
|
|
<p>Place this in <b>rendered/pages</b> and it will become a static page that is pre-rendered.</p>
|
|
</main>
|
|
</Layout>
|
|
|
|
|