Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -49,7 +49,7 @@ export default function ContactPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-dinner-restaurant_23-2148018838.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-dinner-restaurant_23-2148018838.jpg?_wi=3"
|
||||
imageAlt="Cozy dining moment at The Dome"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -69,7 +69,7 @@ export default function ContactPage() {
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/traveler-holding-magnifying-glass-map-besides-coffee-diary-table_23-2147837168.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/traveler-holding-magnifying-glass-map-besides-coffee-diary-table_23-2147837168.jpg?_wi=2"
|
||||
imageAlt="Map showing The Dome location in Kénitra"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -103,7 +103,7 @@ export default function ContactPage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-drinking-tea-cafe_1303-25720.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-drinking-tea-cafe_1303-25720.jpg?_wi=4"
|
||||
imageAlt="The Dome restaurant ambiance"
|
||||
logoText="The Dome"
|
||||
copyrightText="© 2025 The Dome Restaurant. All rights reserved. | Kénitra, Morocco"
|
||||
|
||||
@@ -82,7 +82,7 @@ export default function GalleryPage() {
|
||||
price: "Premium Ambiance",
|
||||
rating: 5,
|
||||
reviewCount: "Elegant Design",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beige-colored-interior-dining-room_114579-2540.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beige-colored-interior-dining-room_114579-2540.jpg?_wi=2",
|
||||
imageAlt: "The Dome main dining area with elegant lighting",
|
||||
},
|
||||
{
|
||||
@@ -92,7 +92,7 @@ export default function GalleryPage() {
|
||||
price: "Signature Drinks",
|
||||
rating: 5,
|
||||
reviewCount: "Expert Mixology",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132206.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132206.jpg?_wi=3",
|
||||
imageAlt: "The Dome cocktail bar with artisanal drinks",
|
||||
},
|
||||
{
|
||||
@@ -102,7 +102,7 @@ export default function GalleryPage() {
|
||||
price: "Culinary Art",
|
||||
rating: 5,
|
||||
reviewCount: "House Specialties",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-waffles-raspberry-jam_23-2148531760.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-waffles-raspberry-jam_23-2148531760.jpg?_wi=3",
|
||||
imageAlt: "The Dome premium desserts and waffles",
|
||||
},
|
||||
]}
|
||||
@@ -139,7 +139,7 @@ export default function GalleryPage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-drinking-tea-cafe_1303-25720.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-drinking-tea-cafe_1303-25720.jpg?_wi=3"
|
||||
imageAlt="The Dome restaurant ambiance"
|
||||
logoText="The Dome"
|
||||
copyrightText="© 2025 The Dome Restaurant. All rights reserved. | Kénitra, Morocco"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +84,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -85,7 +85,7 @@ export default function MenuPage() {
|
||||
price: "Starting 45 MAD",
|
||||
rating: 5,
|
||||
reviewCount: "280+ reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-waffles-raspberry-jam_23-2148531760.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-waffles-raspberry-jam_23-2148531760.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "cocktails",
|
||||
@@ -94,7 +94,7 @@ export default function MenuPage() {
|
||||
price: "50-90 MAD",
|
||||
rating: 5,
|
||||
reviewCount: "420+ reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132206.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132206.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "wedges",
|
||||
@@ -103,7 +103,7 @@ export default function MenuPage() {
|
||||
price: "40 MAD",
|
||||
rating: 5,
|
||||
reviewCount: "195+ reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-sliced-potatoes-with-greens-inside-brown-plate-dark-blue-surface_140725-62040.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-sliced-potatoes-with-greens-inside-brown-plate-dark-blue-surface_140725-62040.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -154,7 +154,7 @@ export default function MenuPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-dinner-restaurant_23-2148018838.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-dinner-restaurant_23-2148018838.jpg?_wi=2"
|
||||
imageAlt="Dining experience at The Dome"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -166,7 +166,7 @@ export default function MenuPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-drinking-tea-cafe_1303-25720.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-drinking-tea-cafe_1303-25720.jpg?_wi=2"
|
||||
imageAlt="The Dome restaurant ambiance"
|
||||
logoText="The Dome"
|
||||
copyrightText="© 2025 The Dome Restaurant. All rights reserved. | Kénitra, Morocco"
|
||||
|
||||
@@ -64,7 +64,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beige-colored-interior-dining-room_114579-2540.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beige-colored-interior-dining-room_114579-2540.jpg?_wi=1"
|
||||
imageAlt="The Dome restaurant interior with elegant lighting and seating"
|
||||
mediaAnimation="slide-up"
|
||||
testimonials={[
|
||||
@@ -152,7 +152,7 @@ export default function HomePage() {
|
||||
price: "Starting 45 MAD",
|
||||
rating: 5,
|
||||
reviewCount: "280+ reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-waffles-raspberry-jam_23-2148531760.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-waffles-raspberry-jam_23-2148531760.jpg?_wi=1",
|
||||
imageAlt: "premium waffles ice cream desert plated beautiful",
|
||||
},
|
||||
{
|
||||
@@ -162,7 +162,7 @@ export default function HomePage() {
|
||||
price: "50-90 MAD",
|
||||
rating: 5,
|
||||
reviewCount: "420+ reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132206.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132206.jpg?_wi=1",
|
||||
imageAlt: "handcrafted cocktail elegant glass bar presentation",
|
||||
},
|
||||
{
|
||||
@@ -172,7 +172,7 @@ export default function HomePage() {
|
||||
price: "40 MAD",
|
||||
rating: 5,
|
||||
reviewCount: "195+ reviews",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-sliced-potatoes-with-greens-inside-brown-plate-dark-blue-surface_140725-62040.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-sliced-potatoes-with-greens-inside-brown-plate-dark-blue-surface_140725-62040.jpg?_wi=1",
|
||||
imageAlt: "crispy potato wedges appetizer golden plated",
|
||||
},
|
||||
]}
|
||||
@@ -216,7 +216,7 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-dinner-restaurant_23-2148018838.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-dinner-restaurant_23-2148018838.jpg?_wi=1"
|
||||
imageAlt="Cozy dining moment at The Dome"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -236,7 +236,7 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/traveler-holding-magnifying-glass-map-besides-coffee-diary-table_23-2147837168.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/traveler-holding-magnifying-glass-map-besides-coffee-diary-table_23-2147837168.jpg?_wi=1"
|
||||
imageAlt="Map showing The Dome location in Kénitra"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -288,7 +288,7 @@ export default function HomePage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-drinking-tea-cafe_1303-25720.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-drinking-tea-cafe_1303-25720.jpg?_wi=1"
|
||||
imageAlt="The Dome restaurant ambiance"
|
||||
logoText="The Dome"
|
||||
copyrightText="© 2025 The Dome Restaurant. All rights reserved. | Kénitra, Morocco"
|
||||
|
||||
Reference in New Issue
Block a user