import type { Metadata } from 'next'; import './globals.css'; export const metadata: Metadata = { title: 'Base Noter', description: 'Track how each Clash of Clans base defends against every army', }; export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} ); }