theming and structure

This commit is contained in:
briannelson95
2025-06-23 16:38:52 -04:00
parent 1ec8d444f5
commit 23c8f468fe
14 changed files with 123 additions and 109 deletions

View File

@@ -1,10 +1,18 @@
'use client'
import Navbar from '@/components/Navbar'
import { SessionProvider } from 'next-auth/react'
import { ReactNode } from 'react'
export default function PublicLayout({ children }: { children: ReactNode }) {
return (
<main>
{/* Public site header if any */}
{children}
</main>
<>
<SessionProvider>
<Navbar />
<main>
{/* Public site header if any */}
{children}
</main>
</SessionProvider>
</>
)
}