Merge version_2 into main #4
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1404,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -46,6 +46,9 @@ export default function LandingPage() {
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Advanced Hand & Wrist Surgery"
|
||||
description="Board-Certified Hand Surgeons Providing Precision Treatment for Hand, Wrist, and Nerve Conditions"
|
||||
tag="Board Certified"
|
||||
tagIcon={Shield}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user