Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-03 21:04:49 +00:00
2 changed files with 16 additions and 48 deletions

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Restaurant Kidam | Cuisine Marocaine Authentique à Vétroz", description: "Découvrez le Restaurant Kidam à Vétroz. Cuisine marocaine authentique, tajines savoureux, couscous royal. Réservez votre table ou appelez-nous. 4,5/5 ⭐", keywords: "restaurant marocain Vétroz, tajine, couscous, cuisine marocaine, réservation Valais, Sion, Conthey", metadataBase: new URL("https://kidam-restaurant.ch"),
alternates: {
canonical: "https://kidam-restaurant.ch"},
openGraph: {
title: "Restaurant Kidam | Les Saveurs du Maroc au Valais", description: "Cuisine marocaine traditionnelle, ambiance chaleureuse et accueil authentique à Vétroz. Réservez maintenant.", url: "https://kidam-restaurant.ch", siteName: "Kidam Restaurant", type: "website", images: [
{
url: "https://kidam-restaurant.ch/og-image.jpg", alt: "Restaurant Kidam - Cuisine Marocaine"},
],
},
twitter: {
card: "summary_large_image", title: "Restaurant Kidam | Cuisine Marocaine à Vétroz", description: "Découvrez notre cuisine marocaine authentique. Réservez votre table dès maintenant.", images: ["https://kidam-restaurant.ch/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Kidam - Restaurant Marocain", description: "Restaurant Kidam : Découvrez l'authenticité de la cuisine marocaine à Vétroz."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="fr">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -76,13 +76,19 @@ export default function LandingPage() {
tag="Cuisine Marocaine"
features={[
{
id: "1", title: "Couscous Royal", description: "Couscous traditionnel garni de viande tendre, légumes colorés et sauce savoureuse. Un classique incontournable.", tag: "Maison", imageSrc: "http://img.b2bpic.net/free-photo/top-view-arab-dish_23-2147794276.jpg", imageAlt: "Couscous Royal"
id: "1", title: "Couscous Royal", description: "Couscous traditionnel garni de viande tendre, légumes colorés et sauce savoureuse. Un classique incontournable.", tag: "Maison", imageSrc: "http://img.b2bpic.net/free-photo/top-view-arab-dish_23-2147794276.jpg", imageAlt: "Couscous Royal", buttons: [
{ text: "Commander", href: "#contact" }
]
},
{
id: "2", title: "Tajine de Kefta", description: "Viande hachée épicée cuite lentement avec des œufs, tomates et herbes aromatiques dans notre tajine signature.", tag: "Spécialité", imageSrc: "http://img.b2bpic.net/free-photo/turkish-ka-fte-with-bulgur-vegetables-top-view_140725-3022.jpg", imageAlt: "Tajine de Kefta"
id: "2", title: "Tajine de Kefta", description: "Viande hachée épicée cuite lentement avec des œufs, tomates et herbes aromatiques dans notre tajine signature.", tag: "Spécialité", imageSrc: "http://img.b2bpic.net/free-photo/turkish-ka-fte-with-bulgur-vegetables-top-view_140725-3022.jpg", imageAlt: "Tajine de Kefta", buttons: [
{ text: "Commander", href: "#contact" }
]
},
{
id: "3", title: "Tajine Poulet Citron", description: "Poulet tendre mijoté avec citron confit et olives, saveurs équilibrées et textures fondantes.", tag: "Favori", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-garlic-bottle-oil-lemon-sauce-chicken-with-herbs-lavash-fork-knife_140725-73680.jpg", imageAlt: "Tajine Poulet Citron"
id: "3", title: "Tajine Poulet Citron", description: "Poulet tendre mijoté avec citron confit et olives, saveurs équilibrées et textures fondantes.", tag: "Favori", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-garlic-bottle-oil-lemon-sauce-chicken-with-herbs-lavash-fork-knife_140725-73680.jpg", imageAlt: "Tajine Poulet Citron", buttons: [
{ text: "Commander", href: "#contact" }
]
},
]}
textboxLayout="default"