From cf02a4e2f3f0dd766967028b6b90da2fbad6c688 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 02:26:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 35 ++++++----------------------------- 1 file changed, 6 insertions(+), 29 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8d96832..e201100 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,42 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Advanced Hand & Wrist Surgery | Board-Certified Hand Surgeon", description: "Expert hand and wrist surgical care from a board-certified hand surgeon with 15+ years of experience. Specializing in carpal tunnel, fractures, arthroscopy, and more.", keywords: "hand surgeon, wrist surgery, carpal tunnel surgery, hand fracture repair, orthopedic surgery, board-certified", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Advanced Hand & Wrist Surgery", description: "Precision surgical treatment for hand, wrist, and nerve conditions from an experienced hand surgeon", type: "website", siteName: "Advanced Hand Surgery"}, -}; + title: "Advanced Hand Surgery", description: "Board-Certified Hand Surgeons Providing Precision Treatment"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}