Spaces:
Sleeping
Sleeping
| import "./globals.css"; | |
| import type { Metadata } from "next"; | |
| export const metadata: Metadata = { | |
| title: "IamEarthDev — Educational Luminary", | |
| description: "A learning exploration supported by curated resources and customised AI.", | |
| }; | |
| export default function RootLayout({ children }: { children: React.ReactNode }) { | |
| return ( | |
| <html lang="en" className="h-full"> | |
| <body className="h-full antialiased">{children}</body> | |
| </html> | |
| ); | |
| } | |