diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 64938c3..43e9cba 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,48 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Libre_Baskerville } 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"; +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"] }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"] -}); + + +export const metadata: Metadata = { + title: "Contact Us | Doughan Law Office", description: "Connect with Doughan Law Office in Beirut for expert legal counsel and dedicated representation. Reach out today for a consultation.", keywords: ["Doughan Law", "Beirut lawyer", "legal consultation", "contact attorney", "law firm", "legal guidance"], + metadataBase: new URL("https://www.doughanlawoffice.com"), + alternates: { + canonical: "https://www.doughanlawoffice.com/contact"}, + openGraph: { + title: "Contact Us | Doughan Law Office", description: "Connect with Doughan Law Office in Beirut for expert legal counsel and dedicated representation. Reach out today for a consultation.", url: "https://www.doughanlawoffice.com/contact", siteName: "Doughan Law Office", locale: "en_US", type: "website"}, + twitter: { + card: "summary_large_image", title: "Contact Us | Doughan Law Office", description: "Connect with Doughan Law Office in Beirut for expert legal counsel and dedicated representation. Reach out today for a consultation.", creator: "@DoughanLaw"}, + robots: { + index: true, + follow: true, + googleBot: { + index: true, + follow: true, + "max-video-preview": -1, + "max-image-preview": "large", "max-snippet": -1, + }, + }, +}; export default function RootLayout({ children, @@ -31,7 +52,9 @@ export default function RootLayout({ return ( - + {children}