Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b7bafdc01 | |||
| 4a64da2e78 |
@@ -13,6 +13,10 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
|
|||||||
import { Star, Sparkles, Shield, CheckCircle, Tag, Users, Clock, MapPin } from 'lucide-react';
|
import { Star, Sparkles, Shield, CheckCircle, Tag, Users, Clock, MapPin } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
|
const handleProductClick = (productId: string, productName: string) => {
|
||||||
|
console.log(`Product clicked: ${productName} (${productId})`);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="directional-hover"
|
defaultButtonVariant="directional-hover"
|
||||||
@@ -79,10 +83,10 @@ export default function LandingPage() {
|
|||||||
gridVariant="bento-grid"
|
gridVariant="bento-grid"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
products={[
|
products={[
|
||||||
{ id: "product-1", name: "Casual Shirts", price: "From PKR 1,499", variant: "Multiple Colors", imageSrc: "http://img.b2bpic.net/free-photo/handsome-confident-model-sexy-stylish-man-dressed-white-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-interior-sunny-day-shadow-from-window-sunglasses_158538-23360.jpg?_wi=1", imageAlt: "men's casual shirt collection variety" },
|
{ id: "product-1", name: "Casual Shirts", price: "From PKR 1,499", variant: "Multiple Colors", imageSrc: "http://img.b2bpic.net/free-photo/handsome-confident-model-sexy-stylish-man-dressed-white-shirt-jeans-fashion-hipster-male-posing-near-white-wall-studio-interior-sunny-day-shadow-from-window-sunglasses_158538-23360.jpg?_wi=1", imageAlt: "men's casual shirt collection variety", onProductClick: () => handleProductClick("product-1", "Casual Shirts") },
|
||||||
{ id: "product-2", name: "Denim & Jeans", price: "From PKR 2,499", variant: "Premium Fit", imageSrc: "http://img.b2bpic.net/free-photo/bunch-jeans-wooden-background-strewn-jeans-close-up-fashionable-clothes_169016-4540.jpg", imageAlt: "men's denim jeans collection retail" },
|
{ id: "product-2", name: "Denim & Jeans", price: "From PKR 2,499", variant: "Premium Fit", imageSrc: "http://img.b2bpic.net/free-photo/bunch-jeans-wooden-background-strewn-jeans-close-up-fashionable-clothes_169016-4540.jpg", imageAlt: "men's denim jeans collection retail", onProductClick: () => handleProductClick("product-2", "Denim & Jeans") },
|
||||||
{ id: "product-3", name: "Check Shirts", price: "From PKR 1,799", variant: "Modern Pattern", imageSrc: "http://img.b2bpic.net/free-photo/woman-dress_1303-3761.jpg?_wi=1", imageAlt: "men's check pattern shirts display" },
|
{ id: "product-3", name: "Check Shirts", price: "From PKR 1,799", variant: "Modern Pattern", imageSrc: "http://img.b2bpic.net/free-photo/woman-dress_1303-3761.jpg?_wi=1", imageAlt: "men's check pattern shirts display", onProductClick: () => handleProductClick("product-3", "Check Shirts") },
|
||||||
{ id: "product-4", name: "Basics Collection", price: "From PKR 999", variant: "Essential Wear", imageSrc: "http://img.b2bpic.net/free-photo/mockup-tourist-set-jeans-strap-camera-glasses-scratchpad-smartphone_8353-5734.jpg?_wi=1", imageAlt: "men's basics t-shirt collection" }
|
{ id: "product-4", name: "Basics Collection", price: "From PKR 999", variant: "Essential Wear", imageSrc: "http://img.b2bpic.net/free-photo/mockup-tourist-set-jeans-strap-camera-glasses-scratchpad-smartphone_8353-5734.jpg?_wi=1", imageAlt: "men's basics t-shirt collection", onProductClick: () => handleProductClick("product-4", "Basics Collection") }
|
||||||
]}
|
]}
|
||||||
ariaLabel="Featured product collections at IBNA Clothing"
|
ariaLabel="Featured product collections at IBNA Clothing"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user