Luminaria / frontend /app /layout.tsx
senlinyy's picture
feat: UI updated
65afa7b
Raw
History Blame Contribute Delete
456 Bytes
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>
);
}