Spaces:
Runtime error
Runtime error
| import type { Metadata } from "next"; | |
| import { AppLayout } from "@/components/layout/AppLayout"; | |
| import "./globals.css"; | |
| import "@/components/layout/layout.css"; | |
| import "@/components/ui/ui.css"; | |
| export const metadata: Metadata = { | |
| title: "Apex Consorcios | Simulador", | |
| description: "Simulador deterministico de consorcio imobiliario", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="pt-BR"> | |
| <body className="antialiased"> | |
| <AppLayout>{children}</AppLayout> | |
| </body> | |
| </html> | |
| ); | |
| } | |