Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b7bafdc01 | |||
| 4a64da2e78 | |||
| 9c4664a765 | |||
| 3f61850b54 |
@@ -13,6 +13,10 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { Star, Sparkles, Shield, CheckCircle, Tag, Users, Clock, MapPin } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const handleProductClick = (productId: string, productName: string) => {
|
||||
console.log(`Product clicked: ${productName} (${productId})`);
|
||||
};
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
@@ -79,10 +83,10 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
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-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-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-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-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", 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", 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", onProductClick: () => handleProductClick("product-4", "Basics Collection") }
|
||||
]}
|
||||
ariaLabel="Featured product collections at IBNA Clothing"
|
||||
/>
|
||||
@@ -175,9 +179,9 @@ export default function LandingPage() {
|
||||
imageAlt="IBNA Clothing store location on map"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your phone number"
|
||||
buttonText="Contact Store"
|
||||
termsText="By clicking Contact Store you're confirming that you agree to reach out about our products and services."
|
||||
inputPlaceholder="Enter your name"
|
||||
buttonText="Get Store Hours & Directions"
|
||||
termsText="By clicking Get Store Hours & Directions you're confirming that you agree to reach out about our products and services."
|
||||
ariaLabel="Contact IBNA Clothing"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user