first user setup and login
This commit is contained in:
10
app/(public)/layout.tsx
Normal file
10
app/(public)/layout.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user