From b3322c3c3774ad296821b24d7c403f8c82931bdb Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 13:40:40 +0000 Subject: [PATCH] Update components/categories.tsx --- components/categories.tsx | 73 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 components/categories.tsx diff --git a/components/categories.tsx b/components/categories.tsx new file mode 100644 index 0000000..c98224a --- /dev/null +++ b/components/categories.tsx @@ -0,0 +1,73 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Card, CardContent } from "@/components/ui/card"; +import { BlurImage } from "@/components/blur-image"; +import Link from "next/link"; + +const categories = [ + { + name: "Living Room", + image: "https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=600&q=80", + count: 120, + }, + { + name: "Bedroom", + image: "https://images.unsplash.com/photo-1522771739844-6a9f6d5f14af?w=600&q=80", + count: 95, + }, + { + name: "Dining Room", + image: "https://images.unsplash.com/photo-1617806118233-18e1de247200?w=600&q=80", + count: 78, + }, + { + name: "Office", + image: "https://images.unsplash.com/photo-1497366216548-37526070297c?w=600&q=80", + count: 65, + }, + { + name: "Outdoor", + image: "https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=600&q=80", + count: 42, + }, + { + name: "Storage", + image: "https://images.unsplash.com/photo-1595428774223-ef52624120d2?w=600&q=80", + count: 58, + }, +]; + +export function Categories() { + return ( +
+ +
+ Shop by Category +
+
+ {categories.map((category) => ( + + + +
+ +
+
+

{category.name}

+

{category.count} items

+
+
+
+ + ))} +
+
+
+ ); +}