Merge version_1 into main #2
397
src/app/page.tsx
397
src/app/page.tsx
@@ -10,7 +10,6 @@ import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonia
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { Headphones, Package, Shield, ShieldCheck, TrendingDown, Truck } from "lucide-react";
|
||||
|
||||
@@ -32,26 +31,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Features",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "faq",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
]}
|
||||
brandName="Bulk Bandhu"
|
||||
/>
|
||||
@@ -59,123 +43,49 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="Direct From Manufacturers To Your Shop"
|
||||
description="Bulk Bandhu eliminates unnecessary middlemen, empowering small retailers to buy high-quality products directly from manufacturers at unbeatable wholesale prices."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Rahul Verma",
|
||||
handle: "@rahul_grocery",
|
||||
testimonial: "Bulk Bandhu saved me 20% on every order. Finally, direct access to the best manufacturers!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1602.jpg",
|
||||
},
|
||||
{
|
||||
name: "Priya Sharma",
|
||||
handle: "@sharma_fmcg",
|
||||
testimonial: "Fast delivery and transparent pricing. A game changer for my local grocery shop.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-man-with-wine-glass-night-club_23-2148037554.jpg",
|
||||
},
|
||||
{
|
||||
name: "Arjun Singh",
|
||||
handle: "@arjun_store",
|
||||
testimonial: "Incredible variety. I found products I couldn't get from my old local wholesaler.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1563.jpg",
|
||||
},
|
||||
{
|
||||
name: "Anita Desai",
|
||||
handle: "@anita_mart",
|
||||
testimonial: "The interface is so easy to use, and shipments arrive right on time every week.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/middle-age-latin-businesswoman-smiling-happy-standing-with-arms-crossed-gesture-city_839833-17431.jpg",
|
||||
},
|
||||
{
|
||||
name: "Vikram Sethi",
|
||||
handle: "@vikram_fmcg",
|
||||
testimonial: "Direct manufacturer pricing is the secret weapon for my store's profitability.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-image-cool-stylish-young-caucasian-male-with-black-curls-relaxing-indoors-sitting-white-desk-keeping-arms-folded-his-look-posture-expressing-confidence-smiling-camera_343059-2016.jpg",
|
||||
},
|
||||
{ name: "Rahul Verma", handle: "@rahul_grocery", testimonial: "Bulk Bandhu saved me 20% on every order. Finally, direct access to the best manufacturers!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1602.jpg" },
|
||||
{ name: "Priya Sharma", handle: "@sharma_fmcg", testimonial: "Fast delivery and transparent pricing. A game changer for my local grocery shop.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-man-with-wine-glass-night-club_23-2148037554.jpg" },
|
||||
{ name: "Arjun Singh", handle: "@arjun_store", testimonial: "Incredible variety. I found products I couldn't get from my old local wholesaler.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1563.jpg" },
|
||||
{ name: "Anita Desai", handle: "@anita_mart", testimonial: "The interface is so easy to use, and shipments arrive right on time every week.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/middle-age-latin-businesswoman-smiling-happy-standing-with-arms-crossed-gesture-city_839833-17431.jpg" },
|
||||
{ name: "Vikram Sethi", handle: "@vikram_fmcg", testimonial: "Direct manufacturer pricing is the secret weapon for my store's profitability.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/horizontal-image-cool-stylish-young-caucasian-male-with-black-curls-relaxing-indoors-sitting-white-desk-keeping-arms-folded-his-look-posture-expressing-confidence-smiling-camera_343059-2016.jpg" },
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Started",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
text: "Become a Seller",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/logistics-center-workers-managing-package-dispatch-large-brand-orders-are-processed-quickly_482257-132145.jpg?_wi=1"
|
||||
buttons={[{ text: "Get Started", href: "#" }, { text: "Become a Seller", href: "#" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/logistics-center-workers-managing-package-dispatch-large-brand-orders-are-processed-quickly_482257-132145.jpg"
|
||||
imageAlt="Supply chain illustration"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/indoor-portrait-handsome-happy-enthusiastic-guy-striped-shirt-sitting-kitchen-table-with-arms-crossed_343059-3858.jpg",
|
||||
alt: "Retailer profile",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12324.jpg",
|
||||
alt: "Shop owner profile",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/employee-wearing-mask-work_23-2148645149.jpg",
|
||||
alt: "Business partner profile",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-cute-barista-girl_23-2148436110.jpg",
|
||||
alt: "Member profile",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-handsome-cheerful-gardener-smiling-looking-camera-posing_176420-3837.jpg",
|
||||
alt: "Entrepreneur profile",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/indoor-portrait-handsome-happy-enthusiastic-guy-striped-shirt-sitting-kitchen-table-with-arms-crossed_343059-3858.jpg", alt: "Retailer profile" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12324.jpg", alt: "Shop owner profile" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/employee-wearing-mask-work_23-2148645149.jpg", alt: "Business partner profile" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-cute-barista-girl_23-2148436110.jpg", alt: "Member profile" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-handsome-cheerful-gardener-smiling-looking-camera-posing_176420-3837.jpg", alt: "Entrepreneur profile" },
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "100% Verified Manufacturers",
|
||||
icon: ShieldCheck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Fast Nationwide Logistics",
|
||||
icon: Truck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Transparent Pricing",
|
||||
icon: TrendingDown,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Exclusive Catalog",
|
||||
icon: Package,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Dedicated Support",
|
||||
icon: Headphones,
|
||||
},
|
||||
{ type: "text-icon", text: "100% Verified Manufacturers", icon: ShieldCheck },
|
||||
{ type: "text-icon", text: "Fast Nationwide Logistics", icon: Truck },
|
||||
{ type: "text-icon", text: "Transparent Pricing", icon: TrendingDown },
|
||||
{ type: "text-icon", text: "Exclusive Catalog", icon: Package },
|
||||
{ type: "text-icon", text: "Dedicated Support", icon: Headphones },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
tag="About Us"
|
||||
title="Revolutionizing The Supply Chain"
|
||||
description="Bulk Bandhu is built for the modern retailer. We replace traditional wholesalers with a direct link to manufacturers, ensuring higher margins and better product variety."
|
||||
subdescription="Our mission is to empower local businesses through technology, making procurement transparent, faster, and more affordable than ever before."
|
||||
icon={Shield}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/caucasian-woman-sitting-speaking-with-male-colleagues-office-explaining-progress-business_482257-136338.jpg?_wi=1"
|
||||
mediaAnimation="blur-reveal"
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Arjun Patel", handle: "@patel_stores", testimonial: "Bulk Bandhu helped my margins immensely. Best B2B choice I made.", rating: 5 },
|
||||
{ id: "t2", name: "Sita Reddy", handle: "@reddy_fmcg", testimonial: "Variety and speed are top-notch. Very trustworthy platform.", rating: 5 }
|
||||
]}
|
||||
showRating={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -186,26 +96,10 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "1. Listings",
|
||||
description: "Manufacturers list their full catalog on our platform.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/happy-rich-banker-celebrating-income-growth-broker-enjoying-success-stock-market-trading-flat-vector-illustration-money-finance-millionaire-concept_74855-8373.jpg",
|
||||
},
|
||||
{
|
||||
title: "2. Compare",
|
||||
description: "Shopkeepers browse, filter, and compare products instantly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/delivery-logistic-25-line-icon-pack-including-money-cash-buy-package_1142-22518.jpg",
|
||||
},
|
||||
{
|
||||
title: "3. Direct Ordering",
|
||||
description: "Place bulk orders directly with the source.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-women-with-growth-chart_23-2152011766.jpg",
|
||||
},
|
||||
{
|
||||
title: "4. Fast Delivery",
|
||||
description: "Track your shipments until they reach your shop.",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/successful-entrepreneur-investor-presenting-stack-money_74855-6416.jpg",
|
||||
},
|
||||
{ title: "1. Listings", description: "Manufacturers list their full catalog on our platform.", imageSrc: "http://img.b2bpic.net/free-vector/happy-rich-banker-celebrating-income-growth-broker-enjoying-success-stock-market-trading-flat-vector-illustration-money-finance-millionaire-concept_74855-8373.jpg" },
|
||||
{ title: "2. Compare", description: "Shopkeepers browse, filter, and compare products instantly.", imageSrc: "http://img.b2bpic.net/free-vector/delivery-logistic-25-line-icon-pack-including-money-cash-buy-package_1142-22518.jpg" },
|
||||
{ title: "3. Direct Ordering", description: "Place bulk orders directly with the source.", imageSrc: "http://img.b2bpic.net/free-photo/business-women-with-growth-chart_23-2152011766.jpg" },
|
||||
{ title: "4. Fast Delivery", description: "Track your shipments until they reach your shop.", imageSrc: "http://img.b2bpic.net/free-vector/successful-entrepreneur-investor-presenting-stack-money_74855-6416.jpg" },
|
||||
]}
|
||||
title="Simple Procurement Process"
|
||||
description="We make buying simple and fast with four clear steps."
|
||||
@@ -219,21 +113,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Higher Margins",
|
||||
description: "Bypass middlemen commissions to maximize profit.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-smiley-face-with-word-leadership_23-2148780647.jpg",
|
||||
},
|
||||
{
|
||||
title: "Lower Costs",
|
||||
description: "Buy at authentic factory-gate prices.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/economy-chart-paper-sheet_23-2148541997.jpg",
|
||||
},
|
||||
{
|
||||
title: "Reliable Delivery",
|
||||
description: "Faster, more predictable shipping logistics.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662955.jpg",
|
||||
},
|
||||
{ title: "Higher Margins", description: "Bypass middlemen commissions to maximize profit.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-smiley-face-with-word-leadership_23-2148780647.jpg" },
|
||||
{ title: "Lower Costs", description: "Buy at authentic factory-gate prices.", imageSrc: "http://img.b2bpic.net/free-photo/economy-chart-paper-sheet_23-2148541997.jpg" },
|
||||
{ title: "Reliable Delivery", description: "Faster, more predictable shipping logistics.", imageSrc: "http://img.b2bpic.net/free-photo/logistics-means-transport-together-with-technological-futuristic-holograms_23-2151662955.jpg" },
|
||||
]}
|
||||
title="Why Retailers Love Bulk Bandhu"
|
||||
description="Unlock growth and profitability with our direct-sourcing model."
|
||||
@@ -242,52 +124,21 @@ export default function LandingPage() {
|
||||
|
||||
<div id="roles" data-section="roles">
|
||||
<TeamCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
groups={[
|
||||
{
|
||||
id: "manufacturers",
|
||||
groupTitle: "For Manufacturers",
|
||||
members: [
|
||||
{
|
||||
id: "m1",
|
||||
title: "Direct Sales",
|
||||
subtitle: "Reach thousands of small shops directly.",
|
||||
detail: "Stop relying on opaque wholesale networks.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-owner-standing-bakery-shop_1170-2079.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
title: "Better Reach",
|
||||
subtitle: "Scalable growth.",
|
||||
detail: "Expand your reach and build brand equity.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg",
|
||||
},
|
||||
id: "manufacturers", groupTitle: "For Manufacturers", members: [
|
||||
{ id: "m1", title: "Direct Sales", subtitle: "Reach thousands of small shops directly.", detail: "Stop relying on opaque wholesale networks." },
|
||||
{ id: "m2", title: "Better Reach", subtitle: "Scalable growth.", detail: "Expand your reach and build brand equity." },
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/logistics-center-workers-managing-package-dispatch-large-brand-orders-are-processed-quickly_482257-132145.jpg?_wi=2",
|
||||
imageAlt: "retail shop owner portrait",
|
||||
},
|
||||
{
|
||||
id: "shopkeepers",
|
||||
groupTitle: "For Shopkeepers",
|
||||
members: [
|
||||
{
|
||||
id: "s1",
|
||||
title: "Lower Prices",
|
||||
subtitle: "Better wholesale rates.",
|
||||
detail: "Get products at prices manufacturers intend.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-wearing-apron_23-2149007469.jpg",
|
||||
},
|
||||
{
|
||||
id: "s2",
|
||||
title: "Variety",
|
||||
subtitle: "Endless catalogs.",
|
||||
detail: "Access categories you've never carried before.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-with-arms-crossed_1170-2381.jpg",
|
||||
},
|
||||
id: "shopkeepers", groupTitle: "For Shopkeepers", members: [
|
||||
{ id: "s1", title: "Lower Prices", subtitle: "Better wholesale rates.", detail: "Get products at prices manufacturers intend." },
|
||||
{ id: "s2", title: "Variety", subtitle: "Endless catalogs.", detail: "Access categories you've never carried before." },
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/caucasian-woman-sitting-speaking-with-male-colleagues-office-explaining-progress-business_482257-136338.jpg?_wi=2",
|
||||
imageAlt: "retail shop owner portrait",
|
||||
},
|
||||
]}
|
||||
title="Empowering Your Business"
|
||||
@@ -301,42 +152,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Grocery",
|
||||
price: "View Catalog",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/golden-euro-sign-with-gold-crown-yellow-background-euro-is-king-main-currency-exchange-world-from-european-union-concept-by-3d-render_616485-85.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "FMCG",
|
||||
price: "View Catalog",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/25-product-management-flat-color-icon-pack_1142-24599.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Snacks",
|
||||
price: "View Catalog",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/cashback-service-offer-background-web-store-promo_1017-57684.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Beverages",
|
||||
price: "View Catalog",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/financial-concept-with-computer-elements_23-2147676817.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Household Items",
|
||||
price: "View Catalog",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/orange-symbol-sharing-icon_53876-14841.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Stationery & Care",
|
||||
price: "View Catalog",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswomen-with-growth-chart-office_23-2152011767.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Grocery", price: "View Catalog", imageSrc: "http://img.b2bpic.net/free-photo/golden-euro-sign-with-gold-crown-yellow-background-euro-is-king-main-currency-exchange-world-from-european-union-concept-by-3d-render_616485-85.jpg" },
|
||||
{ id: "p2", name: "FMCG", price: "View Catalog", imageSrc: "http://img.b2bpic.net/free-vector/25-product-management-flat-color-icon-pack_1142-24599.jpg" },
|
||||
{ id: "p3", name: "Snacks", price: "View Catalog", imageSrc: "http://img.b2bpic.net/free-vector/cashback-service-offer-background-web-store-promo_1017-57684.jpg" },
|
||||
]}
|
||||
title="Featured Categories"
|
||||
description="Broad catalog designed for every neighborhood store."
|
||||
@@ -345,49 +163,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardThirteen
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Arjun Patel",
|
||||
handle: "@patel_stores",
|
||||
testimonial: "Bulk Bandhu helped my margins immensely. Best B2B choice I made.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-painting-watercolors_23-2150170387.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Sita Reddy",
|
||||
handle: "@reddy_fmcg",
|
||||
testimonial: "Variety and speed are top-notch. Very trustworthy platform.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081913.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Vikram Singh",
|
||||
handle: "@vs_stationery",
|
||||
testimonial: "Easy ordering and great manufacturers onboarded.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-solar-panels-plant-using-laptop-improve-solar-cells-efficiency_482257-119894.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Meera Joshi",
|
||||
handle: "@meera_home",
|
||||
testimonial: "Saves me so much time every week.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-drinking-smoothie-cafe-outdoor-happy-portrait_1296-868.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Rajesh Kumar",
|
||||
handle: "@raj_grocery",
|
||||
testimonial: "Reliable delivery is a huge plus.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-repair-shop_1170-1348.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Arjun Patel", handle: "@patel_stores", testimonial: "Bulk Bandhu helped my margins immensely. Best B2B choice I made.", rating: 5 },
|
||||
{ id: "t2", name: "Sita Reddy", handle: "@reddy_fmcg", testimonial: "Variety and speed are top-notch. Very trustworthy platform.", rating: 5 },
|
||||
{ id: "t3", name: "Vikram Singh", handle: "@vs_stationery", testimonial: "Easy ordering and great manufacturers onboarded.", rating: 5 },
|
||||
{ id: "t4", name: "Meera Joshi", handle: "@meera_home", testimonial: "Saves me so much time every week.", rating: 5 },
|
||||
{ id: "t5", name: "Rajesh Kumar", handle: "@raj_grocery", testimonial: "Reliable delivery is a huge plus.", rating: 5 },
|
||||
]}
|
||||
showRating={true}
|
||||
title="Success Stories"
|
||||
@@ -397,53 +181,26 @@ export default function LandingPage() {
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "How does Bulk Bandhu work?",
|
||||
content: "We connect you directly to manufacturers so you can skip wholesalers.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Who can join?",
|
||||
content: "Any verified shopkeeper or legitimate manufacturer.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Is there a minimum order?",
|
||||
content: "Yes, but our thresholds are optimized for small businesses.",
|
||||
},
|
||||
{
|
||||
id: "f4",
|
||||
title: "How are products delivered?",
|
||||
content: "We use our own logistics network for speed and security.",
|
||||
},
|
||||
{
|
||||
id: "f5",
|
||||
title: "Can manufacturers join directly?",
|
||||
content: "Absolutely, just sign up and list your catalog.",
|
||||
},
|
||||
{ id: "f1", title: "How does Bulk Bandhu work?", content: "We connect you directly to manufacturers so you can skip wholesalers." },
|
||||
{ id: "f2", title: "Who can join?", content: "Any verified shopkeeper or legitimate manufacturer." },
|
||||
{ id: "f3", title: "Is there a minimum order?", content: "Yes, but our thresholds are optimized for small businesses." },
|
||||
{ id: "f4", title: "How are products delivered?", content: "We use our own logistics network for speed and security." },
|
||||
{ id: "f5", title: "Can manufacturers join directly?", content: "Absolutely, just sign up and list your catalog." },
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
sideDescription="Get answers about Bulk Bandhu."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "rotated-rays-animated-grid",
|
||||
}}
|
||||
background={{ variant: "rotated-rays-animated-grid" }}
|
||||
text="Start Buying Directly From Manufacturers Today"
|
||||
buttons={[
|
||||
{
|
||||
text: "Join Bulk Bandhu",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Join Bulk Bandhu", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -451,36 +208,12 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="Bulk Bandhu"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Careers", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user