Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e245ebbcb0 | |||
| 922136278e | |||
| 2ebf806003 | |||
| 435475b055 | |||
| 14f1c9e6ac | |||
| 113926149b | |||
| 35a9f05e9b | |||
| e170229cd6 | |||
| 66d916a419 | |||
| 759c4140eb | |||
| 9337a81ca7 | |||
| 30e4324c0b | |||
| 797c219487 | |||
| d8db5797aa | |||
| e051c968d8 | |||
| bd7bdaff3d | |||
| e98b63b805 | |||
| e7d9063167 | |||
| 15ff871306 | |||
| 1e8fefcfed |
@@ -1,36 +1,31 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
import { DM_Sans } from "next/font/google";
|
||||||
import { Nunito } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const halant = Halant({
|
const poppins = Poppins({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-poppins", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const dmSans = DM_Sans({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-dm-sans", subsets: ["latin"],
|
||||||
});
|
|
||||||
|
|
||||||
const nunito = Nunito({
|
|
||||||
variable: "--font-nunito", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Apna Mens Wear | Budget Mens Fashion in Bhawarkua, Indore", description: "Affordable mens wear store in Indore. 4 shirts for ₹1000, formal combos, casual wear & delivery. ⭐3.8 rating. Call 096301 05490 for orders.", keywords: "mens wear Indore, Bhawarkua clothing, affordable shirts, budget mens fashion, combo deals Indore", robots: {
|
title: "Apna Mens Wear | Premium Budget Mens Fashion in Bhawarkua, Indore", description: "Experience premium mens wear at budget prices. 4 shirts for ₹1000, formal combos, casual wear & delivery. ⭐3.8 rating. Call 096301 05490 for orders.", keywords: "mens wear Indore, Bhawarkua clothing, affordable shirts, budget mens fashion, combo deals Indore, premium mens wear", robots: {
|
||||||
index: true,
|
index: true,
|
||||||
follow: true,
|
follow: true,
|
||||||
},
|
},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "Apna Mens Wear - Trusted Budget Mens Fashion in Indore", description: "Shop affordable, quality mens clothing at Apna Mens Wear. ⭐3.8 rating, fast delivery, combo offers. Open till 11 PM in Bhawarkua.", url: "https://yourwebsite.com", siteName: "Apna Mens Wear", type: "website", images: [{
|
title: "Apna Mens Wear - Premium Budget Mens Fashion in Indore", description: "Shop premium quality mens clothing at budget prices. ⭐3.8 rating, fast delivery, exclusive combo offers. Open till 11 PM in Bhawarkua.", url: "https://yourwebsite.com", siteName: "Apna Mens Wear", type: "website", images: [{
|
||||||
url: "http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg", alt: "mens wear store clothing shop interior modern retail men clothing display"
|
url: "http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg", alt: "mens wear store clothing shop interior modern retail men clothing display"
|
||||||
}],
|
}],
|
||||||
},
|
},
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image", title: "Apna Mens Wear - Budget Mens Fashion Indore", description: "4 shirts for ₹1000 | Combo deals | Fast delivery | Call now!", images: ["http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg"],
|
card: "summary_large_image", title: "Apna Mens Wear - Premium Budget Mens Fashion Indore", description: "4 shirts for ₹1000 | Premium quality | Combo deals | Fast delivery | Call now!", images: ["http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg"],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -43,7 +38,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
className={`${poppins.variable} ${dmSans.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
176
src/app/page.tsx
176
src/app/page.tsx
@@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import { Bell, Flame, MessageSquare, Package, ShoppingCart, Star, Truck, Users } from 'lucide-react';
|
import { Bell, Flame, MessageSquare, Package, ShoppingCart, Star, Truck, Users } from 'lucide-react';
|
||||||
|
|
||||||
@@ -43,29 +43,37 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogo
|
<HeroBillboardGallery
|
||||||
logoText="Indore's Budget Mens Wear"
|
title="Premium Mens Wear at Budget Prices"
|
||||||
description="Trendy Shirts, Tees & Combos at Unbeatable Prices | ⭐ 3.8 Google Rating | Open till 11 PM"
|
description="Trendy Shirts, Tees & Combos at Unbeatable Prices | ⭐ 3.8 Google Rating | Open till 11 PM | Expert Style Consultation"
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
mediaItems={[
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg", imageAlt: "mens wear store clothing shop interior modern retail men clothing display"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-men-fashion-shirt_1203-7650.jpg", imageAlt: "men shirts combo affordable clothing bundle 4 pack shirts casual wear set"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/men-s-formal-wear-collection_53876-16559.jpg", imageAlt: "formal shirt combo dress shirt collection business casual wear formal attire"
|
||||||
|
}
|
||||||
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "📞 Call Now", href: "tel:+919630105490" },
|
{ text: "📞 Call Now", href: "tel:+919630105490" },
|
||||||
{ text: "💬 WhatsApp", href: "https://wa.me/919630105490" }
|
{ text: "💬 WhatsApp", href: "https://wa.me/919630105490" }
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-shopping-menswear-shop_1303-19869.jpg"
|
mediaAnimation="slide-up"
|
||||||
imageAlt="mens wear store clothing shop interior modern retail men clothing display"
|
|
||||||
showDimOverlay={true}
|
|
||||||
buttonAnimation="slide-up"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="why-us" data-section="why-us">
|
<div id="why-us" data-section="why-us">
|
||||||
<InlineImageSplitTextAbout
|
<InlineImageSplitTextAbout
|
||||||
heading={[
|
heading={[
|
||||||
{ type: "text", content: "Why Choose Apna Mens Wear?" }
|
{ type: "text", content: "Why Choose Apna Mens Wear? Your Trusted Premium Store" }
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get Your Combo Now", href: "tel:+919630105490" }
|
{ text: "Explore Our Collection", href: "tel:+919630105490" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -73,50 +81,49 @@ export default function LandingPage() {
|
|||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features">
|
||||||
<FeatureCardTwentySix
|
<FeatureCardTwentySix
|
||||||
title="Why Our Customers Love Us"
|
title="Why Our Customers Love Us"
|
||||||
description="Trusted by thousands of budget-conscious shoppers across Indore since years"
|
description="Trusted by thousands of discerning shoppers across Indore. Premium quality at remarkable prices since years"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Affordable Combo Deals", description: "Get 4 shirts for ₹1000 and exclusive bulk offers that save you money", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-men-fashion-shirt_1203-7650.jpg?_wi=1", imageAlt: "men shirts combo affordable clothing bundle 4 pack shirts casual wear set", buttonIcon: ShoppingCart,
|
title: "Affordable Premium Combo Deals", description: "Get 4 premium shirts for ₹1000 and exclusive bulk offers. Unmatched quality at unbeatable prices", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-men-fashion-shirt_1203-7650.jpg?_wi=1", imageAlt: "men shirts combo affordable clothing bundle 4 pack shirts casual wear set", buttonIcon: ShoppingCart,
|
||||||
buttonHref: "tel:+919630105490"
|
buttonHref: "tel:+919630105490"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Friendly & Helpful Staff", description: "Our team helps you find the perfect fit and style for your budget", imageSrc: "http://img.b2bpic.net/free-photo/men-s-formal-wear-collection_53876-16559.jpg?_wi=1", imageAlt: "formal shirt combo dress shirt collection business casual wear formal attire", buttonIcon: Users,
|
title: "Expert Style Consultation", description: "Our trained team helps you find the perfect fit, style and color combination for your personality", imageSrc: "http://img.b2bpic.net/free-photo/men-s-formal-wear-collection_53876-16559.jpg?_wi=1", imageAlt: "formal shirt combo dress shirt collection business casual wear formal attire", buttonIcon: Users,
|
||||||
buttonHref: "tel:+919630105490"
|
buttonHref: "tel:+919630105490"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "In-Store Pickup Available", description: "Quick pickup options with zero hassle - visit us anytime", imageSrc: "http://img.b2bpic.net/free-photo/old-friends-walking-talking-outdoors_23-2148179962.jpg?_wi=1", imageAlt: "mens t-shirts collection casual tee bundle 4 pack t-shirts comfortable wear", buttonIcon: Package,
|
title: "Convenient In-Store Experience", description: "Premium store ambiance with quick pickup options. Visit us anytime - zero hassle shopping experience", imageSrc: "http://img.b2bpic.net/free-photo/old-friends-walking-talking-outdoors_23-2148179962.jpg?_wi=1", imageAlt: "mens t-shirts collection casual tee bundle 4 pack t-shirts comfortable wear", buttonIcon: Package,
|
||||||
buttonHref: "tel:+919630105490"
|
buttonHref: "tel:+919630105490"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Local Delivery Option", description: "Fast delivery across Bhawarkua and surrounding areas in Indore", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-jeans-sunglasses-posed-street-city-beard-attractive-arab-guy_627829-2583.jpg?_wi=1", imageAlt: "mens jeans casual wear denim collection casual pants jeans fashion", buttonIcon: Truck,
|
title: "Swift Local Delivery Service", description: "Fast, reliable delivery across Bhawarkua and surrounding areas. Track your order in real-time", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-jeans-sunglasses-posed-street-city-beard-attractive-arab-guy_627829-2583.jpg?_wi=1", imageAlt: "mens jeans casual wear denim collection casual pants jeans fashion", buttonIcon: Truck,
|
||||||
buttonHref: "tel:+919630105490"
|
buttonHref: "tel:+919630105490"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
tag="Why Us"
|
|
||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="offers" data-section="offers">
|
<div id="offers" data-section="offers">
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
title="Featured Offers"
|
title="Premium Collection Showcases"
|
||||||
description="Limited time deals on premium mens fashion - Order now!"
|
description="Curated premium mens fashion collection - Limited time exclusive deals on premium quality"
|
||||||
tag="Best Sellers"
|
tag="Best Sellers"
|
||||||
tagIcon={Flame}
|
tagIcon={Flame}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "combo-4shirts", name: "4 Shirts Bundle", price: "₹1,000", variant: "Assorted Colors & Styles", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-men-fashion-shirt_1203-7650.jpg?_wi=2", imageAlt: "men shirts combo affordable clothing bundle 4 pack shirts casual wear set"
|
id: "combo-4shirts", name: "Premium 4 Shirts Bundle", price: "₹1,000", variant: "Assorted Premium Colors & Styles", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-men-fashion-shirt_1203-7650.jpg?_wi=2", imageAlt: "men shirts combo affordable clothing bundle 4 pack shirts casual wear set"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "formal-combo", name: "Formal Combo Pack", price: "₹800", variant: "Shirt + Tie + Pocket Square", imageSrc: "http://img.b2bpic.net/free-photo/men-s-formal-wear-collection_53876-16559.jpg?_wi=2", imageAlt: "formal shirt combo dress shirt collection business casual wear formal attire"
|
id: "formal-combo", name: "Executive Formal Combo Pack", price: "₹800", variant: "Shirt + Tie + Pocket Square", imageSrc: "http://img.b2bpic.net/free-photo/men-s-formal-wear-collection_53876-16559.jpg?_wi=2", imageAlt: "formal shirt combo dress shirt collection business casual wear formal attire"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "tshirt-combo", name: "4 T-Shirts Bundle", price: "₹1,000", variant: "Casual & Comfortable", imageSrc: "http://img.b2bpic.net/free-photo/old-friends-walking-talking-outdoors_23-2148179962.jpg?_wi=2", imageAlt: "mens t-shirts collection casual tee bundle 4 pack t-shirts comfortable wear"
|
id: "tshirt-combo", name: "Premium 4 T-Shirts Bundle", price: "₹1,000", variant: "Casual Premium & Comfortable", imageSrc: "http://img.b2bpic.net/free-photo/old-friends-walking-talking-outdoors_23-2148179962.jpg?_wi=2", imageAlt: "mens t-shirts collection casual tee bundle 4 pack t-shirts comfortable wear"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "jeans-casual", name: "Budget Jeans & Casual", price: "₹600", variant: "Premium Denim Quality", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-jeans-sunglasses-posed-street-city-beard-attractive-arab-guy_627829-2583.jpg?_wi=2", imageAlt: "mens jeans casual wear denim collection casual pants jeans fashion"
|
id: "jeans-casual", name: "Premium Denim & Casual Wear", price: "₹600", variant: "Premium Denim Quality", imageSrc: "http://img.b2bpic.net/free-photo/stylish-tall-arabian-man-model-white-shirt-jeans-sunglasses-posed-street-city-beard-attractive-arab-guy_627829-2583.jpg?_wi=2", imageAlt: "mens jeans casual wear denim collection casual pants jeans fashion"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
@@ -126,45 +133,21 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="social-proof" data-section="social-proof">
|
<div id="metrics-seven" data-section="metrics-seven">
|
||||||
<SocialProofOne
|
<MetricCardSeven
|
||||||
title="Trusted by Thousands"
|
title="Our Impact & Achievements"
|
||||||
description="Join satisfied customers from Bhawarkua, Indore and across the city"
|
description="Key metrics that showcase our growth and customer satisfaction in Indore"
|
||||||
tag="Community"
|
tag="Stats"
|
||||||
textboxLayout="default"
|
tagIcon={Star}
|
||||||
useInvertedBackground={false}
|
metrics={[
|
||||||
names={[
|
|
||||||
"College Students", "Working Professionals", "Budget Shoppers", "Bulk Buyers", "Local Families", "Fashion Enthusiasts", "Regular Customers"
|
|
||||||
]}
|
|
||||||
speed={40}
|
|
||||||
showCard={true}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
|
||||||
<TestimonialCardTwo
|
|
||||||
title="Customer Reviews"
|
|
||||||
description="Read what our happy customers have to say about Apna Mens Wear"
|
|
||||||
tag="Feedback"
|
|
||||||
tagIcon={MessageSquare}
|
|
||||||
testimonials={[
|
|
||||||
{
|
{
|
||||||
id: "1", name: "Rohit Sharma", role: "College Student", testimonial: "Best place to buy affordable quality shirts in Bhawarkua! Staff is super friendly and the 4 shirts for ₹1000 combo is unbeatable.", imageSrc: "http://img.b2bpic.net/free-photo/male-dj-grey-suit-with-headphones-neck_114579-15958.jpg", imageAlt: "male customer portrait professional man photo happy customer Indian man"
|
id: "1", value: "10K+", title: "Happy Customers Served", items: ["Across Indore & surrounding areas", "Repeat customers trusted us"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", name: "Ajay Kumar", role: "Working Professional", testimonial: "I've been shopping here for 2 years. The quality is reliable, prices are budget-friendly, and they have great combo deals. Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-man-with-book-his-hand_641386-167.jpg", imageAlt: "young man portrait college student photo casual man confident expression"
|
id: "2", value: "3.8★", title: "Google Rating", items: ["Consistently rated highly", "Customer satisfaction guaranteed"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", name: "Vikram Singh", role: "Bulk Buyer", testimonial: "Excellent for office uniform orders. They offer fantastic bulk discounts and deliver right on time. Very professional service!", imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-hispanic-business-person_23-2151099215.jpg", imageAlt: "business professional man confident portrait work casual Indian businessman"
|
id: "3", value: "500+", title: "Combo Deals Sold Monthly", items: ["Premium quality assured", "Bulk discounts available"]
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4", name: "Nitin Patel", role: "Local Resident", testimonial: "Love their collection and the location is so convenient in Bhawarkua. Staff always helps me find the right fit. Great experience!", imageSrc: "http://img.b2bpic.net/free-photo/handsome-businesman-summer-city_1157-18994.jpg", imageAlt: "young professional portrait smiling man office wear modern professional"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5", name: "Arjun Verma", role: "Regular Customer", testimonial: "Perfect quality at perfect prices. I bring all my friends here now. The service is quick and the staff knows their products inside out.", imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-man-red-shirt-with-optical-glasses-holds-points-paper-bags-isolated-orange-wall_141793-35482.jpg", imageAlt: "male customer satisfied happy shopper positive expression Indian male"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "6", name: "Sandeep Gupta", role: "Business Owner", testimonial: "Ordered 50 shirts for my staff. Got amazing rates, fast delivery, and excellent quality. Apna Mens Wear is my go-to store now!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-modelmodern-man-dressed-elegant-suit-fashion-male-posing-street-background-europe-city-sunset-sunglasses_158538-22400.jpg", imageAlt: "professional man portrait confident male modern look fashionable man"
|
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -173,18 +156,59 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="metrics-three" data-section="metrics-three">
|
||||||
<ContactCenter
|
<MetricCardThree
|
||||||
tag="Stay Connected"
|
title="Why Shop With Us"
|
||||||
title="Get Best Offers Directly"
|
description="Experience the difference with our premium quality and unbeatable prices"
|
||||||
description="Subscribe to our updates and get exclusive deals, new arrivals, and special combo offers delivered to your inbox."
|
tag="Benefits"
|
||||||
tagIcon={Bell}
|
tagIcon={ShoppingCart}
|
||||||
tagAnimation="slide-up"
|
metrics={[
|
||||||
inputPlaceholder="Enter your email"
|
{
|
||||||
buttonText="Subscribe"
|
id: "1", value: "₹1000", title: "4 Premium Shirts", icon: Package
|
||||||
termsText="We respect your privacy. You can unsubscribe anytime."
|
},
|
||||||
background={{ variant: "rotated-rays-animated-grid" }}
|
{
|
||||||
|
id: "2", value: "Till 11 PM", title: "Extended Store Hours", icon: Bell
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", value: "Expert", title: "Style Consultation", icon: Users
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
animationType="slide-up"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="faq" data-section="faq">
|
||||||
|
<ContactFaq
|
||||||
|
faqs={[
|
||||||
|
{
|
||||||
|
id: "1", title: "What is the 4 Shirts for ₹1000 combo?", content: "Our signature combo includes 4 premium quality shirts in assorted colors and styles. Perfect for everyday wear and budget-friendly!"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", title: "Do you offer bulk discounts?", content: "Yes! We provide excellent bulk discounts for corporate orders, office uniforms, and large purchases. Contact us for customized pricing."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", title: "What are your store hours?", content: "We are open till 11 PM daily, making it convenient for you to shop after work or on weekends. Visit us anytime!"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4", title: "Do you provide delivery?", content: "Yes, we offer fast and reliable delivery across Bhawarkua and surrounding areas in Indore. Track your order in real-time!"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "5", title: "Can I get style consultation?", content: "Absolutely! Our trained team provides free style consultation to help you find the perfect fit and color combination."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "6", title: "What payment methods do you accept?", content: "We accept cash, digital payments, and online transfers. Visit us or call for more details about payment options."
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
ctaTitle="Ready to Upgrade Your Wardrobe?"
|
||||||
|
ctaDescription="Contact us today for exclusive offers and premium styling advice"
|
||||||
|
ctaButton={{
|
||||||
|
text: "Call Now", href: "tel:+919630105490"
|
||||||
|
}}
|
||||||
|
ctaIcon={Bell}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
animationType="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -193,14 +217,14 @@ export default function LandingPage() {
|
|||||||
imageSrc="http://img.b2bpic.net/free-photo/man-choosing-leather-belt-store_482257-85806.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/man-choosing-leather-belt-store_482257-85806.jpg"
|
||||||
imageAlt="mens clothing store exterior retail shop front Indore store shopping destination"
|
imageAlt="mens clothing store exterior retail shop front Indore store shopping destination"
|
||||||
logoText="Apna Mens Wear"
|
logoText="Apna Mens Wear"
|
||||||
copyrightText="© 2025 Apna Mens Wear. All rights reserved. | Bhawarkua, Indore"
|
copyrightText="© 2025 Apna Mens Wear. All rights reserved. | Premium Mens Fashion | Bhawarkua, Indore"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Quick Links", items: [
|
title: "Quick Links", items: [
|
||||||
{ label: "Home", href: "#hero" },
|
{ label: "Home", href: "hero" },
|
||||||
{ label: "Featured Offers", href: "#offers" },
|
{ label: "Premium Collection", href: "offers" },
|
||||||
{ label: "Why Us", href: "#why-us" },
|
{ label: "Why Choose Us", href: "why-us" },
|
||||||
{ label: "Reviews", href: "#testimonials" }
|
{ label: "Customer Reviews", href: "testimonials" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-nunito), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-nunito), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #ffffff;;
|
/* --background: #f5f5f5;;
|
||||||
--card: #f9f9f9;;
|
--card: #ffffff;;
|
||||||
--foreground: #000612e6;;
|
--foreground: #1c1c1c;;
|
||||||
--primary-cta: #15479c;;
|
--primary-cta: #1f3251;;
|
||||||
--secondary-cta: #f9f9f9;;
|
--secondary-cta: #ffffff;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #d4af37;;
|
||||||
--background-accent: #c4c4c4;; */
|
--background-accent: #e8e8e8;; */
|
||||||
|
|
||||||
--background: #ffffff;;
|
--background: #f5f5f5;;
|
||||||
--card: #f9f9f9;;
|
--card: #ffffff;;
|
||||||
--foreground: #000612e6;;
|
--foreground: #1c1c1c;;
|
||||||
--primary-cta: #15479c;;
|
--primary-cta: #1f3251;;
|
||||||
--primary-cta-text: #ffffff;;
|
--primary-cta-text: #ffffff;;
|
||||||
--secondary-cta: #f9f9f9;;
|
--secondary-cta: #ffffff;;
|
||||||
--secondary-cta-text: #000612e6;;
|
--secondary-cta-text: #000612e6;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #d4af37;;
|
||||||
--background-accent: #c4c4c4;;
|
--background-accent: #e8e8e8;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user