testing
850 bytes View directory
1
<script lang="ts">2
import { resolve } from '$app/paths';3
</script>5
<svelte:head>6
<title>About</title>7
<meta name="description" content="About this app" />8
</svelte:head>10
<div class="text-column">11
<h1>About this app</h1>13
<p>14
This is a <a href="https://svelte.dev/docs/kit">SvelteKit</a> app. You can make your own by typing15
the following into your command line and following the prompts:16
</p>18
<pre>npx sv create</pre>20
<p>21
The page you're looking at is purely static HTML, with no client-side interactivity needed.22
Because of that, we don't need to load any JavaScript. Try viewing the page's source, or opening23
the devtools network panel and reloading.24
</p>26
<p>27
The <a href={resolve('/sverdle')}>Sverdle</a> page illustrates SvelteKit's data loading and form handling.28
Try using it with JavaScript disabled!29
</p>30
</div>