Compare commits

...

43 Commits

Author SHA1 Message Date
d4918e7097 Update src/app/page.tsx 2026-04-10 00:18:59 +00:00
719cba3f96 Update src/app/page.tsx 2026-04-10 00:18:35 +00:00
15866dab0c Merge version_40 into main
Merge version_40 into main
2026-04-10 00:15:29 +00:00
f8d797b446 Update src/app/page.tsx 2026-04-10 00:15:23 +00:00
e50456892b Merge version_39 into main
Merge version_39 into main
2026-04-10 00:13:18 +00:00
925b14e1fd Update src/app/page.tsx 2026-04-10 00:13:12 +00:00
d5d5ec6202 Merge version_38 into main
Merge version_38 into main
2026-04-10 00:10:26 +00:00
c5d0326a07 Update theme colors 2026-04-10 00:10:23 +00:00
38047fb123 Merge version_38 into main
Merge version_38 into main
2026-04-10 00:10:06 +00:00
53707720eb Update theme colors 2026-04-10 00:10:03 +00:00
10c5aac9a2 Merge version_38 into main
Merge version_38 into main
2026-04-10 00:08:37 +00:00
a265d05063 Update src/app/page.tsx 2026-04-10 00:08:34 +00:00
0b60ec0b38 Merge version_38 into main
Merge version_38 into main
2026-04-10 00:08:13 +00:00
079b8b5b6e Update src/app/page.tsx 2026-04-10 00:08:09 +00:00
8869cbcad9 Merge version_37 into main
Merge version_37 into main
2026-04-10 00:06:50 +00:00
a1c25a05c8 Update theme fonts 2026-04-10 00:06:46 +00:00
09b6b936a2 Update theme fonts 2026-04-10 00:06:46 +00:00
7190f72a1f Merge version_37 into main
Merge version_37 into main
2026-04-10 00:06:16 +00:00
afc0d5e4cc Update theme fonts 2026-04-10 00:06:13 +00:00
257299d467 Update theme fonts 2026-04-10 00:06:12 +00:00
4c60c6b136 Merge version_37 into main
Merge version_37 into main
2026-04-10 00:05:59 +00:00
bcedc128df Update theme fonts 2026-04-10 00:05:56 +00:00
f1fb51a3da Update theme fonts 2026-04-10 00:05:56 +00:00
4df92a065f Merge version_37 into main
Merge version_37 into main
2026-04-10 00:05:50 +00:00
6b04d096b9 Update theme fonts 2026-04-10 00:05:47 +00:00
00d002a624 Update theme fonts 2026-04-10 00:05:46 +00:00
dc9a322cdb Merge version_37 into main
Merge version_37 into main
2026-04-10 00:03:52 +00:00
baf5fa152d Update src/app/page.tsx 2026-04-10 00:03:45 +00:00
4b892f0e52 Merge version_36 into main
Merge version_36 into main
2026-04-09 23:47:36 +00:00
e3ad0477c3 Update src/app/page.tsx 2026-04-09 23:47:33 +00:00
ed1efe7717 Merge version_36 into main
Merge version_36 into main
2026-04-09 23:45:38 +00:00
32a40668d6 Update src/app/page.tsx 2026-04-09 23:45:31 +00:00
55bde5a1dd Merge version_35 into main
Merge version_35 into main
2026-04-09 23:44:47 +00:00
46cbe1f160 Update src/app/page.tsx 2026-04-09 23:44:40 +00:00
7b3907cf8e Merge version_35 into main
Merge version_35 into main
2026-04-09 23:41:33 +00:00
b8a8097c09 Update src/app/page.tsx 2026-04-09 23:41:30 +00:00
29212f7db3 Merge version_34 into main
Merge version_34 into main
2026-04-09 23:40:04 +00:00
d4887e653b Update src/app/page.tsx 2026-04-09 23:40:01 +00:00
c873711645 Merge version_33 into main
Merge version_33 into main
2026-04-09 23:38:02 +00:00
8351d9ebc0 Update src/app/page.tsx 2026-04-09 23:37:56 +00:00
e01e18ef29 Merge version_32 into main
Merge version_32 into main
2026-04-09 23:36:18 +00:00
15e5bbbecf Merge version_32 into main
Merge version_32 into main
2026-04-09 23:35:31 +00:00
b3799c6850 Merge version_32 into main
Merge version_32 into main
2026-04-09 23:33:44 +00:00
4 changed files with 71 additions and 61 deletions

View File

