File size: 456 Bytes
4b81334
 
 
 
65afa7b
 
4b81334
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
  );
}