14 lines
330 B
Svelte
14 lines
330 B
Svelte
<script>
|
|
import { _ } from "svelte-i18n";
|
|
</script>
|
|
|
|
<section class="container p-5">
|
|
<span class="mb-1 text-3xl font-extrabold leading-tight text-gray-900">
|
|
Orgs
|
|
</span>
|
|
<p class="mb-8 text-lg text-gray-500">
|
|
add, delete, edit organizations
|
|
</p>
|
|
<nav><a class="underline" href="./1">Org 1</a></nav>
|
|
</section>
|