first user setup and login

This commit is contained in:
2025-06-23 13:27:45 -04:00
parent bbe5eb0ccd
commit 12148e642d
13 changed files with 216 additions and 80 deletions

10
app/(public)/layout.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { ReactNode } from 'react'
export default function PublicLayout({ children }: { children: ReactNode }) {
return (
<main>
{/* Public site header if any */}
{children}
</main>
)
}