NebulaCloud/app/layout.tsx

17 lines
576 B
TypeScript
Raw Normal View History

2025-09-15 17:28:58 +08:00
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>
);
}