Update src/app/page.tsx

This commit is contained in:
2026-06-03 13:04:14 +00:00
parent 600a354a4e
commit 78b3a9a70a

View File

@@ -13,7 +13,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import { Award, CheckCircle, ShieldCheck, Sparkles, Star, Truck, UserCheck } from "lucide-react"; import { Award, CheckCircle, ShieldCheck, Sparkles, Star, Truck, UserCheck, Palette, Package, Leaf } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -34,94 +34,59 @@ export default function LandingPage() {
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "#home"},
id: "#home",
},
{ {
name: "About", name: "About", id: "#about"},
id: "#about",
},
{ {
name: "Products", name: "Products", id: "#products"},
id: "#products",
},
{ {
name: "Team", name: "Team", id: "#team"},
id: "#team",
},
{ {
name: "Testimonials", name: "Testimonials", id: "#testimonials"},
id: "#testimonials",
},
{ {
name: "Contact", name: "Contact", id: "#contact"},
id: "#contact",
},
]} ]}
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ln2er0" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ln2er0"
logoAlt="Manish Uniforms Logo" logoAlt="Manish Uniforms Logo"
brandName="Manish Uniforms" brandName="Manish Uniforms"
button={{ button={{
text: "Get a Quote", text: "Get a Quote", href: "#contact"}}
href: "#contact",
}}
/> />
</div> </div>
<div id="home" data-section="home"> <div id="home" data-section="home">
<HeroSplitKpi <HeroSplitKpi
background={{ background={{
variant: "plain", variant: "plain"}}
}}
imagePosition="right" imagePosition="right"
title="Empowering Your Brand Through Premium Uniforms" title="Empowering Your Brand Through Premium Uniforms"
description="Manish Uniforms delivers high-quality, custom-designed uniforms that elevate your brand's image and ensure comfort for your team. Experience professionalism tailored to your needs." description="Manish Uniforms delivers high-quality, custom-designed uniforms that elevate your brand's image and ensure comfort for your team. Experience professionalism tailored to your needs."
kpis={[ kpis={[
{ {
value: "15+", value: "15+", label: "Years in Business"},
label: "Years in Business",
},
{ {
value: "500+", value: "500+", label: "Happy Clients"},
label: "Happy Clients",
},
{ {
value: "100K+", value: "100K+", label: "Uniforms Delivered"},
label: "Uniforms Delivered",
},
]} ]}
enableKpiAnimation={true} enableKpiAnimation={true}
buttons={[ buttons={[
{ {
text: "Explore Collections", text: "Explore Collections", href: "#products"},
href: "#products",
},
{ {
text: "Get a Free Quote", text: "Get a Free Quote", href: "#contact"},
href: "#contact",
},
]} ]}
avatars={[ avatars={[
{ {
src: "http://img.b2bpic.net/free-photo/close-up-businessman-with-tie_1098-2867.jpg", src: "http://img.b2bpic.net/free-photo/close-up-businessman-with-tie_1098-2867.jpg", alt: "John Doe"},
alt: "John Doe",
},
{ {
src: "http://img.b2bpic.net/free-photo/faces-close-up-smiling-executives_1098-1829.jpg", src: "http://img.b2bpic.net/free-photo/faces-close-up-smiling-executives_1098-1829.jpg", alt: "Jane Smith"},
alt: "Jane Smith",
},
{ {
src: "http://img.b2bpic.net/free-photo/confident-european-businessman-smiling-closeup-portrait-jobs-career-campaign_53876-128975.jpg", src: "http://img.b2bpic.net/free-photo/confident-european-businessman-smiling-closeup-portrait-jobs-career-campaign_53876-128975.jpg", alt: "Robert Brown"},
alt: "Robert Brown",
},
{ {
src: "http://img.b2bpic.net/free-photo/happy-united-multiethnic-team-posing-office-hall_1262-20246.jpg", src: "http://img.b2bpic.net/free-photo/happy-united-multiethnic-team-posing-office-hall_1262-20246.jpg", alt: "Emily White"},
alt: "Emily White",
},
{ {
src: "http://img.b2bpic.net/free-photo/smiley-front-view-business-man_23-2148763836.jpg", src: "http://img.b2bpic.net/free-photo/smiley-front-view-business-man_23-2148763836.jpg", alt: "Mark Johnson, Team Member"},
alt: "Mark Johnson, Team Member",
},
]} ]}
avatarText="Trusted by leading businesses worldwide" avatarText="Trusted by leading businesses worldwide"
imageSrc="http://img.b2bpic.net/free-photo/portrait-fashion-designer-taking-measurement-his-customer-s-chest-his-workshop_23-2148180369.jpg" imageSrc="http://img.b2bpic.net/free-photo/portrait-fashion-designer-taking-measurement-his-customer-s-chest-his-workshop_23-2148180369.jpg"
@@ -129,27 +94,17 @@ export default function LandingPage() {
mediaAnimation="slide-up" mediaAnimation="slide-up"
marqueeItems={[ marqueeItems={[
{ {
type: "text-icon", type: "text-icon", text: "Quality Assured", icon: ShieldCheck,
text: "Quality Assured",
icon: ShieldCheck,
}, },
{ {
type: "text", type: "text", text: "Custom Design Solutions"},
text: "Custom Design Solutions", {
type: "text-icon", text: "Timely Delivery", icon: Truck,
}, },
{ {
type: "text-icon", type: "text", text: "Sustainable Materials"},
text: "Timely Delivery",
icon: Truck,
},
{ {
type: "text", type: "text-icon", text: "Client Focused", icon: UserCheck,
text: "Sustainable Materials",
},
{
type: "text-icon",
text: "Client Focused",
icon: UserCheck,
}, },
]} ]}
/> />
@@ -162,19 +117,13 @@ export default function LandingPage() {
metrics={[ metrics={[
{ {
icon: Sparkles, icon: Sparkles,
label: "Custom Design", label: "Custom Design", value: "Tailored to Fit"},
value: "Tailored to Fit",
},
{ {
icon: CheckCircle, icon: CheckCircle,
label: "Premium Fabrics", label: "Premium Fabrics", value: "Durable & Comfortable"},
value: "Durable & Comfortable",
},
{ {
icon: Award, icon: Award,
label: "Expert Craftsmanship", label: "Expert Craftsmanship", value: "Flawless Finish"},
value: "Flawless Finish",
},
]} ]}
metricsAnimation="slide-up" metricsAnimation="slide-up"
/> />
@@ -186,32 +135,16 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
title: "Unmatched Quality Control", title: "Unmatched Quality Control", description: "Every uniform undergoes rigorous inspection to ensure it meets our high standards for durability, comfort, and finish.", imageSrc: "http://img.b2bpic.net/free-photo/shoulder-view-tailor-woman-using-sewing-machine_23-2148827167.jpg", imageAlt: "Quality control inspection of a uniform", buttonIcon: ShieldCheck,
description: "Every uniform undergoes rigorous inspection to ensure it meets our high standards for durability, comfort, and finish.",
imageSrc: "http://img.b2bpic.net/free-photo/shoulder-view-tailor-woman-using-sewing-machine_23-2148827167.jpg",
imageAlt: "Quality control inspection of a uniform",
buttonIcon: "ShieldCheck",
}, },
{ {
title: "Custom Design Solutions", title: "Custom Design Solutions", description: "Collaborate with our expert designers to create uniforms that perfectly reflect your brand identity and functional requirements.", imageSrc: "http://img.b2bpic.net/free-photo/digital-art-style-illustration-fashion-designer_23-2151537621.jpg", imageAlt: "Fashion designer sketching uniform designs", buttonIcon: Palette,
description: "Collaborate with our expert designers to create uniforms that perfectly reflect your brand identity and functional requirements.",
imageSrc: "http://img.b2bpic.net/free-photo/digital-art-style-illustration-fashion-designer_23-2151537621.jpg",
imageAlt: "Fashion designer sketching uniform designs",
buttonIcon: "Palette",
}, },
{ {
title: "Efficient Bulk Order Processing", title: "Efficient Bulk Order Processing", description: "Our streamlined process ensures timely delivery of large orders, maintaining consistency and quality across all units.", imageSrc: "http://img.b2bpic.net/free-photo/stacks-clothing-white_1339-7452.jpg", imageAlt: "Stacks of uniforms ready for bulk delivery", buttonIcon: Package,
description: "Our streamlined process ensures timely delivery of large orders, maintaining consistency and quality across all units.",
imageSrc: "http://img.b2bpic.net/free-photo/stacks-clothing-white_1339-7452.jpg",
imageAlt: "Stacks of uniforms ready for bulk delivery",
buttonIcon: "Package",
}, },
{ {
title: "Sustainable Manufacturing", title: "Sustainable Manufacturing", description: "We are committed to eco-friendly practices, using sustainable materials and ethical production methods for a better future.", imageSrc: "http://img.b2bpic.net/free-photo/female-business-owner-working-portrait_23-2148828314.jpg", imageAlt: "Green fabric and eco-friendly manufacturing", buttonIcon: Leaf,
description: "We are committed to eco-friendly practices, using sustainable materials and ethical production methods for a better future.",
imageSrc: "http://img.b2bpic.net/free-photo/female-business-owner-working-portrait_23-2148828314.jpg",
imageAlt: "Green fabric and eco-friendly manufacturing",
buttonIcon: "Leaf",
}, },
]} ]}
title="Why Choose Manish Uniforms?" title="Why Choose Manish Uniforms?"
@@ -227,47 +160,17 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ {
id: "corp-wear", id: "corp-wear", name: "Corporate Wear", price: "Starting at $45", imageSrc: "http://img.b2bpic.net/free-photo/stylish-sexy-woman-dressed-elegant-tuxedo-suit-walking-city-summer-spring-day_285396-8012.jpg", imageAlt: "Elegant corporate uniforms"},
name: "Corporate Wear",
price: "Starting at $45",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-sexy-woman-dressed-elegant-tuxedo-suit-walking-city-summer-spring-day_285396-8012.jpg",
imageAlt: "Elegant corporate uniforms",
},
{ {
id: "hospitality-uni", id: "hospitality-uni", name: "Hospitality Uniforms", price: "Starting at $30", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-chef-kitchen_23-2148471886.jpg", imageAlt: "Clean hospitality uniforms"},
name: "Hospitality Uniforms",
price: "Starting at $30",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-chef-kitchen_23-2148471886.jpg",
imageAlt: "Clean hospitality uniforms",
},
{ {
id: "industrial-work", id: "industrial-work", name: "Industrial Workwear", price: "Starting at $55", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-headphones_23-2148921384.jpg", imageAlt: "Durable industrial workwear"},
name: "Industrial Workwear",
price: "Starting at $55",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-headphones_23-2148921384.jpg",
imageAlt: "Durable industrial workwear",
},
{ {
id: "healthcare-scrubs", id: "healthcare-scrubs", name: "Healthcare Uniforms", price: "Starting at $35", imageSrc: "http://img.b2bpic.net/free-photo/side-view-doctor-wearing-face-mask_23-2149601716.jpg", imageAlt: "Professional healthcare scrubs"},
name: "Healthcare Uniforms",
price: "Starting at $35",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-doctor-wearing-face-mask_23-2149601716.jpg",
imageAlt: "Professional healthcare scrubs",
},
{ {
id: "school-attire", id: "school-attire", name: "School Uniforms", price: "Starting at $25", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-business-boy-blue-classic-suit-wearing-black-bag-posing-business-work-fashion_179666-1403.jpg", imageAlt: "Neat school uniforms"},
name: "School Uniforms",
price: "Starting at $25",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-business-boy-blue-classic-suit-wearing-black-bag-posing-business-work-fashion_179666-1403.jpg",
imageAlt: "Neat school uniforms",
},
{ {
id: "sports-kits", id: "sports-kits", name: "Sports Team Kits", price: "Starting at $50", imageSrc: "http://img.b2bpic.net/free-photo/young-ethnic-man-sitting-with-soccer-ball_23-2148203645.jpg", imageAlt: "Custom sports team kits"},
name: "Sports Team Kits",
price: "Starting at $50",
imageSrc: "http://img.b2bpic.net/free-photo/young-ethnic-man-sitting-with-soccer-ball_23-2148203645.jpg",
imageAlt: "Custom sports team kits",
},
]} ]}
title="Our Diverse Uniform Collections" title="Our Diverse Uniform Collections"
description="Explore our extensive range of uniforms designed for various industries. From corporate elegance to heavy-duty workwear, we have a solution for every professional need." description="Explore our extensive range of uniforms designed for various industries. From corporate elegance to heavy-duty workwear, we have a solution for every professional need."
@@ -282,29 +185,11 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
members={[ members={[
{ {
id: "member-1", id: "member-1", name: "Manish Sharma", role: "Founder & CEO", description: "With over 20 years of experience, Manish leads with a vision for quality and customer satisfaction.", imageSrc: "http://img.b2bpic.net/free-photo/elderly-businessman-posing_23-2148116354.jpg", imageAlt: "Manish Sharma, Founder & CEO"},
name: "Manish Sharma",
role: "Founder & CEO",
description: "With over 20 years of experience, Manish leads with a vision for quality and customer satisfaction.",
imageSrc: "http://img.b2bpic.net/free-photo/elderly-businessman-posing_23-2148116354.jpg",
imageAlt: "Manish Sharma, Founder & CEO",
},
{ {
id: "member-2", id: "member-2", name: "Priya Singh", role: "Head of Design", description: "Priya's innovative designs ensure that every uniform is stylish, functional, and brand-appropriate.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280740.jpg", imageAlt: "Priya Singh, Head of Design"},
name: "Priya Singh",
role: "Head of Design",
description: "Priya's innovative designs ensure that every uniform is stylish, functional, and brand-appropriate.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280740.jpg",
imageAlt: "Priya Singh, Head of Design",
},
{ {
id: "member-3", id: "member-3", name: "Rahul Kumar", role: "Sales Director", description: "Rahul is dedicated to understanding client needs and providing tailored uniform solutions.", imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-man-shop-consultant-posing-camera_7502-4372.jpg", imageAlt: "Rahul Kumar, Sales Director"},
name: "Rahul Kumar",
role: "Sales Director",
description: "Rahul is dedicated to understanding client needs and providing tailored uniform solutions.",
imageSrc: "http://img.b2bpic.net/free-photo/young-smiling-man-shop-consultant-posing-camera_7502-4372.jpg",
imageAlt: "Rahul Kumar, Sales Director",
},
]} ]}
title="Meet Our Dedicated Team" title="Meet Our Dedicated Team"
description="Behind every quality uniform is a team of passionate professionals committed to excellence. Get to know the people who make Manish Uniforms a leader in the industry." description="Behind every quality uniform is a team of passionate professionals committed to excellence. Get to know the people who make Manish Uniforms a leader in the industry."
@@ -316,43 +201,22 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
testimonials={[ testimonials={[
{ {
id: "1", id: "1", name: "Arjun Patel", imageSrc: "http://img.b2bpic.net/free-photo/positive-excited-young-woman-showing-thumbs-up-having-fun_1262-14331.jpg", imageAlt: "Arjun Patel, CEO"},
name: "Arjun Patel",
imageSrc: "http://img.b2bpic.net/free-photo/positive-excited-young-woman-showing-thumbs-up-having-fun_1262-14331.jpg",
imageAlt: "Arjun Patel, CEO",
},
{ {
id: "2", id: "2", name: "Neha Gupta", imageSrc: "http://img.b2bpic.net/free-photo/man-focusing-conversation-with-interviewers_1163-5324.jpg", imageAlt: "Neha Gupta, HR Manager"},
name: "Neha Gupta",
imageSrc: "http://img.b2bpic.net/free-photo/man-focusing-conversation-with-interviewers_1163-5324.jpg",
imageAlt: "Neha Gupta, HR Manager",
},
{ {
id: "3", id: "3", name: "Rohan Mehta", imageSrc: "http://img.b2bpic.net/free-photo/young-adult-pressing-buzzer-button_23-2149586564.jpg", imageAlt: "Rohan Mehta, Restaurant Owner"},
name: "Rohan Mehta",
imageSrc: "http://img.b2bpic.net/free-photo/young-adult-pressing-buzzer-button_23-2149586564.jpg",
imageAlt: "Rohan Mehta, Restaurant Owner",
},
{ {
id: "4", id: "4", name: "Sonia Devi", imageSrc: "http://img.b2bpic.net/free-photo/female-graphic-designer-writing-diary_1170-1055.jpg", imageAlt: "Sonia Devi, School Principal"},
name: "Sonia Devi",
imageSrc: "http://img.b2bpic.net/free-photo/female-graphic-designer-writing-diary_1170-1055.jpg",
imageAlt: "Sonia Devi, School Principal",
},
{ {
id: "5", id: "5", name: "Vikram Sharma", imageSrc: "http://img.b2bpic.net/free-photo/content-businessman-smiling_74855-3248.jpg", imageAlt: "Vikram Sharma, Operations Manager"},
name: "Vikram Sharma",
imageSrc: "http://img.b2bpic.net/free-photo/content-businessman-smiling_74855-3248.jpg",
imageAlt: "Vikram Sharma, Operations Manager",
},
]} ]}
cardTitle="Our Clients Rave About Our Uniforms" cardTitle="Our Clients Rave About Our Uniforms"
cardTag="Customer Success" cardTag="Customer Success"
cardTagIcon={Star} cardTagIcon={Star}
buttons={[ buttons={[
{ {
text: "Read All Reviews", text: "Read All Reviews"},
},
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
cardAnimation="slide-up" cardAnimation="slide-up"
@@ -364,14 +228,7 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
names={[ names={[
"GlobalCorp", "GlobalCorp", "Elite Hotels", "HealthFirst", "BrightFuture Schools", "Apex Retail", "BuildStrong Co.", "Innovate Solutions"]}
"Elite Hotels",
"HealthFirst",
"BrightFuture Schools",
"Apex Retail",
"BuildStrong Co.",
"Innovate Solutions",
]}
title="Trusted by Industry Leaders" title="Trusted by Industry Leaders"
description="We are proud to partner with a diverse range of organizations, delivering uniform solutions that meet their highest expectations for quality and service." description="We are proud to partner with a diverse range of organizations, delivering uniform solutions that meet their highest expectations for quality and service."
speed={40} speed={40}
@@ -384,30 +241,15 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
{ {
id: "faq-1", id: "faq-1", title: "What types of uniforms do you offer?", content: "We offer a wide range of uniforms including corporate wear, hospitality, healthcare, industrial workwear, school uniforms, and sports team kits."},
title: "What types of uniforms do you offer?",
content: "We offer a wide range of uniforms including corporate wear, hospitality, healthcare, industrial workwear, school uniforms, and sports team kits.",
},
{ {
id: "faq-2", id: "faq-2", title: "Can you provide custom uniform designs?", content: "Yes, we specialize in custom design solutions. Our team works closely with you to create uniforms that perfectly match your brand identity and functional needs."},
title: "Can you provide custom uniform designs?",
content: "Yes, we specialize in custom design solutions. Our team works closely with you to create uniforms that perfectly match your brand identity and functional needs.",
},
{ {
id: "faq-3", id: "faq-3", title: "What is your minimum order quantity?", content: "Our minimum order quantity varies depending on the type of uniform and customization required. Please contact us for specific details regarding your needs."},
title: "What is your minimum order quantity?",
content: "Our minimum order quantity varies depending on the type of uniform and customization required. Please contact us for specific details regarding your needs.",
},
{ {
id: "faq-4", id: "faq-4", title: "What materials do you use for uniforms?", content: "We use a variety of high-quality, durable, and comfortable fabrics. We also offer sustainable and eco-friendly material options upon request."},
title: "What materials do you use for uniforms?",
content: "We use a variety of high-quality, durable, and comfortable fabrics. We also offer sustainable and eco-friendly material options upon request.",
},
{ {
id: "faq-5", id: "faq-5", title: "How long does production and delivery take?", content: "Production and delivery times depend on the order size and customization. We provide an estimated timeline during the quotation process and keep you updated throughout."},
title: "How long does production and delivery take?",
content: "Production and delivery times depend on the order size and customization. We provide an estimated timeline during the quotation process and keep you updated throughout.",
},
]} ]}
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Have questions about our uniform services? Find answers to the most common inquiries here." description="Have questions about our uniform services? Find answers to the most common inquiries here."
@@ -422,34 +264,20 @@ export default function LandingPage() {
description="Ready to elevate your brand with premium uniforms? Fill out the form below, and our team will get in touch to discuss your specific requirements." description="Ready to elevate your brand with premium uniforms? Fill out the form below, and our team will get in touch to discuss your specific requirements."
inputs={[ inputs={[
{ {
name: "name", name: "name", type: "text", placeholder: "Your Name", required: true,
type: "text",
placeholder: "Your Name",
required: true,
}, },
{ {
name: "email", name: "email", type: "email", placeholder: "Your Email", required: true,
type: "email",
placeholder: "Your Email",
required: true,
}, },
{ {
name: "company", name: "company", type: "text", placeholder: "Company Name", required: false,
type: "text",
placeholder: "Company Name",
required: false,
}, },
{ {
name: "phone", name: "phone", type: "tel", placeholder: "Phone Number", required: false,
type: "tel",
placeholder: "Phone Number",
required: false,
}, },
]} ]}
textarea={{ textarea={{
name: "message", name: "message", placeholder: "Tell us about your uniform needs...", rows: 4,
placeholder: "Tell us about your uniform needs...",
rows: 4,
required: true, required: true,
}} }}
imageSrc="http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-business-woman-with-headset-call-center-customer-care-yellow-background_74190-14420.jpg" imageSrc="http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-business-woman-with-headset-call-center-customer-care-yellow-background_74190-14420.jpg"
@@ -468,49 +296,31 @@ export default function LandingPage() {
{ {
items: [ items: [
{ {
label: "Home", label: "Home", href: "#home"},
href: "#home",
},
{ {
label: "About Us", label: "About Us", href: "#about"},
href: "#about",
},
{ {
label: "Our Products", label: "Our Products", href: "#products"},
href: "#products",
},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Our Team", label: "Our Team", href: "#team"},
href: "#team",
},
{ {
label: "Testimonials", label: "Testimonials", href: "#testimonials"},
href: "#testimonials",
},
{ {
label: "FAQs", label: "FAQs", href: "#faq"},
href: "#faq",
},
], ],
}, },
{ {
items: [ items: [
{ {
label: "Get a Quote", label: "Get a Quote", href: "#contact"},
href: "#contact",
},
{ {
label: "Privacy Policy", label: "Privacy Policy", href: "#"},
href: "#",
},
{ {
label: "Terms of Service", label: "Terms of Service", href: "#"},
href: "#",
},
], ],
}, },
]} ]}