import Link from "next/link" import Image from "next/image" export default function CategorySection() { const categories = [ { name: "Streetwear", slug: "streetwear", image: "https://images.pexels.com/photos/9522954/pexels-photo-9522954.jpeg?auto=compress&cs=tinysrgb&h=350", count: "24 items", }, { name: "Casual", slug: "casual", image: "https://images.pexels.com/photos/9522954/pexels-photo-9522954.jpeg?auto=compress&cs=tinysrgb&h=350", count: "18 items", }, { name: "Accessories", slug: "accessories", image: "https://images.pexels.com/photos/13408576/pexels-photo-13408576.jpeg?auto=compress&cs=tinysrgb&h=350", count: "12 items", }, ] return (

Shop by Category

{categories.map((cat) => ( {`${cat.name}

{cat.name}

{cat.count}

))}
) }