Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 732adc8a2f | |||
| 532c1e63e2 | |||
| 7820bf675d | |||
| a399e5d8f1 | |||
| 725bada463 | |||
| 226fe7465d |
@@ -11,6 +11,15 @@ import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Heart, Instagram, Mail, Sparkles, Star, Twitter, Linkedin } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleProductClick = (productId: string, productName: string) => {
|
||||
console.log(`Navigating to product detail page for: ${productName}`);
|
||||
window.location.href = `/products/${productId}`;
|
||||
};
|
||||
|
||||
const handleFavorite = (productId: string) => {
|
||||
console.log(`Toggled favorite for product: ${productId}`);
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -79,9 +88,9 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{ id: "1", name: "Minimalist Blazer", price: "$299", imageSrc: "http://img.b2bpic.net/free-photo/travel-bag-with-sneakers-wallet-trousers_23-2149433930.jpg?_wi=3", imageAlt: "Black minimalist blazer" },
|
||||
{ id: "2", name: "Urban Elegance Coat", price: "$349", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-brunette-woman-girl-model-with-nude-makeup-summer-t-shirt-top-jeans-clothes-posing-near-wall_158538-9076.jpg?_wi=3", imageAlt: "Premium urban coat" },
|
||||
{ id: "3", name: "Signature Dress", price: "$279", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-stylish-white-suit-sits-white-cube-gallery_8353-10744.jpg?_wi=2", imageAlt: "Elegant signature dress" }
|
||||
{ id: "1", name: "Minimalist Blazer", price: "$299", imageSrc: "http://img.b2bpic.net/free-photo/travel-bag-with-sneakers-wallet-trousers_23-2149433930.jpg?_wi=3", imageAlt: "Black minimalist blazer", onProductClick: () => handleProductClick("1", "Minimalist Blazer"), onFavorite: () => handleFavorite("1"), isFavorited: false },
|
||||
{ id: "2", name: "Urban Elegance Coat", price: "$349", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-brunette-woman-girl-model-with-nude-makeup-summer-t-shirt-top-jeans-clothes-posing-near-wall_158538-9076.jpg?_wi=3", imageAlt: "Premium urban coat", onProductClick: () => handleProductClick("2", "Urban Elegance Coat"), onFavorite: () => handleFavorite("2"), isFavorited: false },
|
||||
{ id: "3", name: "Signature Dress", price: "$279", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-stylish-white-suit-sits-white-cube-gallery_8353-10744.jpg?_wi=2", imageAlt: "Elegant signature dress", onProductClick: () => handleProductClick("3", "Signature Dress"), onFavorite: () => handleFavorite("3"), isFavorited: false }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -122,7 +131,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
tag="Newsletter"
|
||||
title="Stay Updated with Exclusive Launches"
|
||||
description="Subscribe to our mailing list to receive early access to new collections, exclusive offers, and fashion insights directly to your inbox"
|
||||
description="Be the first to discover new drops, exclusive member discounts, and insider style tips—join our community of fashion lovers today."
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
|
||||
Reference in New Issue
Block a user