Merge version_1 into main #1
@@ -75,7 +75,7 @@ export default function GaleriePage() {
|
||||
price: "22€",
|
||||
rating: 5,
|
||||
reviewCount: "98%",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-salmon-meat-fillet-steak_74190-7744.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-salmon-meat-fillet-steak_74190-7744.jpg?_wi=4",
|
||||
imageAlt: "Saumon poêlé avec sauce passion-mangue",
|
||||
},
|
||||
{
|
||||
@@ -85,7 +85,7 @@ export default function GaleriePage() {
|
||||
price: "12€",
|
||||
rating: 5,
|
||||
reviewCount: "95%",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-chorizo-arrangement_23-2148980263.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-traditional-chorizo-arrangement_23-2148980263.jpg?_wi=3",
|
||||
imageAlt: "Rosette de Lyon classique avec cornichons",
|
||||
},
|
||||
{
|
||||
@@ -95,7 +95,7 @@ export default function GaleriePage() {
|
||||
price: "14€",
|
||||
rating: 5,
|
||||
reviewCount: "97%",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/raw-chicken-legs-with-sliced-tomato-onion-glass-plate_114579-57535.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/raw-chicken-legs-with-sliced-tomato-onion-glass-plate_114579-57535.jpg?_wi=3",
|
||||
imageAlt: "Hareng mariné aux épices antillaises",
|
||||
},
|
||||
{
|
||||
@@ -105,7 +105,7 @@ export default function GaleriePage() {
|
||||
price: "18€",
|
||||
rating: 5,
|
||||
reviewCount: "96%",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-skewers-wooden-board-with-tomatoes_23-2148440980.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-skewers-wooden-board-with-tomatoes_23-2148440980.jpg?_wi=3",
|
||||
imageAlt: "Andouillette servie avec purée maison",
|
||||
},
|
||||
{
|
||||
@@ -115,7 +115,7 @@ export default function GaleriePage() {
|
||||
price: "26€",
|
||||
rating: 5,
|
||||
reviewCount: "99%",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-packaged-can_23-2151207016.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-food-packaged-can_23-2151207016.jpg?_wi=3",
|
||||
imageAlt: "Pluma de porc ibérique premium",
|
||||
},
|
||||
{
|
||||
@@ -125,7 +125,7 @@ export default function GaleriePage() {
|
||||
price: "9€",
|
||||
rating: 5,
|
||||
reviewCount: "94%",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-dried-bread-slices-cutting-board-with-jam-butter-red-currants-wooden-background_141793-130340.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-dried-bread-slices-cutting-board-with-jam-butter-red-currants-wooden-background_141793-130340.jpg?_wi=3",
|
||||
imageAlt: "Brioche perdue caramélisée avec glace vanille",
|
||||
},
|
||||
]}
|
||||
@@ -149,13 +149,13 @@ export default function GaleriePage() {
|
||||
id: "1",
|
||||
name: "Jean-Phi",
|
||||
role: "Chef & Fondateur",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-browsing-internet-cafe_1153-7402.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-browsing-internet-cafe_1153-7402.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Amandine",
|
||||
role: "Chef & Fondatrice",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waitress-holding-plate-with-tartines_23-2147830518.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/waitress-holding-plate-with-tartines_23-2147830518.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="Rencontrez l'Équipe"
|
||||
|
||||
@@ -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: "Kwuisin du Bonheur | Restaurant Lyon Lyonnais & Saveurs Antillaises",
|
||||
description: "Découvrez Kwuisin du Bonheur, un restaurant lyonnais offrant une cuisine généreuse fusionnant tradition lyonnaise et saveurs caribéennes. 26 places assises, ambiance familiale.",
|
||||
keywords: "restaurant lyon, cuisine lyonnaise, saveurs antillaises, restaurant familial lyon, cuisine généreuse, fusion caribbean, gastronomie lyon",
|
||||
metadataBase: new URL("https://kwuisin-du-bonheur.fr"),
|
||||
alternates: {
|
||||
canonical: "https://kwuisin-du-bonheur.fr",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Kwuisin du Bonheur - Voyage Culinaire",
|
||||
description: "Entre tradition lyonnaise et escapade antillaise. Découvrez le bonheur dans chaque bouchée.",
|
||||
url: "https://kwuisin-du-bonheur.fr",
|
||||
siteName: "Kwuisin du Bonheur",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/grilled-salmon-meat-fillet-steak_74190-7744.jpg",
|
||||
alt: "Saumon sauce passion-mangue - spécialité du restaurant",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Kwuisin du Bonheur - Lyon",
|
||||
description: "Cuisine généreuse: tradition lyonnaise + saveurs antillaises",
|
||||
images: ["http://img.b2bpic.net/free-photo/grilled-salmon-meat-fillet-steak_74190-7744.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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -65,7 +65,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "98%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/grilled-salmon-meat-fillet-steak_74190-7744.jpg",
|
||||
"http://img.b2bpic.net/free-photo/grilled-salmon-meat-fillet-steak_74190-7744.jpg?_wi=3",
|
||||
imageAlt: "Saumon poêlé avec sauce passion-mangue",
|
||||
},
|
||||
{
|
||||
@@ -76,7 +76,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "95%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/delicious-traditional-chorizo-arrangement_23-2148980263.jpg",
|
||||
"http://img.b2bpic.net/free-photo/delicious-traditional-chorizo-arrangement_23-2148980263.jpg?_wi=2",
|
||||
imageAlt: "Rosette de Lyon classique avec cornichons",
|
||||
},
|
||||
{
|
||||
@@ -87,7 +87,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "97%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/raw-chicken-legs-with-sliced-tomato-onion-glass-plate_114579-57535.jpg",
|
||||
"http://img.b2bpic.net/free-photo/raw-chicken-legs-with-sliced-tomato-onion-glass-plate_114579-57535.jpg?_wi=2",
|
||||
imageAlt: "Hareng mariné aux épices antillaises",
|
||||
},
|
||||
{
|
||||
@@ -98,7 +98,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "96%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/front-view-skewers-wooden-board-with-tomatoes_23-2148440980.jpg",
|
||||
"http://img.b2bpic.net/free-photo/front-view-skewers-wooden-board-with-tomatoes_23-2148440980.jpg?_wi=2",
|
||||
imageAlt: "Andouillette servie avec purée maison",
|
||||
},
|
||||
{
|
||||
@@ -109,7 +109,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "99%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-food-packaged-can_23-2151207016.jpg",
|
||||
"http://img.b2bpic.net/free-photo/top-view-food-packaged-can_23-2151207016.jpg?_wi=2",
|
||||
imageAlt: "Pluma de porc ibérique premium",
|
||||
},
|
||||
{
|
||||
@@ -120,7 +120,7 @@ export default function MenuPage() {
|
||||
rating: 5,
|
||||
reviewCount: "94%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/side-view-dried-bread-slices-cutting-board-with-jam-butter-red-currants-wooden-background_141793-130340.jpg",
|
||||
"http://img.b2bpic.net/free-photo/side-view-dried-bread-slices-cutting-board-with-jam-butter-red-currants-wooden-background_141793-130340.jpg?_wi=2",
|
||||
imageAlt: "Brioche perdue caramélisée avec glace vanille",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -64,7 +64,7 @@ export default function HomePage() {
|
||||
tag="26 places assises"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/grilled-salmon-meat-fillet-steak_74190-7744.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/grilled-salmon-meat-fillet-steak_74190-7744.jpg?_wi=1"
|
||||
imageAlt="Saumon sauce passion-mangue - signature dish"
|
||||
mediaAnimation="blur-reveal"
|
||||
testimonials={[
|
||||
@@ -74,7 +74,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Un vrai restaurant familial où le goût et le savoir-faire se retrouvent dans l'assiette. Mention spéciale pour le souskaï de hareng et les sauces tellement réussies avec cette petite touche antillaise.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-girls-friends-eating-pizza-cafe_1303-26169.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-girls-friends-eating-pizza-cafe_1303-26169.jpg?_wi=1",
|
||||
imageAlt: "Virginie F.",
|
||||
},
|
||||
{
|
||||
@@ -83,7 +83,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Les saveurs sont exceptionnelles. Jean-Phi et Amandine ont créé quelque chose de vraiment unique à Lyon. À réserver absolument!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-sitting-restaurant-medium-shot_23-2149930191.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-sitting-restaurant-medium-shot_23-2149930191.jpg?_wi=1",
|
||||
imageAlt: "Marc L.",
|
||||
},
|
||||
{
|
||||
@@ -92,7 +92,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"L'ambiance est conviviale et chaleureuse, exactement comme une vraie cuisine de famille. Les plats sont délicieux et innovants.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adults-having-party-home_23-2149215848.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adults-having-party-home_23-2149215848.jpg?_wi=1",
|
||||
imageAlt: "Sophie D.",
|
||||
},
|
||||
{
|
||||
@@ -101,7 +101,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Enfin un restaurant qui mélange talent culinaire et hospitalité genuine. Chaque visite est une découverte gastronomique.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interracial-group-three-friends-dining-restaurant-spending-good-time-together_273609-8988.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interracial-group-three-friends-dining-restaurant-spending-good-time-together_273609-8988.jpg?_wi=1",
|
||||
imageAlt: "Jean M.",
|
||||
},
|
||||
]}
|
||||
@@ -233,7 +233,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "98%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/grilled-salmon-meat-fillet-steak_74190-7744.jpg",
|
||||
"http://img.b2bpic.net/free-photo/grilled-salmon-meat-fillet-steak_74190-7744.jpg?_wi=2",
|
||||
imageAlt: "Saumon poêlé avec sauce passion-mangue",
|
||||
},
|
||||
{
|
||||
@@ -244,7 +244,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "95%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/delicious-traditional-chorizo-arrangement_23-2148980263.jpg",
|
||||
"http://img.b2bpic.net/free-photo/delicious-traditional-chorizo-arrangement_23-2148980263.jpg?_wi=1",
|
||||
imageAlt: "Rosette de Lyon classique avec cornichons",
|
||||
},
|
||||
{
|
||||
@@ -255,7 +255,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "97%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/raw-chicken-legs-with-sliced-tomato-onion-glass-plate_114579-57535.jpg",
|
||||
"http://img.b2bpic.net/free-photo/raw-chicken-legs-with-sliced-tomato-onion-glass-plate_114579-57535.jpg?_wi=1",
|
||||
imageAlt: "Hareng mariné aux épices antillaises",
|
||||
},
|
||||
{
|
||||
@@ -266,7 +266,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "96%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/front-view-skewers-wooden-board-with-tomatoes_23-2148440980.jpg",
|
||||
"http://img.b2bpic.net/free-photo/front-view-skewers-wooden-board-with-tomatoes_23-2148440980.jpg?_wi=1",
|
||||
imageAlt: "Andouillette servie avec purée maison",
|
||||
},
|
||||
{
|
||||
@@ -277,7 +277,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "99%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/top-view-food-packaged-can_23-2151207016.jpg",
|
||||
"http://img.b2bpic.net/free-photo/top-view-food-packaged-can_23-2151207016.jpg?_wi=1",
|
||||
imageAlt: "Pluma de porc ibérique premium",
|
||||
},
|
||||
{
|
||||
@@ -288,7 +288,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "94%",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/side-view-dried-bread-slices-cutting-board-with-jam-butter-red-currants-wooden-background_141793-130340.jpg",
|
||||
"http://img.b2bpic.net/free-photo/side-view-dried-bread-slices-cutting-board-with-jam-butter-red-currants-wooden-background_141793-130340.jpg?_wi=1",
|
||||
imageAlt: "Brioche perdue caramélisée avec glace vanille",
|
||||
},
|
||||
]}
|
||||
@@ -312,7 +312,7 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "Jean-Phi",
|
||||
role: "Chef & Fondateur",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-browsing-internet-cafe_1153-7402.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-lady-browsing-internet-cafe_1153-7402.jpg?_wi=1",
|
||||
imageAlt: "Jean-Phi - Chef & Fondateur",
|
||||
},
|
||||
{
|
||||
@@ -320,7 +320,7 @@ export default function HomePage() {
|
||||
name: "Amandine",
|
||||
role: "Chef & Fondatrice",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/waitress-holding-plate-with-tartines_23-2147830518.jpg",
|
||||
"http://img.b2bpic.net/free-photo/waitress-holding-plate-with-tartines_23-2147830518.jpg?_wi=1",
|
||||
imageAlt: "Amandine - Chef & Fondatrice",
|
||||
},
|
||||
]}
|
||||
@@ -345,7 +345,7 @@ export default function HomePage() {
|
||||
role: "Client régulière",
|
||||
testimonial:
|
||||
"Un vrai restaurant familial où le goût et le savoir-faire se retrouvent dans l'assiette. Mention spéciale pour le souskaï de hareng et les sauces tellement réussies avec cette petite touche antillaise.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-girls-friends-eating-pizza-cafe_1303-26169.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-girls-friends-eating-pizza-cafe_1303-26169.jpg?_wi=2",
|
||||
imageAlt: "Virginie F.",
|
||||
icon: Quote,
|
||||
},
|
||||
@@ -355,7 +355,7 @@ export default function HomePage() {
|
||||
role: "Client satisfait",
|
||||
testimonial:
|
||||
"Les saveurs sont exceptionnelles. Jean-Phi et Amandine ont créé quelque chose de vraiment unique à Lyon. À réserver absolument!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-sitting-restaurant-medium-shot_23-2149930191.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-sitting-restaurant-medium-shot_23-2149930191.jpg?_wi=2",
|
||||
imageAlt: "Marc L.",
|
||||
icon: Quote,
|
||||
},
|
||||
@@ -365,7 +365,7 @@ export default function HomePage() {
|
||||
role: "Food enthusiast",
|
||||
testimonial:
|
||||
"L'ambiance est conviviale et chaleureuse, exactement comme une vraie cuisine de famille. Les plats sont délicieux et innovants.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adults-having-party-home_23-2149215848.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adults-having-party-home_23-2149215848.jpg?_wi=2",
|
||||
imageAlt: "Sophie D.",
|
||||
icon: Quote,
|
||||
},
|
||||
@@ -376,7 +376,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Enfin un restaurant qui mélange talent culinaire et hospitalité genuine. Chaque visite est une découverte gastronomique.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/interracial-group-three-friends-dining-restaurant-spending-good-time-together_273609-8988.jpg",
|
||||
"http://img.b2bpic.net/free-photo/interracial-group-three-friends-dining-restaurant-spending-good-time-together_273609-8988.jpg?_wi=2",
|
||||
imageAlt: "Jean M.",
|
||||
icon: Quote,
|
||||
},
|
||||
@@ -386,7 +386,7 @@ export default function HomePage() {
|
||||
role: "Voyageuse",
|
||||
testimonial:
|
||||
"Une véritable évasion culinaire! Les saveurs caribéennes mélangées à la tradition lyonnaise créent une harmonie parfaite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-girls-friends-eating-pizza-cafe_1303-26169.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-girls-friends-eating-pizza-cafe_1303-26169.jpg?_wi=3",
|
||||
imageAlt: "Claire R.",
|
||||
icon: Quote,
|
||||
},
|
||||
@@ -396,7 +396,7 @@ export default function HomePage() {
|
||||
role: "Ami de la cuisine",
|
||||
testimonial:
|
||||
"Le restaurant parfait pour une occasion spéciale. Service attentionné, ambiance intimiste, et une nourriture extraordinaire.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-sitting-restaurant-medium-shot_23-2149930191.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-sitting-restaurant-medium-shot_23-2149930191.jpg?_wi=3",
|
||||
imageAlt: "Pierre G.",
|
||||
icon: Quote,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user