Merge version_19 into main #76

Merged
bender merged 2 commits from version_19 into main 2026-05-12 14:07:07 +00:00
2 changed files with 6 additions and 9 deletions

View File

@@ -31,12 +31,9 @@ export const metadata: Metadata = { title: 'Professional HVAC Services | Heating
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
@@ -48,7 +45,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
<body className={`${montserrat.variable} antialiased`}>
<Tag />
{children}
<script

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-montserrat), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-manrope), sans-serif;
font-family: var(--font-montserrat), sans-serif;
}