4 Commits

Author SHA1 Message Date
685b597df9 Update src/app/page.tsx 2026-05-18 10:50:20 +00:00
6cd3febfdd Merge version_2 into main
Merge version_2 into main
2026-05-18 10:46:58 +00:00
88f6219ee0 Update src/app/page.tsx 2026-05-18 10:46:52 +00:00
1943fc452d Merge version_1 into main
Merge version_1 into main
2026-05-18 10:40:28 +00:00

View File

@@ -42,6 +42,7 @@ export default function LandingPage() {
{
name: "Contact", id: "contact"},
]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DtU2MEAeIIKVEKiC8rwK34sovq/uploaded-1779101405426-mwwq71s9.jpg"
brandName="B Mart"
/>
</div>
@@ -116,17 +117,17 @@ export default function LandingPage() {
useInvertedBackground={false}
metrics={[
{
id: "m1", title: "Active Users", value: "500k+", icon: Users,
id: "m1", title: "Company Heritage", value: "10+ Years", icon: Users,
},
{
id: "m2", title: "Products Listed", value: "1M+", icon: ShoppingBag,
id: "m2", title: "Global Presence", value: "50+ Cities", icon: ShoppingBag,
},
{
id: "m3", title: "Daily Deliveries", value: "20k+", icon: Truck,
id: "m3", title: "Customer Trust", value: "4.9/5", icon: Truck,
},
]}
title="B Mart in Numbers"
description="Growing rapidly, B Mart continues to reach thousands of homes across India."
title="About B Mart"
description="We have been redefining retail since 2014, connecting quality products with value-conscious shoppers."
/>
</div>
@@ -166,23 +167,17 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1", name: "Sarah Johnson", role: "CEO", company: "TechCorp", rating: 5,
id: "1", name: "Aarav Mehta", role: "Verified Customer", company: "B Mart Member", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-successful-young-businesswoman_1262-5844.jpg"},
{
id: "2", name: "Michael Chen", role: "CTO", company: "InnovateLab", rating: 5,
id: "2", name: "Priya Sharma", role: "Verified Customer", company: "B Mart Member", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/afro-american-woman-smiling-close-up_23-2148336840.jpg"},
{
id: "3", name: "Emily Rodriguez", role: "Marketing Director", company: "GrowthCo", rating: 5,
id: "3", name: "Vikram Singh", role: "Verified Customer", company: "B Mart Member", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/mixed-race-black-woman-with-curly-hair-studio-with-curtains-portrait-lilac-tones-pastel-tones-clothes-spring-mood_633478-2214.jpg"},
{
id: "4", name: "David Kim", role: "Product Manager", company: "StartupXYZ", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg"},
{
id: "5", name: "Elena Fisher", role: "Creative Lead", company: "DesignStudio", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/self-assured-brunette-businesswoman-posing-studio_176420-29829.jpg"},
]}
title="What Our Customers Say"
description="Read authentic reviews from shoppers who love the B Mart experience."
title="Customer Reviews"
description="Hear from our community about their seamless shopping experience."
/>
</div>
@@ -217,8 +212,8 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={true}
title="Contact Us"
description="Have inquiries? Reach out to our dedicated support team anytime."
title="Customer Support"
description="Need assistance with an order or account? Our support team is available 24/7."
inputs={[
{
name: "name", type: "text", placeholder: "Your Name", required: true,
@@ -228,7 +223,7 @@ export default function LandingPage() {
},
]}
textarea={{
name: "message", placeholder: "Describe your issue..."}}
name: "message", placeholder: "Describe your support issue..."}}
imageSrc="http://img.b2bpic.net/free-photo/office-workplace-with-computer-pc_53876-47087.jpg"
mediaPosition="right"
/>
@@ -240,19 +235,21 @@ export default function LandingPage() {
logoText="B Mart"
columns={[
{
title: "Company", items: [
{
label: "About", href: "#about"},
{
label: "Careers", href: "#"},
title: "Store Links", items: [
{ label: "Shop All", href: "#products" },
{ label: "Plus Membership", href: "#pricing" },
],
},
{
title: "Legal & Policy", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
{
title: "Support", items: [
{
label: "Help Center", href: "#faq"},
{
label: "Contact", href: "#contact"},
{ label: "Help Center", href: "#faq" },
{ label: "Contact Support", href: "#contact" },
],
},
]}
@@ -261,4 +258,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}