svelte-playground/src/routes/about.svelte

12 lines
157 B
Svelte
Raw Normal View History

2021-08-05 17:51:59 +02:00
<div class="panel">
<h1>About this</h1>
<p>This is a test website using sveltekit</p>
</div>
<style>
2021-08-05 17:51:59 +02:00
.panel {
margin: 1em;
padding: 1em;
}
</style>