Files
goodgo-platform/apps/web/app/[locale]/(auth)/layout.tsx
Ho Ngoc Hai 759052a71f fix(web): update dashboard pages, layouts, and listing forms
Update 12 page/layout files across auth, dashboard, listings, and search
routes to improve type safety, fix component imports, and align with
latest API changes.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-11 01:39:59 +07:00

8 lines
298 B
TypeScript

export default function AuthLayout({ children }: { children: React.ReactNode }) {
return (
<main id="main-content" role="main" className="flex min-h-screen items-center justify-center bg-muted/40 px-4 py-6 md:py-12">
<div className="w-full max-w-md">{children}</div>
</main>
);
}