From 3e1583c7cfa92d43e136f954ff705083a05ef26d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 10:59:53 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 58 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..fc6b8d9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } 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 { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "The Dome - Restaurant & Cocktails in Kénitra, Morocco", + description: "Premium dining, handcrafted cocktails, and signature desserts at The Dome in Kénitra. Open 10 AM - 1 AM daily. Reserve your table now.", + keywords: "restaurant kénitra, cocktails kénitra, desserts kénitra, dining kénitra, premium cafe kénitra, waffles ice cream, late night restaurant", + metadataBase: new URL("https://thedomekénitra.com"), + alternates: { + canonical: "https://thedomekénitra.com", + }, + openGraph: { + title: "The Dome - Dining & Cocktails in Kénitra", + description: "Experience premium dining, handcrafted cocktails, and signature desserts in our stylish restaurant. Open until 1 AM.", + url: "https://thedomekénitra.com", + siteName: "The Dome Restaurant", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/beige-colored-interior-dining-room_114579-2540.jpg", + alt: "The Dome restaurant interior", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "The Dome - Restaurant & Cocktails in Kénitra", + description: "Premium dining and cocktails in the heart of Kénitra. Reserve your table today.", + images: ["http://img.b2bpic.net/free-photo/beige-colored-interior-dining-room_114579-2540.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}