interface ProductItem { id: string; title: string; desc: string; } interface ProductsSectionProps { title: string; items: ProductItem[]; } export default function ProductsSection({ title, items }: ProductsSectionProps) { return (

{title}

{items.map((product, index) => (
AWS
{product.id}

{product.title}

{product.desc}

))}
); }