chore: update components folder structure, add constants, update existing layout components, scaffold pages

This commit is contained in:
2026-05-27 19:52:41 -07:00
parent 6193c57655
commit 50fadddbe3
16 changed files with 228 additions and 237 deletions
+11 -7
View File
@@ -1,7 +1,11 @@
export default function Container({ children }: { children: React.ReactNode }) {
return (
<div className="p-3 bg-neutral-900 flex-1">
{children}
</div>
)
}
export default function Container({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="flex-1 min-h-0 overflow-y-auto">
<div className="mx-auto w-full max-w-2xl px-6 py-16">{children}</div>
</div>
);
}