webui-ng/src/routes/settings/+page.svelte
Djuri Baars 5917713b0d
Some checks failed
/ check-changes (push) Successful in 7s
/ build (push) Failing after 1m18s
feat: Lint fixes, add forgejo workflow and e2e tests
2025-05-03 18:45:32 +02:00

8 lines
197 B
Svelte

<script lang="ts">
import { SettingsSection } from '$lib/components';
</script>
<div class="container mx-auto p-4">
<h1 class="mb-4 text-2xl font-bold">Settings</h1>
<SettingsSection />
</div>