diff --git a/src/app/page.tsx b/src/app/page.tsx index 79325c8..edc0a12 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,59 +1,48 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks"; -import { ShoppingBag, Tag, Star, Sparkles, Shirt } from "lucide-react"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import { Shirt } from "lucide-react"; export default function PersonalGridTemplatePage() { - const titleSegments = [ - { type: "text" as const, content: "Curated styles for" }, - { type: "image" as const, src: "http://img.b2bpic.net/free-photo/top-view-girl-with-dreadlocks-lying-floor_23-2149085227.jpg", alt: "Modern Fashion" }, - { type: "text" as const, content: "your wardrobe" }, - { type: "image" as const, src: "http://img.b2bpic.net/free-photo/close-up-purple-texture-fabric-with-small-pattern-small-squares_91008-489.jpg", alt: "Chic Trends" }, - { type: "text" as const, content: "elevated" }, - ]; - - const socialLinks = [ - { icon: ShoppingBag, label: "Shop Instagram", href: "#" }, - { icon: Sparkles, label: "Style Trends", href: "#" }, - { icon: Star, label: "New Arrivals", href: "#" }, - ]; - - const linkCards = [ + const products = [ { - icon: Shirt, - title: "Spring/Summer 2024", description: "Discover our latest seasonal drop of sustainable linens and cottons.", button: { text: "Shop Collection", href: "#" }, + id: "1", brand: "Signature", name: "Organic Linen Shirt", price: "$129", rating: 5, + reviewCount: "128", imageSrc: "https://img.b2bpic.net/free-photo/top-view-girl-with-dreadlocks-lying-floor_23-2149085227.jpg", imageAlt: "Organic Linen Shirt" }, { - icon: Tag, - title: "Exclusive Membership", description: "Sign up for 15% off your first purchase and early access to drops.", button: { text: "Join & Save", href: "#" }, + id: "2", brand: "Signature", name: "Cotton Essential Tee", price: "$45", rating: 4, + reviewCount: "84", imageSrc: "https://img.b2bpic.net/free-photo/close-up-purple-texture-fabric-with-small-pattern-small-squares_91008-489.jpg", imageAlt: "Cotton Essential Tee" }, { - icon: Star, - title: "Best Sellers", description: "Our community favorites—the pieces everyone is wearing this month.", button: { text: "View Gallery", href: "#" }, - }, + id: "3", brand: "Signature", name: "Tailored Wool Trousers", price: "$189", rating: 5, + reviewCount: "42", imageSrc: "https://img.b2bpic.net/free-photo/top-view-girl-with-dreadlocks-lying-floor_23-2149085227.jpg", imageAlt: "Tailored Wool Trousers" + } ]; return ( - +
+ +
); } \ No newline at end of file