From e429f080d28ad888d70960238f4e74a3f63bd17c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:44:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ad36bcb..1613185 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,25 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "Piano Tuning Lancaster PA | Brubaker John R", description: "Expert piano tuning and key repair in Lancaster PA. Over 50 years serving families, churches, and schools. Call (717) 397-2528 for in-home service.", keywords: "piano tuning Lancaster PA, piano tuner near me, piano key repair Lancaster, piano maintenance Lancaster County, professional piano tuning", metadataBase: new URL("https://brubaker-piano-tuning.com"), - alternates: { - canonical: "https://brubaker-piano-tuning.com" - }, - openGraph: { - title: "Piano Tuning Lancaster PA | Brubaker John R", description: "Expert piano tuning with 50+ years experience. Serving Lancaster County families, churches, and music teachers.", url: "https://brubaker-piano-tuning.com", siteName: "Brubaker Piano Tuning", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/teenager-playing-piano-cozy-cafe_23-2147863999.jpg", alt: "Professional piano tuning service" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Piano Tuning Lancaster PA | Brubaker John R", description: "Expert piano tuning with 50+ years experience. Call (717) 397-2528.", images: ["http://img.b2bpic.net/free-photo/teenager-playing-piano-cozy-cafe_23-2147863999.jpg"] - }, - robots: { - index: true, - follow: true - } + title: "Brubaker Piano Tuning - Expert Piano Tuning in Lancaster PA", description: "Professional piano tuning and repairs with over 50 years of experience. Trusted by Lancaster families, churches, and music teachers. Call (717) 397-2528." }; export default function RootLayout({ - children, -}: Readonly<{ + children +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}