6 Commits

Author SHA1 Message Date
732adc8a2f Merge version_3 into main
Merge version_3 into main
2026-03-12 07:10:33 +00:00
532c1e63e2 Update src/app/page.tsx 2026-03-12 07:10:29 +00:00
7820bf675d Merge version_2 into main
Merge version_2 into main
2026-03-12 07:09:25 +00:00
a399e5d8f1 Update src/app/page.tsx 2026-03-12 07:09:21 +00:00
725bada463 Merge version_1 into main
Merge version_1 into main
2026-03-12 07:08:24 +00:00
226fe7465d Merge version_1 into main
Merge version_1 into main
2026-03-12 07:08:01 +00:00

View File

@@ -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" }}