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 ( {children} ); }