style: fix auth layout height overlap and remove all emojis for LPK professionalism

This commit is contained in:
2026-01-23 19:51:01 +07:00
parent 762746859c
commit fe6b195156
7 changed files with 138 additions and 88 deletions

View File

@@ -5,9 +5,13 @@ 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">
<div className="min-h-screen bg-background text-foreground selection:bg-primary/30 selection:text-primary flex flex-col">
<Navbar />
<main>{children}</main>
<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>
<Footer />
</div>
</ThemeProvider>