Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e74f32fba | |||
| 206f67d163 | |||
| d3f5f4f634 | |||
| e01096f417 | |||
| 05982f8eda |
@@ -13,6 +13,11 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Award, CheckCircle, Heart, HelpCircle, Leaf, Mail, Sparkles, Zap } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleProductClick = (productId: string, productName: string) => {
|
||||
// Navigate to product detail page or checkout
|
||||
window.location.href = `/products/${productId}`;
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -77,18 +82,18 @@ export default function LandingPage() {
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
title="Our Signature Collection"
|
||||
description="Discover our best-selling skincare essentials designed to transform your daily routine"
|
||||
tag="Best Sellers"
|
||||
description="Discover our 3 best-selling skincare essentials designed to transform your daily routine"
|
||||
tag="3 Bestsellers"
|
||||
tagIcon={Sparkles}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Hydrating Moisturizer", price: "$68", imageSrc: "http://img.b2bpic.net/free-photo/luxury-cream-jar-silk-fabric_9975-134546.jpg", imageAlt: "Hydrating Moisturizer", isFavorited: false
|
||||
id: "1", name: "Hydrating Moisturizer", price: "$68", imageSrc: "http://img.b2bpic.net/free-photo/luxury-cream-jar-silk-fabric_9975-134546.jpg", imageAlt: "Hydrating Moisturizer", isFavorited: false, onProductClick: () => handleProductClick("1", "Hydrating Moisturizer")
|
||||
},
|
||||
{
|
||||
id: "2", name: "Brightening Serum", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-bottle-with-serum-pipette-hand-stone-gray-background_185193-162254.jpg", imageAlt: "Brightening Serum", isFavorited: false
|
||||
id: "2", name: "Brightening Serum", price: "$85", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-bottle-with-serum-pipette-hand-stone-gray-background_185193-162254.jpg", imageAlt: "Brightening Serum", isFavorited: false, onProductClick: () => handleProductClick("2", "Brightening Serum")
|
||||
},
|
||||
{
|
||||
id: "3", name: "Gentle Cleanser", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/aesthetic-spa-essentials-background-home-decor_53876-128208.jpg", imageAlt: "Gentle Cleanser", isFavorited: false
|
||||
id: "3", name: "Gentle Cleanser", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/aesthetic-spa-essentials-background-home-decor_53876-128208.jpg", imageAlt: "Gentle Cleanser", isFavorited: false, onProductClick: () => handleProductClick("3", "Gentle Cleanser")
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
|
||||
Reference in New Issue
Block a user