From 05d121bfd4c0900c45c6ffd724279b29e17e024c Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:29:47 +0000 Subject: [PATCH] Update app/categories/page.tsx --- app/categories/page.tsx | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 app/categories/page.tsx diff --git a/app/categories/page.tsx b/app/categories/page.tsx new file mode 100644 index 0000000..901601b --- /dev/null +++ b/app/categories/page.tsx @@ -0,0 +1,40 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Footer } from "@/components/footer"; +import { products } from "@/lib/data"; +import Link from "next/link"; + +export default function CategoriesPage() { + const categories = [ + { name: "Electronics", icon: "🔌", image: "https://images.unsplash.com/photo-1498049794561-7780e7231661?q=80&w=1000&auto=format&fit=crop" }, + { name: "Fashion", icon: "👕", image: "https://images.unsplash.com/photo-1445205170230-053b830c6050?q=80&w=1000&auto=format&fit=crop" }, + { name: "Groceries", icon: "🍎", image: "https://images.unsplash.com/photo-1542838132-92c53300491e?q=80&w=1000&auto=format&fit=crop" }, + { name: "Hotel Supplies", icon: "🏨", image: "https://images.unsplash.com/photo-1593642632823-8f785ba67e45?q=80&w=1000&auto=format&fit=crop" }, + ]; + + return ( +
+ + Shop by Category +
+ {categories.map((cat) => ( + +
+
+ {cat.name} +
+
+ {cat.icon} +

{cat.name}

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