webui-ng/src/routes/+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

15 lines
309 B
Svelte

<script lang="ts">
import { ControlSection, StatusSection } from '$lib/components';
</script>
<div class=" mx-auto px-2 py-4">
<div class="grid grid-cols-1 gap-3 md:grid-cols-2 lg:grid-cols-3">
<div>
<ControlSection />
</div>
<div class="col-span-2">
<StatusSection />
</div>
</div>
</div>