4 Commits

Author SHA1 Message Date
a703462afd Merge version_2 into main
Merge version_2 into main
2026-03-26 10:18:42 +00:00
2c8184ef2c Update src/app/page.tsx 2026-03-26 10:18:39 +00:00
ad20930fbb Add src/app/about-hospital/page.tsx 2026-03-26 10:18:38 +00:00
1386c657cf Merge version_1 into main
Merge version_1 into main
2026-03-26 10:16:12 +00:00
2 changed files with 209 additions and 175 deletions

View File

@@ -0,0 +1,133 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import AboutMetric from '@/components/sections/about/AboutMetric';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Heart, Stethoscope, Users } from "lucide-react";
export default function AboutHospitalPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="blurBottom"
cardStyle="soft-shadow"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "About Hospital", id: "/about-hospital" },
{ name: "Specialities", id: "/specialities/general-medicine" },
{ name: "Doctors", id: "/doctors" },
{ name: "Services", id: "features" },
{ name: "Clients", id: "social-proof" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQs", id: "faq" },
]}
button={{
text: "Get a Quote", href: "#contact"}}
brandName="CityCare Hospital"
/>
</div>
<div id="hero" data-section="hero">
<HeroCentered
background={{ variant: "radial-gradient" }}
title="Welcome to CityCare Hospital"
description="Providing compassionate and advanced healthcare services to our community with a focus on patient well-being and recovery."
avatars={[
{ src: "http://img.b2bpic.net/free-photo/medium-shot-young-female-doctor-posing_23-2150338779.jpg", alt: "Dr. Anya Sharma" },
{ src: "http://img.b2bpic.net/free-photo/handsome-male-doctor-with-lab-coat-stethoscope_1304-4691.jpg", alt: "Dr. Ben Carter" },
{ src: "http://img.b2bpic.net/free-photo/young-beautiful-female-doctor-apron-stethoscope_1304-4648.jpg", alt: "Dr. Clara Diaz" },
{ src: "http://img.b2bpic.net/free-photo/shot-experienced-male-doctor-examining-patient_1098-20412.jpg", alt: "Dr. Marcus Lee" },
]}
avatarText="Over 20 years of dedicated patient care."
buttons={[
{ text: "Our Specialities", href: "/specialities/general-medicine" },
{ text: "Meet Our Doctors", href: "/doctors" },
]}
buttonAnimation="slide-up"
/>
</div>
<div id="about-metrics" data-section="about-metrics">
<AboutMetric
useInvertedBackground={false}
title="Our Commitment to Care"
metrics={[
{ icon: Heart, label: "Happy Patients", value: "95%+" },
{ icon: Stethoscope, label: "Expert Doctors", value: "50+" },
{ icon: Users, label: "Years of Service", value: "20+" },
]}
metricsAnimation="slide-up"
/>
</div>
<div id="why-choose-us" data-section="why-choose-us">
<FeatureCardTwentySeven
animationType="slide-up"
textboxLayout="default"
gridVariant="two-columns-alternating-heights"
useInvertedBackground={true}
features={[
{
id: "1", title: "Experienced Medical Team", description: "Our hospital is staffed by highly qualified and compassionate doctors, nurses, and support staff dedicated to providing the best care.", imageSrc: "http://img.b2bpic.net/free-photo/doctor-presenting-result-patient_1098-17559.jpg", imageAlt: "experienced medical team"},
{
id: "2", title: "State-of-the-Art Facilities", description: "Equipped with the latest medical technology and modern infrastructure to ensure accurate diagnostics and effective treatments.", imageSrc: "http://img.b2bpic.net/free-photo/male-doctor-nurse-discussing-report_23-2148784405.jpg", imageAlt: "modern hospital interior"},
{
id: "3", title: "Patient-Centric Approach", description: "We prioritize your comfort and well-being, offering personalized treatment plans and a supportive environment for recovery.", imageSrc: "http://img.b2bpic.net/free-photo/male-nurse-talking-mature-patient-hospital-room_23-2148685161.jpg", imageAlt: "patient care"},
]}
title="Why Choose CityCare Hospital?"
description="Dedicated to excellence in patient care, innovative treatments, and a healing environment."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="CityCare Hospital"
columns={[
{
title: "Hospital", items: [
{ label: "About Us", href: "/about-hospital" },
{ label: "Specialities", href: "/specialities/general-medicine" },
{ label: "Doctors", href: "/doctors" },
],
},
{
title: "Services", items: [
{ label: "General Medicine", href: "/specialities/general-medicine" },
{ label: "Cardiology", href: "/specialities/cardiology" },
{ label: "Orthopedics", href: "/specialities/orthopedics" },
{ label: "Gynecology", href: "/specialities/gynecology" },
{ label: "Pediatrics", href: "/specialities/pediatrics" },
{ label: "Diabetology", href: "/specialities/diabetology" },
{ label: "Critical Care", href: "/specialities/critical-care" },
],
},
{
title: "Support", items: [
{ label: "Contact", href: "#contact" },
{ label: "FAQs", href: "#faq" },
{ label: "Privacy Policy", href: "#" },
],
},
]}
copyrightText="© 2025 CityCare Hospital. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -11,6 +11,7 @@ import HeroCentered from '@/components/sections/hero/HeroCentered';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import { Mail, TrendingUp, Users, Zap } from "lucide-react";
export default function LandingPage() {
@@ -32,30 +33,20 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Services",
id: "features",
},
name: "Services", id: "features"},
{
name: "About Us",
id: "about",
},
name: "About Us", id: "about"},
{
name: "Clients",
id: "social-proof",
},
name: "Clients", id: "social-proof"},
{
name: "Testimonials",
id: "testimonials",
},
name: "Testimonials", id: "testimonials"},
{
name: "FAQs",
id: "faq",
},
name: "Blog", id: "blog"},
{
name: "FAQs", id: "faq"},
]}
button={{
text: "Get a Quote",
href: "#contact",
}}
text: "Get a Quote", href: "#contact"}}
brandName="AgencyPro"
/>
</div>
@@ -63,42 +54,27 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCentered
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
title="Boost Your Business with Expert Digital Solutions"
description="At AgencyPro, we craft tailored strategies to elevate your brand, engage your audience, and drive measurable results. Let's grow together."
avatars={[
{
src: "http://img.b2bpic.net/free-photo/portrait-professional-confident-young-woman-working-retail-business-industry-promote-company-advertise-join-her-team-smiling-self-assured-pleased-camera-stand-hall_197531-22167.jpg",
alt: "Sarah Johnson",
},
src: "http://img.b2bpic.net/free-photo/portrait-professional-confident-young-woman-working-retail-business-industry-promote-company-advertise-join-her-team-smiling-self-assured-pleased-camera-stand-hall_197531-22167.jpg", alt: "Sarah Johnson"},
{
src: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg",
alt: "Michael Chen",
},
src: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg", alt: "Michael Chen"},
{
src: "http://img.b2bpic.net/free-photo/afroamerican-businessman-wearing-headphones_23-2148508923.jpg",
alt: "Emily Rodriguez",
},
src: "http://img.b2bpic.net/free-photo/afroamerican-businessman-wearing-headphones_23-2148508923.jpg", alt: "Emily Rodriguez"},
{
src: "http://img.b2bpic.net/free-photo/crazy-hippie-angry-expression_1194-3930.jpg",
alt: "David Kim",
},
src: "http://img.b2bpic.net/free-photo/crazy-hippie-angry-expression_1194-3930.jpg", alt: "David Kim"},
{
src: "http://img.b2bpic.net/free-photo/inspiring-new-boss_1098-93.jpg",
alt: "Jessica Lee",
},
src: "http://img.b2bpic.net/free-photo/inspiring-new-boss_1098-93.jpg", alt: "Jessica Lee"},
]}
avatarText="Trusted by 100+ businesses worldwide."
buttons={[
{
text: "Get Started",
href: "#contact",
},
text: "Get Started", href: "#contact"},
{
text: "Our Services",
href: "#features",
},
text: "Our Services", href: "#features"},
]}
buttonAnimation="slide-up"
/>
@@ -111,19 +87,13 @@ export default function LandingPage() {
metrics={[
{
icon: Users,
label: "Happy Clients",
value: "300+",
},
label: "Happy Clients", value: "300+"},
{
icon: TrendingUp,
label: "Revenue Growth",
value: "250%",
},
label: "Revenue Growth", value: "250%"},
{
icon: Zap,
label: "Projects Completed",
value: "500+",
},
label: "Projects Completed", value: "500+"},
]}
metricsAnimation="slide-up"
/>
@@ -137,26 +107,11 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
id: "1",
title: "Digital Marketing",
description: "From SEO to social media, we craft strategies that put your brand in front of the right audience and convert leads.",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-discussing-work_52683-101630.jpg",
imageAlt: "digital marketing strategy meeting",
},
id: "1", title: "Digital Marketing", description: "From SEO to social media, we craft strategies that put your brand in front of the right audience and convert leads.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-discussing-work_52683-101630.jpg", imageAlt: "digital marketing strategy meeting"},
{
id: "2",
title: "Web Development",
description: "Stunning, high-performance websites and applications built for usability, scalability, and seamless user experiences.",
imageSrc: "http://img.b2bpic.net/free-vector/liquid-effect-background-meditation-mobile-app_23-2148647113.jpg",
imageAlt: "web development coding team project",
},
id: "2", title: "Web Development", description: "Stunning, high-performance websites and applications built for usability, scalability, and seamless user experiences.", imageSrc: "http://img.b2bpic.net/free-vector/liquid-effect-background-meditation-mobile-app_23-2148647113.jpg", imageAlt: "web development coding team project"},
{
id: "3",
title: "Branding & Design",
description: "Establish a powerful brand identity with captivating visuals, compelling messaging, and a consistent brand voice.",
imageSrc: "http://img.b2bpic.net/free-vector/social-media-template-bauhaus-inspired-flat-design-creative-studio-text_53876-117403.jpg",
imageAlt: "brand identity design creative process",
},
id: "3", title: "Branding & Design", description: "Establish a powerful brand identity with captivating visuals, compelling messaging, and a consistent brand voice.", imageSrc: "http://img.b2bpic.net/free-vector/social-media-template-bauhaus-inspired-flat-design-creative-studio-text_53876-117403.jpg", imageAlt: "brand identity design creative process"},
]}
title="Our Core Services"
description="We offer a comprehensive suite of digital services designed to meet your business objectives and exceed expectations."
@@ -170,45 +125,15 @@ export default function LandingPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Alice Green",
role: "CEO, Innovate Solutions",
testimonial: "AgencyPro transformed our online presence. Their digital marketing strategies brought us a 300% increase in leads within months!",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-handsome-bearded-african-american-businessman-brown-classic-jacket-isolated-dark-background_613910-6626.jpg",
imageAlt: "happy business owner portrait",
},
id: "1", name: "Alice Green", role: "CEO, Innovate Solutions", testimonial: "AgencyPro transformed our online presence. Their digital marketing strategies brought us a 300% increase in leads within months!", imageSrc: "http://img.b2bpic.net/free-photo/smiling-handsome-bearded-african-american-businessman-brown-classic-jacket-isolated-dark-background_613910-6626.jpg", imageAlt: "happy business owner portrait"},
{
id: "2",
name: "Mark Ramirez",
role: "Marketing Director, TechCorp",
testimonial: "The web development team delivered an exceptional product. Our new website is fast, beautiful, and incredibly user-friendly.",
imageSrc: "http://img.b2bpic.net/free-photo/networking-office_1098-13821.jpg",
imageAlt: "male marketing director portrait",
},
id: "2", name: "Mark Ramirez", role: "Marketing Director, TechCorp", testimonial: "The web development team delivered an exceptional product. Our new website is fast, beautiful, and incredibly user-friendly.", imageSrc: "http://img.b2bpic.net/free-photo/networking-office_1098-13821.jpg", imageAlt: "male marketing director portrait"},
{
id: "3",
name: "Sophia Lee",
role: "Founder, CreativeSpark",
testimonial: "Their branding expertise helped us define our identity and connect with our audience on a deeper level. Truly outstanding!",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-father-son-with-thumbs-up_23-2148404226.jpg",
imageAlt: "female startup founder portrait",
},
id: "3", name: "Sophia Lee", role: "Founder, CreativeSpark", testimonial: "Their branding expertise helped us define our identity and connect with our audience on a deeper level. Truly outstanding!", imageSrc: "http://img.b2bpic.net/free-photo/front-view-father-son-with-thumbs-up_23-2148404226.jpg", imageAlt: "female startup founder portrait"},
{
id: "4",
name: "James Wilson",
role: "COO, Global Logistics",
testimonial: "Professional, responsive, and incredibly effective. AgencyPro is our go-to partner for all things digital.",
imageSrc: "http://img.b2bpic.net/free-photo/confident-hispanic-expert-explaining-his-idea_1262-16155.jpg",
imageAlt: "male product manager portrait",
},
id: "4", name: "James Wilson", role: "COO, Global Logistics", testimonial: "Professional, responsive, and incredibly effective. AgencyPro is our go-to partner for all things digital.", imageSrc: "http://img.b2bpic.net/free-photo/confident-hispanic-expert-explaining-his-idea_1262-16155.jpg", imageAlt: "male product manager portrait"},
{
id: "5",
name: "Olivia Brown",
role: "Brand Manager, RetailHub",
testimonial: "From initial concept to final execution, their design team exceeded all expectations. Our new brand look is perfect!",
imageSrc: "http://img.b2bpic.net/free-photo/smiley-businesswoman-posing-work_23-2148826502.jpg",
imageAlt: "female project manager portrait",
},
id: "5", name: "Olivia Brown", role: "Brand Manager, RetailHub", testimonial: "From initial concept to final execution, their design team exceeded all expectations. Our new brand look is perfect!", imageSrc: "http://img.b2bpic.net/free-photo/smiley-businesswoman-posing-work_23-2148826502.jpg", imageAlt: "female project manager portrait"},
]}
title="What Our Clients Say"
description="Don't just take our word for it. Hear from the businesses we've helped achieve their digital goals."
@@ -221,48 +146,53 @@ export default function LandingPage() {
useInvertedBackground={true}
names={[]}
logos={[
"http://img.b2bpic.net/free-photo/working-architect-colleagues-discussing-layout-project_482257-8116.jpg",
"http://img.b2bpic.net/free-vector/flat-design-geometric-business-card_23-2149292240.jpg",
"http://img.b2bpic.net/free-photo/citrus-veggies-healthy-relaxed-mind-copy-space_23-2148677981.jpg",
"http://img.b2bpic.net/free-vector/gradient-logo-template-world-health-day-awareness_23-2151256979.jpg",
"http://img.b2bpic.net/free-vector/group-work-logo_23-2147506760.jpg",
"http://img.b2bpic.net/free-psd/real-estate-template-design_23-2151722998.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-eating-pizza_23-2149872397.jpg",
]}
"http://img.b2bpic.net/free-photo/working-architect-colleagues-discussing-layout-project_482257-8116.jpg", "http://img.b2bpic.net/free-vector/flat-design-geometric-business-card_23-2149292240.jpg", "http://img.b2bpic.net/free-photo/citrus-veggies-healthy-relaxed-mind-copy-space_23-2148677981.jpg", "http://img.b2bpic.net/free-vector/gradient-logo-template-world-health-day-awareness_23-2151256979.jpg", "http://img.b2bpic.net/free-vector/group-work-logo_23-2147506760.jpg", "http://img.b2bpic.net/free-psd/real-estate-template-design_23-2151722998.jpg", "http://img.b2bpic.net/free-photo/medium-shot-smiley-friends-eating-pizza_23-2149872397.jpg"]}
title="Trusted by Industry Leaders"
description="We partner with diverse businesses to help them achieve their unique goals and drive success."
/>
</div>
<div id="blog" data-section="blog">
<BlogCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
carouselMode="buttons"
title="Our Health Insights"
description="Stay informed and empowered with our latest articles on health, wellness, and medical advancements. Discover essential tips for diabetes care, heart health, pregnancy guidance, and first aid education."
tag="Blog"
buttons={[{ text: "View All Posts", href: "/blog" }]}
blogs={[
{
id: "1", category: "Health & Wellness", title: "Managing Diabetes: Essential Daily Care Tips", excerpt: "Learn practical tips for blood sugar control, diet, exercise, and medication management to live well with diabetes.", imageSrc: "http://img.b2bpic.net/free-photo/world-diabetes-day-blue-background_23-2148737356.jpg", imageAlt: "Diabetes care tips", authorName: "Sarah Johnson", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-professional-confident-young-woman-working-retail-business-industry-promote-company-advertise-join-her-team-smiling-self-assured-pleased-camera-stand-hall_197531-22167.jpg", date: "October 26, 2023"
},
{
id: "2", category: "Cardiovascular Health", title: "Heart Health: Understanding Risks and Prevention", excerpt: "Discover key strategies to maintain a healthy heart, including lifestyle changes, regular check-ups, and recognizing warning signs.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-doctor-holding-stethoscope_23-2149340576.jpg", imageAlt: "Heart health awareness", authorName: "Michael Chen", authorAvatar: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg", date: "November 10, 2023"
},
{
id: "3", category: "Maternal Health", title: "Comprehensive Guide to Healthy Pregnancy Care", excerpt: "From prenatal nutrition to safe exercises, get expert guidance for a healthy pregnancy journey for both mother and baby.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-pregnant-woman-touching-her-belly_23-2148943232.jpg", imageAlt: "Pregnancy care guidance", authorName: "Emily Rodriguez", authorAvatar: "http://img.b2bpic.net/free-photo/afroamerican-businessman-wearing-headphones_23-2148508923.jpg", date: "November 20, 2023"
},
{
id: "4", category: "Emergency Preparedness", title: "First Aid Fundamentals: What Everyone Should Know", excerpt: "Equip yourself with basic first aid knowledge for common injuries and emergencies, potentially saving lives.", imageSrc: "http://img.b2bpic.net/free-photo/male-doctor-with-first-aid-kit_23-2149594411.jpg", imageAlt: "First aid education", authorName: "David Kim", authorAvatar: "http://img.b2bpic.net/free-photo/crazy-hippie-angry-expression_1194-3930.jpg", date: "December 01, 2023"
}
]}
/>
</div>
<div id="faq" data-section="faq">
<FaqSplitText
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "What services does AgencyPro offer?",
content: "We offer a full range of digital services including digital marketing (SEO, SEM, social media), web development, and branding & design.",
},
id: "1", title: "What services does AgencyPro offer?", content: "We offer a full range of digital services including digital marketing (SEO, SEM, social media), web development, and branding & design."},
{
id: "2",
title: "How do you measure success?",
content: "We focus on measurable results. We track key performance indicators (KPIs) relevant to your business goals, such as lead generation, conversion rates, website traffic, and ROI.",
},
id: "2", title: "How do you measure success?", content: "We focus on measurable results. We track key performance indicators (KPIs) relevant to your business goals, such as lead generation, conversion rates, website traffic, and ROI."},
{
id: "3",
title: "What is your pricing model?",
content: "Our pricing is tailored to each project's specific needs and scope. We offer transparent quotes after an initial consultation to understand your requirements.",
},
id: "3", title: "What is your pricing model?", content: "Our pricing is tailored to each project's specific needs and scope. We offer transparent quotes after an initial consultation to understand your requirements."},
{
id: "4",
title: "How long does a typical project take?",
content: "Project timelines vary depending on complexity and scope. We provide estimated timelines during the proposal phase and keep you updated throughout the process.",
},
id: "4", title: "How long does a typical project take?", content: "Project timelines vary depending on complexity and scope. We provide estimated timelines during the proposal phase and keep you updated throughout the process."},
{
id: "5",
title: "Do you work with startups?",
content: "Absolutely! We enjoy working with businesses of all sizes, from ambitious startups to established enterprises, helping them establish and grow their digital footprint.",
},
id: "5", title: "Do you work with startups?", content: "Absolutely! We enjoy working with businesses of all sizes, from ambitious startups to established enterprises, helping them establish and grow their digital footprint."},
]}
sideTitle="Frequently Asked Questions"
sideDescription="Have a question not answered here? Feel free to reach out to our team directly."
@@ -277,22 +207,14 @@ export default function LandingPage() {
useInvertedBackground={true}
faqs={[
{
id: "1",
title: "What are your office hours?",
content: "Our office hours are Monday to Friday, 9:00 AM to 5:00 PM EST. You can reach us via phone or email during these times.",
},
id: "1", title: "What are your office hours?", content: "Our office hours are Monday to Friday, 9:00 AM to 5:00 PM EST. You can reach us via phone or email during these times."},
{
id: "2",
title: "Where are you located?",
content: "We operate remotely, allowing us to serve clients globally. For local meetings, we can arrange virtual conferences or in-person visits as needed.",
},
id: "2", title: "Where are you located?", content: "We operate remotely, allowing us to serve clients globally. For local meetings, we can arrange virtual conferences or in-person visits as needed."},
]}
ctaTitle="Ready to Grow Your Business?"
ctaDescription="Let's discuss how AgencyPro can help you achieve your marketing goals and get more calls. Reach out today for a free consultation!"
ctaButton={{
text: "Contact Us Now",
href: "mailto:info@agencypro.com",
}}
text: "Contact Us Now", href: "mailto:info@agencypro.com"}}
ctaIcon={Mail}
/>
</div>
@@ -302,54 +224,33 @@ export default function LandingPage() {
logoText="AgencyPro"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Blog",
href: "#",
},
label: "Blog", href: "#blog"},
],
},
{
title: "Services",
items: [
title: "Services", items: [
{
label: "Digital Marketing",
href: "#features",
},
label: "Digital Marketing", href: "#features"},
{
label: "Web Development",
href: "#features",
},
label: "Web Development", href: "#features"},
{
label: "Branding",
href: "#features",
},
label: "Branding", href: "#features"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
{
label: "FAQ",
href: "#faq",
},
label: "FAQ", href: "#faq"},
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
],
},
]}