feat(app): new layout

This commit is contained in:
Adam
2026-01-12 10:11:29 -06:00
parent 9f66a45970
commit 679270d9e0
19 changed files with 681 additions and 276 deletions

View File

@@ -10,9 +10,14 @@ const squares = Array.from({ length: 16 }, (_, i) => ({
outer: outerIndices.has(i),
}))
export function Spinner(props: { class?: string; classList?: ComponentProps<"div">["classList"] }) {
export function Spinner(props: {
class?: string
classList?: ComponentProps<"div">["classList"]
style?: ComponentProps<"div">["style"]
}) {
return (
<svg
{...props}
viewBox="0 0 15 15"
data-component="spinner"
classList={{