Merge version_1 into main #5

Merged
bender merged 2 commits from version_1 into main 2026-03-19 21:24:29 +00:00
2 changed files with 11 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
@@ -13,8 +14,15 @@ export const metadata: Metadata = {
description: 'Fast, professional tree removal, trimming, and stump grinding at fair prices. 4.9★ rated. Free estimates. Call (505) 402-3513 today.',
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
@@ -25,7 +33,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}