Compare commits

...

11 Commits

Author SHA1 Message Date
a1c25a05c8 Update theme fonts 2026-04-10 00:06:46 +00:00
09b6b936a2 Update theme fonts 2026-04-10 00:06:46 +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
bcedc128df Update theme fonts 2026-04-10 00:05:56 +00:00
f1fb51a3da Update theme fonts 2026-04-10 00:05:56 +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
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
ed1efe7717 Merge version_36 into main
Merge version_36 into main
2026-04-09 23:45:38 +00:00
3 changed files with 16 additions and 22 deletions

View File

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

View File

@@ -6,7 +6,7 @@ import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
@@ -46,21 +46,14 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
background={{ variant: "gradient-bars" }}
title="From The Cape to Berkshires- HVAC You Can Trust"
<HeroOverlay
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."
kpis={[
{ value: "100%", label: "Satisfaction" },
{ value: "24/7", label: "Emergency" },
{ value: "1hr", label: "Response" }
]}
enableKpiAnimation={true}
tag="Expert HVAC Services"
buttons={[{ text: "Get Your Free HVAC 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"
imagePosition="right"
mediaAnimation="slide-up"
showDimOverlay={true}
textPosition="bottom"
/>
</div>
@@ -155,4 +148,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

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