17 lines
576 B
TypeScript
17 lines
576 B
TypeScript
import type { Metadata } from 'next';
|
|
import './globals.css';
|
|
export const metadata: Metadata = {
|
|
title: 'Eco-Life - Rebuild Earth, Starting With Your Choices',
|
|
description:
|
|
'Join the movement to create a sustainable future. Every choice you make today shapes the world of tomorrow.',
|
|
};
|
|
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="en" data-oid="ki63-os">
|
|
<body className="" data-oid="i_q8qsb">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|