Compare commits

..

20 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
3 changed files with 29 additions and 8 deletions

View File

@@ -6,6 +6,13 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google"; 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"], subsets: ["latin"],
}); });
@@ -33,7 +54,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}> <body className={`${mulish.variable} ${inter.variable} antialiased`}>
{children} {children}
<script <script

View File

@@ -52,8 +52,8 @@ export default function LandingPage() {
tag="Expert HVAC Services" tag="Expert HVAC Services"
buttons={[{ text: "Call 617-417-6584", href: "tel:617-417-6584" }]} buttons={[{ text: "Call 617-417-6584", href: "tel:617-417-6584" }]}
mediaItems={[ mediaItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773760582-mjtsvkmf.jpg?_wi=1", imageAlt: "Full-width HVAC service showcase" }, { 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?_wi=2", imageAlt: "Full-width HVAC service showcase" } { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3C8T5EyTO6PXxr1zpzM4y6IwMqw/uploaded-1775773760582-mjtsvkmf.jpg", imageAlt: "Secondary Logo" }
]} ]}
mediaAnimation="slide-up" mediaAnimation="slide-up"
rating={5} rating={5}
@@ -156,4 +156,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

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-dm-sans), sans-serif; font-family: var(--font-inter), 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-dm-sans), sans-serif; font-family: var(--font-mulish), sans-serif;
} }