Merge version_1 into main #2
455
src/app/page.tsx
455
src/app/page.tsx
@@ -2,6 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import { Zap, ThumbsUp, Calendar } from 'lucide-react';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
@@ -28,343 +29,141 @@ export default function LandingPage() {
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Services",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Marlborough HVAC"
|
||||
button={{
|
||||
text: "Call Now",
|
||||
href: "tel:5085550199",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Services", id: "features" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Marlborough HVAC"
|
||||
button={{ text: "Call Now", href: "tel:5085550199" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlayTestimonial
|
||||
title="Fast, Reliable Heating & AC Service in Marlborough, MA"
|
||||
description="Expert solutions for your home comfort. Same-day service available for all your heating and cooling needs."
|
||||
testimonials={[
|
||||
{
|
||||
name: "John Doe",
|
||||
handle: "Marlborough Resident",
|
||||
testimonial: "Excellent service, fixed my AC in minutes!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wireman-does-air-conditioner-maintenance_482257-85109.jpg?_wi=1",
|
||||
imageAlt: "hvac technician repairing unit",
|
||||
},
|
||||
{
|
||||
name: "Jane Smith",
|
||||
handle: "Framingham Resident",
|
||||
testimonial: "Very professional and fair pricing.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-analyzing-building-model-with-woman-using-blueprints-plan-table-colleagues-working-together-design-construction-structure-layout-urban-development_482257-27842.jpg?_wi=1",
|
||||
imageAlt: "hvac technician repairing unit",
|
||||
},
|
||||
{
|
||||
name: "Mike Ross",
|
||||
handle: "Marlborough Resident",
|
||||
testimonial: "Finally, an HVAC team that actually arrives on time.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/skilled-electrician-contracted-check-up-outdoor-air-conditioner-starting-work-shift-trained-worker-wearing-protective-gear-preparing-service-faulty-external-hvac-system_482257-63954.jpg?_wi=1",
|
||||
imageAlt: "hvac technician repairing unit",
|
||||
},
|
||||
{
|
||||
name: "Linda G.",
|
||||
handle: "Southborough Resident",
|
||||
testimonial: "Heating system running like new after their visit.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-abandoned-house-with-fence_23-2149454799.jpg?_wi=1",
|
||||
imageAlt: "hvac technician repairing unit",
|
||||
},
|
||||
{
|
||||
name: "David T.",
|
||||
handle: "Hudson Resident",
|
||||
testimonial: "Quick, efficient, and very respectful of my home.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-worker-operating-industrial-machine-factory_637285-4184.jpg?_wi=1",
|
||||
imageAlt: "hvac technician repairing unit",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Free Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:5085550199",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/wireman-does-air-conditioner-maintenance_482257-85109.jpg?_wi=2"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-model-sexy-man-dressed-pink-tshirt-trousers-fashion-male-isolated-blue-wall-studio_158538-26677.jpg",
|
||||
alt: "Customer portrait",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-happy-adult-man-smiling_23-2148531043.jpg",
|
||||
alt: "Customer portrait",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-happy-man-smiling_158595-2427.jpg",
|
||||
alt: "Customer portrait",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-young-handsome-hipster-man-with-beard-smiling-laughing_176420-12167.jpg",
|
||||
alt: "Customer portrait",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/crazy-dealer-happy-expression_1194-4006.jpg",
|
||||
alt: "Customer portrait",
|
||||
},
|
||||
]}
|
||||
avatarText="Trusted by over 500+ local Marlborough neighbors"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlayTestimonial
|
||||
title="Fast, Reliable Heating & AC Service in Marlborough, MA"
|
||||
description="Expert solutions for your home comfort. Same-day service available for all your heating and cooling needs."
|
||||
testimonials={[
|
||||
{ name: "John Doe", handle: "Marlborough Resident", testimonial: "Excellent service, fixed my AC in minutes!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/wireman-does-air-conditioner-maintenance_482257-85109.jpg", imageAlt: "hvac technician repairing unit" },
|
||||
{ name: "Jane Smith", handle: "Framingham Resident", testimonial: "Very professional and fair pricing.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-analyzing-building-model-with-woman-using-blueprints-plan-table-colleagues-working-together-design-construction-structure-layout-urban-development_482257-27842.jpg", imageAlt: "hvac technician repairing unit" },
|
||||
{ name: "Mike Ross", handle: "Marlborough Resident", testimonial: "Finally, an HVAC team that actually arrives on time.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/skilled-electrician-contracted-check-up-outdoor-air-conditioner-starting-work-shift-trained-worker-wearing-protective-gear-preparing-service-faulty-external-hvac-system_482257-63954.jpg", imageAlt: "hvac technician repairing unit" },
|
||||
{ name: "Linda G.", handle: "Southborough Resident", testimonial: "Heating system running like new after their visit.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-abandoned-house-with-fence_23-2149454799.jpg", imageAlt: "hvac technician repairing unit" },
|
||||
{ name: "David T.", handle: "Hudson Resident", testimonial: "Quick, efficient, and very respectful of my home.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-worker-operating-industrial-machine-factory_637285-4184.jpg", imageAlt: "hvac technician repairing unit" },
|
||||
]}
|
||||
buttons={[{ text: "Get Free Quote", href: "#contact" }, { text: "Call Now", href: "tel:5085550199" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/wireman-does-air-conditioner-maintenance_482257-85109.jpg"
|
||||
avatarText="Trusted by over 500+ local Marlborough neighbors"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "AC Repair",
|
||||
description: "Rapid diagnostics and repair for all AC models.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/skilled-electrician-contracted-check-up-outdoor-air-conditioner-starting-work-shift-trained-worker-wearing-protective-gear-preparing-service-faulty-external-hvac-system_482257-63954.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Heating Repair",
|
||||
description: "Keeping you warm during the coldest Massachusetts winters.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-abandoned-house-with-fence_23-2149454799.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Maintenance Plans",
|
||||
description: "Stay ahead of breakdowns with our routine care.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-worker-operating-industrial-machine-factory_637285-4184.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="Professional HVAC Services"
|
||||
description="Comprehensive solutions to keep your home comfortable year-round."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "AC Repair", description: "Rapid diagnostics and repair for all AC models.", imageSrc: "http://img.b2bpic.net/free-photo/skilled-electrician-contracted-check-up-outdoor-air-conditioner-starting-work-shift-trained-worker-wearing-protective-gear-preparing-service-faulty-external-hvac-system_482257-63954.jpg" },
|
||||
{ title: "Heating Repair", description: "Keeping you warm during the coldest Massachusetts winters.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-abandoned-house-with-fence_23-2149454799.jpg" },
|
||||
{ title: "Maintenance Plans", description: "Stay ahead of breakdowns with our routine care.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-worker-operating-industrial-machine-factory_637285-4184.jpg" },
|
||||
]}
|
||||
title="Professional HVAC Services"
|
||||
description="Comprehensive solutions to keep your home comfortable year-round."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
title="Reliable Local Experts"
|
||||
description="Serving Marlborough and surrounding towns for over 15 years. We pride ourselves on clean work, expertise, and community commitment."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "4.9★ Rating",
|
||||
description: "Over 28 reviews from local homeowners.",
|
||||
},
|
||||
{
|
||||
title: "Same-Day Service",
|
||||
description: "We understand HVAC issues are urgent.",
|
||||
},
|
||||
{
|
||||
title: "Licensed & Insured",
|
||||
description: "Professional quality you can trust.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-man-analyzing-building-model-with-woman-using-blueprints-plan-table-colleagues-working-together-design-construction-structure-layout-urban-development_482257-27842.jpg?_wi=2"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
title="Reliable Local Experts"
|
||||
description="Serving Marlborough and surrounding towns for over 15 years. We pride ourselves on clean work, expertise, and community commitment."
|
||||
bulletPoints={[
|
||||
{ title: "4.9★ Rating", description: "Over 28 reviews from local homeowners." },
|
||||
{ title: "Same-Day Service", description: "We understand HVAC issues are urgent." },
|
||||
{ title: "Licensed & Insured", description: "Professional quality you can trust." },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-man-analyzing-building-model-with-woman-using-blueprints-plan-table-colleagues-working-together-design-construction-structure-layout-urban-development_482257-27842.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
title: "Service Calls",
|
||||
value: "2,500+",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
title: "Happy Customers",
|
||||
value: "1,800+",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
title: "Years Experience",
|
||||
value: "15+",
|
||||
},
|
||||
]}
|
||||
title="Why Marlborough Trusts Us"
|
||||
description="Proven results for homes in Marlborough and beyond."
|
||||
/>
|
||||
</div>
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "m1", icon: Zap, title: "Service Calls", value: "2,500+" },
|
||||
{ id: "m2", icon: ThumbsUp, title: "Happy Customers", value: "1,800+" },
|
||||
{ id: "m3", icon: Calendar, title: "Years Experience", value: "15+" },
|
||||
]}
|
||||
title="Why Marlborough Trusts Us"
|
||||
description="Proven results for homes in Marlborough and beyond."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Alice Johnson",
|
||||
handle: "Marlborough",
|
||||
testimonial: "They were quick and cleaned up everything after the repair.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-isolated-portrait-cheerful-happy-young-man-with-afro-hairstyle-casual-white-t-shirt-smiling-brightly-looking-camera-with-excited-joyful-expression_176420-12985.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Bob Martin",
|
||||
handle: "Hudson",
|
||||
testimonial: "Fixed my furnace when no one else could.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-coworkers-office-with-lunch_273609-6313.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Sarah Lee",
|
||||
handle: "Framingham",
|
||||
testimonial: "Very professional and answered all my questions.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-feminine-tender-young-woman-curlyhaired-chubby-smiling-silly-look-camera-blue-eyes-girlfriend-attend-first-date-liking-spend-time-together-boyfriend-have-fun-look-happy-white-background_176420-50549.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Mike Davis",
|
||||
handle: "Marlborough",
|
||||
testimonial: "Great local service, would definitely call again.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-business-laptop-studying_1303-1266.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Emma Wilson",
|
||||
handle: "Southborough",
|
||||
testimonial: "Fair pricing and very knowledgeable team.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg",
|
||||
},
|
||||
]}
|
||||
title="What Our Neighbors Say"
|
||||
description="Trusted by hundreds of Marlborough homeowners."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Alice Johnson", handle: "Marlborough", testimonial: "They were quick and cleaned up everything after the repair.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-isolated-portrait-cheerful-happy-young-man-with-afro-hairstyle-casual-white-t-shirt-smiling-brightly-looking-camera-with-excited-joyful-expression_176420-12985.jpg" },
|
||||
{ id: "t2", name: "Bob Martin", handle: "Hudson", testimonial: "Fixed my furnace when no one else could.", imageSrc: "http://img.b2bpic.net/free-photo/male-coworkers-office-with-lunch_273609-6313.jpg" },
|
||||
{ id: "t3", name: "Sarah Lee", handle: "Framingham", testimonial: "Very professional and answered all my questions.", imageSrc: "http://img.b2bpic.net/free-photo/attractive-feminine-tender-young-woman-curlyhaired-chubby-smiling-silly-look-camera-blue-eyes-girlfriend-attend-first-date-liking-spend-time-together-boyfriend-have-fun-look-happy-white-background_176420-50549.jpg" },
|
||||
{ id: "t4", name: "Mike Davis", handle: "Marlborough", testimonial: "Great local service, would definitely call again.", imageSrc: "http://img.b2bpic.net/free-photo/young-man-business-laptop-studying_1303-1266.jpg" },
|
||||
{ id: "t5", name: "Emma Wilson", handle: "Southborough", testimonial: "Fair pricing and very knowledgeable team.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cute-girl-looking-away_23-2148436134.jpg" },
|
||||
]}
|
||||
title="What Our Neighbors Say"
|
||||
description="Trusted by hundreds of Marlborough homeowners."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you offer emergency service?",
|
||||
content: "Yes, we provide priority service for urgent repairs.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "What towns do you serve?",
|
||||
content: "We serve Marlborough, Framingham, Hudson, and surrounding communities.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Do you provide free quotes?",
|
||||
content: "Absolutely, contact us today for an estimate on new installations.",
|
||||
},
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "f1", title: "Do you offer emergency service?", content: "Yes, we provide priority service for urgent repairs." },
|
||||
{ id: "f2", title: "What towns do you serve?", content: "We serve Marlborough, Framingham, Hudson, and surrounding communities." },
|
||||
{ id: "f3", title: "Do you provide free quotes?", content: "Absolutely, contact us today for an estimate on new installations." },
|
||||
]}
|
||||
sideTitle="Frequently Asked Questions"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Carrier",
|
||||
"Lennox",
|
||||
"Trane",
|
||||
"York",
|
||||
"Goodman",
|
||||
"Mitsubishi",
|
||||
"Bosch",
|
||||
]}
|
||||
title="We Work With"
|
||||
description="Top-tier brands and community partners."
|
||||
/>
|
||||
</div>
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={["Carrier", "Lennox", "Trane", "York", "Goodman", "Mitsubishi", "Bosch"]}
|
||||
title="We Work With"
|
||||
description="Top-tier brands and community partners."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
tag="Contact Us"
|
||||
title="Need Service Today?"
|
||||
description="Call us or submit the form for a free quote on your heating or cooling system."
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Contact Us"
|
||||
title="Need Service Today?"
|
||||
description="Call us or submit the form for a free quote on your heating or cooling system."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "AC Repair",
|
||||
href: "#features",
|
||||
},
|
||||
{
|
||||
label: "Heating Repair",
|
||||
href: "#features",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "#testimonials",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Call: 508-555-0199",
|
||||
href: "tel:5085550199",
|
||||
},
|
||||
{
|
||||
label: "55 Winthrop St, Marlborough",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 Marlborough Air Conditioning & Heating Inc."
|
||||
bottomRightText="All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "AC Repair", href: "#features" }, { label: "Heating Repair", href: "#features" }] },
|
||||
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Reviews", href: "#testimonials" }] },
|
||||
{ title: "Contact", items: [{ label: "Call: 508-555-0199", href: "tel:5085550199" }, { label: "55 Winthrop St, Marlborough", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Marlborough Air Conditioning & Heating Inc."
|
||||
bottomRightText="All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user