All page types are there and look mostly correct

This commit is contained in:
Owen
2026-05-22 17:37:37 -07:00
parent 7c54df7ed1
commit 4c1e1daf07
11 changed files with 767 additions and 225 deletions

View File

@@ -22,13 +22,24 @@ export function SettingsSectionHeader({
export function SettingsSectionForm({
children,
className
className,
variant = "compact"
}: {
children: React.ReactNode;
variant?: "half" | "compact";
className?: string;
}) {
return (
<div className={cn("max-w-xl space-y-4", className)}>{children}</div>
<div
className={cn(
variant === "half"
? "max-w-3xl space-y-4"
: "max-w-xl space-y-4",
className
)}
>
{children}
</div>
);
}