Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 19:30:06 +00:00
2 changed files with 10 additions and 60 deletions

View File

@@ -1,69 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Outfit } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const outfit = Outfit({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Les Saveurs de l'Orient - Authentic Moroccan Restaurant in Paris",
description: "Experience authentic Moroccan cuisine at Les Saveurs de l'Orient in Paris. Enjoy traditional couscous, tajines, and Moroccan tea in an elegant, intimate setting. Reserve your table today.",
keywords: "Moroccan restaurant Paris, authentic moroccan cuisine, couscous, tajine, North African food, fine dining Paris",
openGraph: {
title: "Les Saveurs de l'Orient - Moroccan Restaurant Paris",
description: "Discover authentic Moroccan flavors in the heart of Paris. Traditional couscous, tajines, and warm hospitality await.",
siteName: "Les Saveurs de l'Orient",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/plate-with-food-near-mug-drink-teapot_23-2148080945.jpg",
alt: "Moroccan couscous and traditional dishes at Les Saveurs de l'Orient",
},
],
},
twitter: {
card: "summary_large_image",
title: "Les Saveurs de l'Orient - Authentic Moroccan Cuisine",
description: "Experience the flavors of Morocco in Paris. Reserve your table at Les Saveurs de l'Orient.",
images: ["http://img.b2bpic.net/free-photo/plate-with-food-near-mug-drink-teapot_23-2148080945.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Les Saveurs de l'Orient", description: "Authentic Moroccan Cuisine in the Heart of Paris"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={outfit.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1431,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -85,8 +85,8 @@ export default function HomePage() {
tagIcon={Sparkles}
background={{ variant: "plain" }}
buttons={[
{ text: "Reserve Now", href: "/reservations" },
{ text: "View Menu", href: "/menu" },
{ text: "Reserve a Table", href: "/reservations" },
]}
mediaItems={[
{
@@ -211,4 +211,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}