mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 05:25:37 +07:00
feat: Implement authentication flow, core application pages, and initial landing page components.
This commit is contained in:
@@ -5,13 +5,9 @@ import { Footer } from "@/Components/Landing/Footer";
|
||||
export default function GuestLayout({ children }: { children: React.ReactNode }) {
|
||||
return (
|
||||
<ThemeProvider defaultTheme="dark" storageKey="nihonbuzz-theme">
|
||||
<div className="min-h-screen bg-background text-foreground selection:bg-primary/30 selection:text-primary flex flex-col">
|
||||
<div className="min-h-screen bg-background text-foreground selection:bg-primary/30 selection:text-primary">
|
||||
<Navbar />
|
||||
<main className="flex-1 flex items-center justify-center p-4 lg:p-8 pt-24 lg:pt-32">
|
||||
<div className="w-full flex justify-center py-8">
|
||||
{children}
|
||||
</div>
|
||||
</main>
|
||||
<main>{children}</main>
|
||||
<Footer />
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
Reference in New Issue
Block a user