Spaces:
Sleeping
Sleeping
| import "./globals.css"; | |
| export const metadata = { | |
| title: "Pokédex AI — Who's That Pokémon?", | |
| description: "A modern web application that uses computer vision (ResNet-18) to identify 1025 different Pokémon silhouettes.", | |
| }; | |
| export default function RootLayout({ children }) { | |
| return ( | |
| <html lang="en"> | |
| <body>{children}</body> | |
| </html> | |
| ); | |
| } | |