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}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index f17e5ed..57a240a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -46,6 +46,9 @@ export default function LandingPage() {