Compare commits
11 Commits
version_36
...
version_37
| Author | SHA1 | Date | |
|---|---|---|---|
| a1c25a05c8 | |||
| 09b6b936a2 | |||
| afc0d5e4cc | |||
| 257299d467 | |||
| bcedc128df | |||
| f1fb51a3da | |||
| 6b04d096b9 | |||
| 00d002a624 | |||
| baf5fa152d | |||
| 4b892f0e52 | |||
| ed1efe7717 |
@@ -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
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user