Update theme fonts

This commit is contained in:
2026-05-10 18:35:56 +00:00
parent f67fdd36f8
commit a1a766caa6

View File

@@ -6,19 +6,20 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"], export const metadata: Metadata = { title: 'Expert HVAC Services | Reliable Heating & Cooling Solutions', description: 'Keep your home comfortable year-round with our professional HVAC installation, repair, and maintenance services. Fast, reliable, and energy-efficient solutions.' };
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({ const inter = Inter({
variable: "--font-inter", variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
const openSans = Open_Sans({
export const metadata: Metadata = { title: 'Expert HVAC Services | Reliable Heating & Cooling Solutions', description: 'Keep your home comfortable year-round with our professional HVAC installation, repair, and maintenance services. Fast, reliable, and energy-efficient solutions.' }; variable: "--font-open-sans",
subsets: ["latin"],
});
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -28,9 +29,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body className={`${inter.variable} ${openSans.variable} antialiased`}>
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag /> <Tag />
{children} {children}
<script <script