| import type { Metadata } from "next"; | |
| import { Inter } from "next/font/google"; | |
| import "./globals.css"; | |
| const inter = Inter({ | |
| subsets: ["latin"], | |
| variable: "--font-inter", | |
| }); | |
| export const metadata: Metadata = { | |
| title: "Simpse - Real Estate Intelligence Platform", | |
| description: "Professional real estate market intelligence and analytics platform for Canadian markets", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="en"> | |
| <body className={`${inter.variable} font-inter antialiased`}> | |
| {children} | |
| </body> | |
| </html> | |
| ); | |
| } | |