import type { Metadata } from "next"; import type { ReactNode } from "react"; import "./globals.css"; export const metadata: Metadata = { title: "Fan Passport: The World Cup Journey", description: "A digital football passport prototype for collecting World Cup teams, matches, stadiums, predictions, trivia, stickers, achievements, leaderboards, and memories.", }; export default function RootLayout({ children, }: Readonly<{ children: ReactNode; }>) { return ( {children} ); }