diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..db73725 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Servessa - Luxury Concierge Experiences in the Florida Keys", + description: "Book curated Florida Keys experiences with Servessa. Trusted local captains, seamless planning, and elevated vacation access. Snorkeling, dining, sunset cruises, and more.", + keywords: "Florida Keys experiences, luxury travel, concierge booking, charter boats, snorkeling, vacation rental experiences, premium dining", + metadataBase: new URL("https://servessa.com"), + alternates: { + canonical: "https://servessa.com", + }, + openGraph: { + title: "Servessa - Luxury Concierge Experiences", + description: "Curated Florida Keys experiences with trusted local partners. Book directly, no hassle.", + url: "https://servessa.com", + siteName: "Servessa", + images: [ + { + url: "http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool_74190-2050.jpg", + alt: "Servessa - Luxury Florida Keys Experiences", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Servessa - Luxury Concierge Experiences", + description: "Book the best curated Florida Keys experiences with trusted local partners.", + images: ["http://img.b2bpic.net/free-photo/beautiful-luxury-swimming-pool_74190-2050.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}