diff --git a/src/components/sections/CategorySection.tsx b/src/components/sections/CategorySection.tsx new file mode 100644 index 0000000..9e64b32 --- /dev/null +++ b/src/components/sections/CategorySection.tsx @@ -0,0 +1,60 @@ +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}

+
+ + ))} +
+
+
+ ) +}