@@ -13,6 +13,7 @@ import { Poppins } from "next/font/google";
import { Manrope } from "next/font/google"; import { Manrope } from "next/font/google";
import { Figtree } from "next/font/google"; import { Figtree } from "next/font/google";
import { Mulish } from "next/font/google"; import { Mulish } from "next/font/google";
import { Raleway } from "next/font/google";
@@ -37,12 +38,12 @@ export const metadata: Metadata = {
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({ const montserrat = Montserrat({
variable: "--font-inter", variable: "--font-montserrat",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -54,7 +55,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${mulish.variable} ${inter.variable} antialiased`}> <body className={`${montserrat.variable} antialiased`}>
{children} {children}
<script <script

View File

@@ -4,12 +4,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import HeroLogo from '@/components/sections/hero/HeroLogo';
import MediaAbout from '@/components/sections/about/MediaAbout'; import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import { Cpu, Zap, ShieldCheck, Clock, Settings, Gauge, ChevronRight } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -30,7 +32,9 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
{ name: "Features", id: "features" },
{ name: "Testimonials", id: "testimonials" }, { name: "Testimonials", id: "testimonials" },
{ name: "About", id: "about" },
{ name: "FAQ", id: "faq" }, { name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
@@ -45,21 +49,58 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitKpi <HeroLogo
background={{ variant: "gradient-bars" }} logoText="Mountain Top Cooling"
title="From The Cape to Berkshires- HVAC You Can Trust"
description="Fast, professional HVAC installation, maintenance, and emergency repair. When comfort matters, trust the experts at Mountain Top Cooling, where comfort reaches the top." description="Fast, professional HVAC installation, maintenance, and emergency repair. When comfort matters, trust the experts at Mountain Top Cooling, where comfort reaches the top."
kpis={[ buttons={[{ text: "Get Your Free HVAC Quote", href: "tel:617-417-6584" }]}
{ value: "100%", label: "Satisfaction" },
{ value: "24/7", label: "Emergency" },
{ value: "1hr", label: "Response" }
]}
enableKpiAnimation={true}
tag="Expert HVAC Services"
buttons={[{ text: "Book Your Free Quote", href: "tel:617-417-6584" }]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773760582-mjtsvkmf.jpg?_wi=1" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773760582-mjtsvkmf.jpg?_wi=1"
imagePosition="right" imageAlt="Modern HVAC unit"
mediaAnimation="slide-up" />
</div>
<div id="services" data-section="services">
<FeatureBorderGlow
animationType="slide-up"
title="Our Services"
description="Custom climate control solutions tailored to your unique requirements."
textboxLayout="split"
useInvertedBackground={false}
features={[
{ icon: ShieldCheck, title: "Residential HVAC Installation", description: "Efficient, reliable heating and cooling systems tailored to your homes needs." },
{ icon: Zap, title: "Commercial HVAC Installation", description: "Expert installation and energy-efficient systems for optimal business comfort." },
{ icon: Settings, title: "HVAC Maintenance Services", description: "Thorough inspections, cleanings, and tune-ups to prevent breakdowns." },
{ icon: Clock, title: "Emergency HVAC Repairs", description: "Fast, reliable solutions around the clock to restore your comfort." },
{ icon: Gauge, title: "Ductwork Design", description: "Precise, high-quality ductwork for optimal airflow and energy savings." },
{ icon: Cpu, title: "Mini Split Systems", description: "Personalized comfort with energy savings and reliable year-round performance." }
]}
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentyThree
animationType="blur-reveal"
title="Advanced HVAC Capabilities"
description="Discover the technology behind our cooling and heating efficiency."
textboxLayout="split"
useInvertedBackground={true}
features={[
{ id: "f1", title: "Energy Efficiency Analytics", tags: ["IoT", "Smart Home"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775772605409-ch6xsqna.jpg?_wi=1" },
{ id: "f2", title: "Smart Zoning Systems", tags: ["Zoning", "Precision"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775772742070-vni774de.jpg?_wi=1" }
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Erin Walsh", date: "Jan 1, 2025", title: "★★★★★", quote: "Matt reached out right away. He was so nice, knowledgeable, and came out within hours. Will definitely be my go to!", tag: "Verified", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775777106003-08w5fa1u.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775772605409-ch6xsqna.jpg?_wi=2", imageAlt: "luxury hvac modern equipment" },
{ id: "2", name: "Abbie Long", date: "Jan 1, 2025", title: "★★★★★", quote: "Highly recommend, super pleasant, quick to respond, knowledgeable and efficient, great pricing!!!", tag: "Verified", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775769933722-qm150lig.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775772742070-vni774de.jpg?_wi=2", imageAlt: "matt mcdermott hvac expert" },
{ id: "3", name: "David and Linda Tonioli", date: "Dec 28, 2025", title: "★★★★★", quote: "Very professional and knowledgeable. Installed a new heater in one day.", tag: "Verified", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775769923382-maralmq3.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775777106003-08w5fa1u.jpg", imageAlt: "happy customer testimonial portrait" },
]}
title="Trusted by Our Neighbors"
description="Join the local community of satisfied homeowners who rely on our neighborly expertise for fast, dependable comfort."
/> />
</div> </div>
@@ -74,38 +115,6 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="services" data-section="services">
<FeatureCardSeven
animationType="slide-up"
title="Our Services"
description="Custom climate control solutions tailored to your unique requirements."
textboxLayout="split"
useInvertedBackground={false}
features={[
{ title: "Residential HVAC Installation", description: "Our Residential HVAC Installation service ensures efficient, reliable heating and cooling systems tailored to your homes needs, enhancing comfort and energy savings with professional expertise and top-quality equipment.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773422652-4oyv79ym.jpg" },
{ title: "Commercial HVAC Installation", description: "Our Commercial HVAC Installation service ensures efficient climate control tailored to your business needs, featuring expert installation, energy-efficient systems, and reliable performance for optimal comfort in any commercial space.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773435216-ovvaowna.jpg" },
{ title: "HVAC Maintenance Services", description: "Ensure year-round comfort and efficiency with our HVAC Maintenance Services. Our expert technicians provide thorough inspections, cleanings, and tune-ups to prevent breakdowns and extend the lifespan of your heating and cooling systems.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773442138-wlxoe4yn.jpg" },
{ title: "Emergency HVAC Repairs", description: "Our Emergency HVAC Repairs service offers fast, reliable solutions around the clock, ensuring your home's comfort is quickly restored with expert technicians ready to tackle any heating or cooling issue efficiently.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773447692-t9djtepg.jpg" },
{ title: "Ductwork Design and Installation", description: "Our ductwork design and installation service ensures efficient airflow, energy savings, and optimal comfort in your home. Trust our experienced team to deliver precise, high-quality solutions tailored to your HVAC needs.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775772318257-tlrdrzg8.jpg?_wi=5" },
{ title: "Mini Split Systems", description: "Our top-notch service for installation of HVAC systems ensures efficient mini split setups, offering homeowners personalized comfort with energy savings and reliable performance throughout the year. experience flawless climate control today!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773454593-k5joknsg.jpg" }
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Erin Walsh", date: "Jan 1, 2025", title: "★★★★★", quote: "Matt reached out right away. He was so nice, knowledgeable, and came out within hours. Will definitely be my go to!", tag: "Verified", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775777106003-08w5fa1u.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775772605409-ch6xsqna.jpg", imageAlt: "luxury hvac modern equipment" },
{ id: "2", name: "Abbie Long", date: "Jan 1, 2025", title: "★★★★★", quote: "Highly recommend, super pleasant, quick to respond, knowledgeable and efficient, great pricing!!!", tag: "Verified", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775769933722-qm150lig.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775772742070-vni774de.jpg", imageAlt: "matt mcdermott hvac expert" },
{ id: "3", name: "David and Linda Tonioli", date: "Dec 28, 2025", title: "★★★★★", quote: "Very professional and knowledgeable. Installed a new heater in one day.", tag: "Verified", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775769923382-maralmq3.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775777106003-08w5fa1u.jpg", imageAlt: "happy customer testimonial portrait" },
]}
title="What Our Neighbors Are Saying"
description="Proudly recommended by the Massachusetts community for reliable, fast, and pleasant HVAC expertise."
/>
</div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqBase <FaqBase
textboxLayout="default" textboxLayout="default"
@@ -127,9 +136,9 @@ export default function LandingPage() {
background={{ variant: "plain" }} background={{ variant: "plain" }}
tag="Get in touch" tag="Get in touch"
title="Ready for Exceptional Comfort?" title="Ready for Exceptional Comfort?"
description="Reach out to Matt McDermott at Mountain Top Cooling for reliable HVAC service in Middleboro, MA. Contact: 617-417-6584." description="Get expert HVAC support today—call or email us now for a consultation."
buttons={[ buttons={[
{ text: "Call 617-417-6584", href: "tel:617-417-6584" }, { text: "Schedule Your Free Consultation", href: "tel:617-417-6584" },
{ text: "Email Us", href: "mailto:info@mountaintopcooling.com" }, { text: "Email Us", href: "mailto:info@mountaintopcooling.com" },
]} ]}
/> />

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-inter), sans-serif; font-family: var(--font-montserrat), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-mulish), sans-serif; font-family: var(--font-montserrat), sans-serif;
} }

View File

@@ -12,11 +12,11 @@
--background: #ffffff; --background: #ffffff;
--card: #f9f9f9; --card: #f9f9f9;
--foreground: #000612e6; --foreground: #120a00e6;
--primary-cta: #15479c; --primary-cta: #ff8c42;
--primary-cta-text: #ffffff; --primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9; --secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6; --secondary-cta-text: #120a00e6;
--accent: #e2e2e2; --accent: #e2e2e2;
--background-accent: #c4c4c4; --background-accent: #c4c4c4;