pokedex-web / frontend /src /app /layout.js
gpimentel's picture
feat: initialize Pokedex Web project with FastAPI backend and React frontend
f2bfbb5
Raw
History Blame Contribute Delete
366 Bytes
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>
);
}