Compare commits

...

47 Commits

Author SHA1 Message Date
8d0aa69dc9 Update theme fonts 2026-04-09 23:18:57 +00:00
593d306248 Update theme fonts 2026-04-09 23:18:57 +00:00
6894f0fbce Update theme fonts 2026-04-09 23:18:41 +00:00
47022247c3 Update theme fonts 2026-04-09 23:18:40 +00:00
61bfef43c0 Update theme fonts 2026-04-09 23:18:33 +00:00
14741a763a Update theme fonts 2026-04-09 23:18:33 +00:00
9b470e8a95 Update theme fonts 2026-04-09 23:18:24 +00:00
0ddef9bbd8 Update theme fonts 2026-04-09 23:18:23 +00:00
aad8e8c0a8 Update theme fonts 2026-04-09 23:18:12 +00:00
d53d9e0e3b Update theme fonts 2026-04-09 23:18:12 +00:00
6658185989 Update theme fonts 2026-04-09 23:18:03 +00:00
e318ba49a7 Update theme fonts 2026-04-09 23:18:03 +00:00
aac085cfc4 Update theme fonts 2026-04-09 23:15:10 +00:00
60f5a180c2 Update theme fonts 2026-04-09 23:15:10 +00:00
9ba46f04f1 Update theme fonts 2026-04-09 23:14:57 +00:00
ea4f3a864c Update theme fonts 2026-04-09 23:14:57 +00:00
de16b18409 Update theme fonts 2026-04-09 23:14:36 +00:00
7533f30905 Update theme fonts 2026-04-09 23:14:35 +00:00
99c96bbfab Update theme fonts 2026-04-09 23:14:11 +00:00
9f7bfa4845 Update theme fonts 2026-04-09 23:14:10 +00:00
37ba94630c Update src/app/page.tsx 2026-04-09 22:29:30 +00:00
cd40c47bf3 Update src/app/page.tsx 2026-04-09 22:28:36 +00:00
e6a108ba0d Update src/app/page.tsx 2026-04-09 22:27:03 +00:00
087fbff85f Update src/app/page.tsx 2026-04-09 22:26:24 +00:00
e764a62254 Merge version_24 into main
Merge version_24 into main
2026-04-09 22:24:50 +00:00
e0bcd85bad Update src/app/page.tsx 2026-04-09 22:24:43 +00:00
7340c92698 Merge version_24 into main
Merge version_24 into main
2026-04-09 22:22:50 +00:00
fc3a2548dd Update src/app/page.tsx 2026-04-09 22:22:47 +00:00
76221c8952 Merge version_24 into main
Merge version_24 into main
2026-04-09 22:22:39 +00:00
c4c3137dff Update src/app/page.tsx 2026-04-09 22:22:36 +00:00
7d2f4cd832 Merge version_24 into main
Merge version_24 into main
2026-04-09 22:21:20 +00:00
208d518e46 Update src/app/page.tsx 2026-04-09 22:21:17 +00:00
8b5ce75be8 Merge version_23 into main
Merge version_23 into main
2026-04-09 22:16:09 +00:00
e733b10709 Update src/app/page.tsx 2026-04-09 22:16:06 +00:00
af39ed5cbe Merge version_22 into main
Merge version_22 into main
2026-04-09 22:15:40 +00:00
4f03cd1a38 Update src/app/page.tsx 2026-04-09 22:15:37 +00:00
120ef44a78 Merge version_22 into main
Merge version_22 into main
2026-04-09 22:14:51 +00:00
4ab51655ee Update src/app/page.tsx 2026-04-09 22:14:48 +00:00
d6cacf50e2 Merge version_22 into main
Merge version_22 into main
2026-04-09 22:14:27 +00:00
97af0128f9 Update src/app/page.tsx 2026-04-09 22:14:24 +00:00
2c013869a9 Merge version_21 into main
Merge version_21 into main
2026-04-09 22:12:59 +00:00
c9710e0aee Update src/app/page.tsx 2026-04-09 22:12:56 +00:00
8677cbb0bf Merge version_21 into main
Merge version_21 into main
2026-04-09 22:04:52 +00:00
0748498983 Update src/app/page.tsx 2026-04-09 22:04:49 +00:00
a19467ad96 Merge version_21 into main
Merge version_21 into main
2026-04-09 21:58:14 +00:00
4c355e83a9 Update src/app/page.tsx 2026-04-09 21:58:11 +00:00
721ea444fa Merge version_20 into main
Merge version_20 into main
2026-04-09 21:56:28 +00:00
3 changed files with 48 additions and 30 deletions

