import prisma from "@/lib/prisma"; import { Product } from "@/components/Product"; export default async function Home() { const products = await prisma.product.findMany({ include: { category: true, }, }); return (

Next.js Starter

Shop from the hottest items in the world

{products.map((product) => ( ))}
); }