mirror of
https://github.com/ivabus/gui
synced 2025-06-06 23:30:26 +03:00
12 lines
352 B
Svelte
12 lines
352 B
Svelte
<svelte:head>
|
|
<title>Page 1</title>
|
|
</svelte:head>
|
|
|
|
<h1 class="pagetitle">Page 1</h1>
|
|
<p>This is the page 1</p>
|
|
|
|
<div style="display: flex; justify-content: center;">
|
|
<a class="button" href="/">Home</a>
|
|
<a class="button" style="margin-left: 2px;" href="/page2">Page 2</a>
|
|
<a class="button" style="margin-left: 2px;" href="/page3">Page 3</a>
|
|
</div>
|