diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..050bf3b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,57 @@ 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"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Maison Lure | Luxury Beauty Salon Lisbon", + description: "Experience premium beauty treatments in Lisbon. Hair, face and body care with luxury services at Maison Lure.", + keywords: "beauty salon Lisbon, luxury spa, hair treatment, facial care, body massage, premium beauty services", + metadataBase: new URL("https://maisonlure.pt"), + alternates: { + canonical: "https://maisonlure.pt", + }, + openGraph: { + title: "Maison Lure - Luxury Beauty Salon", + description: "Premium beauty treatments in the heart of Lisbon", + siteName: "Maison Lure", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/woman-enjoying-her-beauty-routine-with-golden-eye-patches_23-2150166411.jpg", + alt: "Maison Lure Luxury Salon", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Maison Lure - Luxury Beauty Salon", + description: "Premium beauty treatments in Lisbon", + images: [ + "http://img.b2bpic.net/free-photo/woman-enjoying-her-beauty-routine-with-golden-eye-patches_23-2150166411.jpg", + ], + }, +}; export default function RootLayout({ children, @@ -31,7 +61,9 @@ export default function RootLayout({ return ( - + {children}