Update src/app/page.tsx

This commit is contained in:
2026-03-12 07:10:29 +00:00
parent 7820bf675d
commit 532c1e63e2

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>
@@ -146,4 +155,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}