diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index fb04338..1e16fe9 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -51,7 +51,7 @@ export default function GalleryPage() { description: "Experience the elegance of our dining spaces adorned with traditional Moroccan architecture, intricate zellige tilework, and warm golden lighting.", imageSrc: - "http://img.b2bpic.net/free-photo/woman-arranging-dishware-table-restaurant_23-2147936226.jpg", + "http://img.b2bpic.net/free-photo/woman-arranging-dishware-table-restaurant_23-2147936226.jpg?_wi=2", imageAlt: "Restaurant interior with Moroccan decor", }, { @@ -60,7 +60,7 @@ export default function GalleryPage() { description: "Every corner of La Cote celebrates Moroccan heritage—from ornate brass lanterns to carved wooden doors that tell stories of centuries past.", imageSrc: - "http://img.b2bpic.net/free-photo/top-view-arab-dish_23-2147794277.jpg", + "http://img.b2bpic.net/free-photo/top-view-arab-dish_23-2147794277.jpg?_wi=2", imageAlt: "Traditional Moroccan architectural details", }, { @@ -69,7 +69,7 @@ export default function GalleryPage() { description: "Our chefs transform traditional recipes into visual masterpieces. Each plate is arranged with artistic precision and presented with pride.", imageSrc: - "http://img.b2bpic.net/free-photo/turkish-delight-with-tea-glass-table_23-2148088400.jpg", + "http://img.b2bpic.net/free-photo/turkish-delight-with-tea-glass-table_23-2148088400.jpg?_wi=2", imageAlt: "Beautifully plated Moroccan dishes", }, { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..ea6666d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } 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 { 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Cafe Restaurant La Cote | Authentic Moroccan Cuisine in Asilah", + description: "Experience authentic Moroccan cuisine at Cafe Restaurant La Cote in Asilah. Elegant dining, traditional recipes, and warm hospitality await.", + keywords: "Moroccan restaurant, Asilah dining, authentic cuisine, tagine, couscous, Mediterranean food", + metadataBase: new URL("https://caterestaurantlacote.com"), + alternates: { + canonical: "https://caterestaurantlacote.com" + }, + openGraph: { + title: "Cafe Restaurant La Cote", + description: "Enjoy delicious food and drinks in a beautiful atmosphere in Asilah. Authentic Moroccan cuisine.", + url: "https://caterestaurantlacote.com", + siteName: "Cafe Restaurant La Cote", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/part-home-kitchen-table-setting-with-gray-plates-bouquet-vase_169016-15715.jpg", + alt: "Cafe Restaurant La Cote - Authentic Moroccan Dining" + } + ] + }, + twitter: { + card: "summary_large_image", + title: "Cafe Restaurant La Cote | Asilah", + description: "Experience authentic Moroccan cuisine with traditional recipes and warm hospitality.", + images: [ + "http://img.b2bpic.net/free-photo/part-home-kitchen-table-setting-with-gray-plates-bouquet-vase_169016-15715.jpg" + ] + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}