View File

@@ -6,6 +6,13 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Roboto } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Poppins } from "next/font/google";
import { Manrope } from "next/font/google";
import { Figtree } from "next/font/google";
import { Mulish } from "next/font/google";
@@ -20,8 +27,22 @@ export const metadata: Metadata = {
},
};
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -33,7 +54,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
{children}
<script

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -52,8 +52,8 @@ export default function LandingPage() {
tag="Expert HVAC Services"
buttons={[{ text: "Call 617-417-6584", href: "tel:617-417-6584" }]}
mediaItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775768725847-kuzo8bm3.jpg?_wi=1", imageAlt: "Company Logo" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775768725847-kuzo8bm3.jpg?_wi=1", imageAlt: "Secondary Logo" }
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773760582-mjtsvkmf.jpg", imageAlt: "Company Logo" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773760582-mjtsvkmf.jpg", imageAlt: "Secondary Logo" }
]}
mediaAnimation="slide-up"
rating={5}
@@ -84,21 +84,12 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
{
title: "Residential HVAC",
description: "Full home installation for lasting comfort.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775768725847-kuzo8bm3.jpg?_wi=1"
},
{
title: "Ductwork Design",
description: "Precision-engineered airflow systems for optimal efficiency.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775768725847-kuzo8bm3.jpg?_wi=1"
},
{
title: "Mini Splits",
description: "Advanced zonal heating and cooling for energy-efficient homes.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775768725847-kuzo8bm3.jpg?_wi=1"
}
{ title: "Residential HVAC Installation", description: "High-efficiency systems for your home.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773422652-4oyv79ym.jpg" },
{ title: "Commercial HVAC Installation", description: "Professional solutions for businesses.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773435216-ovvaowna.jpg" },
{ title: "HVAC Maintenance Services", description: "Extend the life of your equipment.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773442138-wlxoe4yn.jpg" },
{ title: "Emergency HVAC Repairs", description: "Fast response when you need it most.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773447692-t9djtepg.jpg" },
{ title: "Ductwork Design and Installation", description: "Engineered for peak performance.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775772318257-tlrdrzg8.jpg?_wi=5" },
{ title: "Mini Split Systems", description: "Advanced zonal climate control.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773454593-k5joknsg.jpg" }
]}
/>
</div>
@@ -108,9 +99,9 @@ export default function LandingPage() {
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-1775769798693-wh4dnlve.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775771386100-d6qxkd53.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-1775769918525-it0s5tj7.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-1775769798693-wh4dnlve.jpg", imageAlt: "happy customer testimonial portrait" },
{ 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-1775773700803-ufx7skl3.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-1775773700803-ufx7skl3.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."
@@ -147,13 +138,19 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterBaseCard
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773364148-3je89zni.jpg"
logoText="Mountain Top Cooling"
columns={[
{ title: "Services", items: [{ label: "Residential", href: "#" }, { label: "Commercial", href: "#" }, { label: "Maintenance", href: "#" }] },
{ title: "Hours", items: [{ label: "Sun: 8am-6pm", href: "#" }, { label: "Mon-Fri: 9am-5pm", href: "#" }, { label: "Sat: 8am-6pm", href: "#" }] },
{ title: "Contact", items: [{ label: "617-417-6584", href: "tel:617-417-6584" }] },
{ title: "Business Hours", items: [
{ label: "Sun: 08:00am - 06:00pm", href: "#" },
{ label: "Mon-Fri: 9:00am - 5:00pm", href: "#" },
{ label: "Sat: 08:00am - 06:00pm", href: "#" }
] },
{ title: "Contact", items: [{ label: "617-417-6584", href: "tel:617-417-6584" }] }
]}
logoText="Mountain Top Cooling"
copyrightText="© 2025 Mountain Top Cooling"
/>
</div>
</ReactLenis>

View File

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