import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Libre_Baskerville } from "next/font/google"; import { Open_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'Walden Ridge Service Station | Small Engine Repair Signal Mountain', description: 'Signal Mountain\'s most trusted small engine repair shop. Expert lawn mower, chainsaw, and outdoor tool service.', robots: { "index": true, "follow": true }, }; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}