partially refactor components to ui package

This commit is contained in:
Elijah Duffy
2025-04-13 07:56:23 -07:00
commit bf2ef338e9
21 changed files with 2104 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<script lang="ts">
import type { Snippet } from 'svelte';
let { children }: { children: Snippet } = $props();
</script>
<div class="min-h-screen items-center justify-center sm:flex">
<main class="m-4 max-w-(--breakpoint-sm) sm:mb-[5%] sm:w-full lg:max-w-[950px]">
{@render children()}
</main>
</div>