import Link from "next/link"; import { getPokemons } from "@/graphql/getPokemons"; type Pokemon = { image: string; name: string; __typename: string; }; export default async function Home() { const pokemons = await getPokemons(); return (