Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 34865c7d53 | |||
| f9860d2706 | |||
| c7274ffa65 | |||
| a9ad64149c | |||
| 8707e59ff6 | |||
| 7c2965f64e | |||
| 1b7bafdc01 | |||
| 4a64da2e78 | |||
| 9c4664a765 | |||
| 3f61850b54 | |||
| 8d4f0222ab | |||
| 9fe5ca0fc1 | |||
| 43821cab7e | |||
| f2986e5423 | |||
| 36d2e04576 |
@@ -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"
|
||||
@@ -41,7 +45,7 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDualMedia
|
||||
title="Premium Men's Fashion. Affordable Prices."
|
||||
description="Discover stylish shirts, jeans, and everyday fashion essentials at IBNA Clothing. Quality fabrics, modern styles, and prices you'll love—all in one place."
|
||||
description="Find perfect-fitting, stylish clothing locally at IBNA Clothing. We offer a curated selection of premium men's shirts, denim, check patterns, and everyday essentials—all designed to fit your style and budget."
|
||||
tag="Trusted Local Store"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
@@ -49,13 +53,13 @@ export default function LandingPage() {
|
||||
rating={4.9}
|
||||
ratingText="Rated by 150+ customers"
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:+923001234567" },
|
||||
{ text: "WhatsApp Us", href: "https://wa.me/923001234567" },
|
||||
{ text: "Call Now", href: "tel:+923111981097" },
|
||||
{ text: "WhatsApp Us", href: "https://wa.me/923111981097" },
|
||||
{ text: "Get Directions", href: "https://maps.google.com" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-shopping-buying-consumer-goods_23-2151669857.jpg", imageAlt: "men's casual shirt folded display" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-shopping-buying-consumer-leads-goods_23-2151669857.jpg", imageAlt: "men's casual shirt folded display" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-clothing_1203-8158.jpg", imageAlt: "stack of denim jeans folded" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
@@ -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"
|
||||
/>
|
||||
@@ -166,26 +170,26 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
tag="Visit Us Today"
|
||||
title="IBNA Clothing"
|
||||
description="Men's Clothing Store | Open Daily until 11 PM | Premium Fashion at Affordable Prices"
|
||||
description="Men's Clothing Store | Johar Town, Lahore | Open Daily until 11 PM | Premium Fashion at Affordable Prices"
|
||||
tagIcon={MapPin}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/local-business-landing-page_23-2148589391.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ArZchIApxcVpfImnAbjJ0y3n5f/uploaded-1773503018719-a52rwy0j.png"
|
||||
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>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-vector/golden-logo-vintage-luxury-style_23-2147861436.jpg"
|
||||
imageAlt="IBNA Clothing brand"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ArZchIApxcVpfImnAbjJ0y3n5f/uploaded-1773503018719-dn4at12z.png"
|
||||
imageAlt="IBNA Clothing brand logo"
|
||||
logoText="IBNA Clothing"
|
||||
copyrightText="© 2025 IBNA Clothing. All rights reserved."
|
||||
columns={[
|
||||
@@ -199,8 +203,8 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Call: +92-300-1234567", href: "tel:+923001234567" },
|
||||
{ label: "WhatsApp", href: "https://wa.me/923001234567" },
|
||||
{ label: "Call: 0311 1981097", href: "tel:+923111981097" },
|
||||
{ label: "WhatsApp", href: "https://wa.me/923111981097" },
|
||||
{ label: "Email: info@ibnalothing.pk", href: "mailto:info@ibnalothing.pk" }
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user