diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..7412f4f 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 { Archivo } 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 { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Hiba & Ramey Wedding - May 7, 2026 - Villa Azzaitoun, Rabat", + description: "Join us for an unforgettable destination wedding celebration at Villa Azzaitoun in Rabat, Morocco on May 7, 2026. Explore event details, accommodations, and practical information for guests.", + keywords: "wedding, Rabat, Morocco, Villa Azzaitoun, destination wedding, May 2026, celebration", + metadataBase: new URL("https://hibaramey.com"), + alternates: { + canonical: "https://hibaramey.com", + }, + openGraph: { + title: "Hiba & Ramey Wedding - May 7, 2026", + description: "Join our celebration of love at Villa Azzaitoun in Rabat, Morocco. An elegant destination wedding filled with tradition and modern luxury.", + url: "https://hibaramey.com", + siteName: "Hiba & Ramey Wedding", + images: [ + { + url: "http://img.b2bpic.net/free-photo/classic-architecture-beautiful-home-with-flowers_23-2151913138.jpg", + alt: "Hiba & Ramey Wedding Celebration", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Hiba & Ramey Wedding - May 7, 2026", + description: "Join our elegant celebration at Villa Azzaitoun in Rabat. Discover accommodations, event details, and practical information.", + images: ["http://img.b2bpic.net/free-photo/classic-architecture-beautiful-home-with-flowers_23-2151913138.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}