Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-03-11 15:20:32 +00:00
3 changed files with 55 additions and 14 deletions

View File

@@ -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",
},
{

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -109,21 +109,21 @@ export default function MenuPage() {
id: 1,
title: "Restaurant Interior",
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",
imageSrc: "http://img.b2bpic.net/free-photo/woman-arranging-dishware-table-restaurant_23-2147936226.jpg?_wi=1",
imageAlt: "Restaurant interior with Moroccan decor",
},
{
id: 2,
title: "Traditional Elements",
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",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-arab-dish_23-2147794277.jpg?_wi=1",
imageAlt: "Traditional Moroccan architectural details",
},
{
id: 3,
title: "Culinary Presentations",
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",
imageSrc: "http://img.b2bpic.net/free-photo/turkish-delight-with-tea-glass-table_23-2148088400.jpg?_wi=1",
imageAlt: "Beautifully plated Moroccan dishes",
},
]}