Merge version_2 into main #2
@@ -1,57 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Le Bistronome - Gastronomie Accessible à Nice", description: "Restaurant gastronomique à Nice offrant une cuisine sincère, exécutée avec perfection à des prix accessibles. 500+ avis cinq étoiles. Réservez votre table maintenant.", keywords: "restaurant Nice, cuisine gastronomique, bistrot français, réservation restaurant, gastronomie accessible", metadataBase: new URL("https://lebistronome-nice.fr"),
|
||||
alternates: {
|
||||
canonical: "https://lebistronome-nice.fr"},
|
||||
openGraph: {
|
||||
title: "Le Bistronome - Gastronomie Accessible à Nice", description: "Découvrez la gastronomie accessible : produits frais, plats faits maison, prix justes. Le Bistronome à Nice.", url: "https://lebistronome-nice.fr", siteName: "Le Bistronome", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3426.jpg", alt: "Le Bistronome restaurant gastronomique Nice"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Le Bistronome - Gastronomie Accessible à Nice", description: "Réservez votre table dans notre restaurant gastronomique à Nice. Cuisine sincère, exécutée parfaitement à prix accessible.", images: ["http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3426.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Le Bistronome", description: "Restaurant gastronomique à Nice - Produits frais, cuisine authentique, prix accessibles"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="fr">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -78,17 +78,17 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: "products", label: "Produits", title: "Ingrédients de première qualité", items: [
|
||||
"Approvisionnement local privilégié", "Producteurs régionaux de confiance", "Sélection quotidienne rigoureuse", "Produits frais et saisonniers"
|
||||
"Approvisionnement local privilégié", "Producteurs régionaux de confiance", "Sélection quotidienne rigoureuse"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "cooking", label: "Cuisine", title: "Maîtrise et authenticité", items: [
|
||||
"Techniques classiques respectées", "Plats faits entièrement maison", "Recettes éprouvées et innovantes", "Exécution sans compromis"
|
||||
"Techniques classiques respectées", "Plats faits entièrement maison", "Recettes éprouvées et innovantes"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "prices", label: "Prix", title: "Accessibilité sans sacrifice", items: [
|
||||
"Tarifs justes et transparents", "Qualité premium à prix raisonnable", "Carte diversifiée pour tous", "Excellent rapport qualité-prix"
|
||||
"Tarifs justes et transparents", "Qualité premium à prix raisonnable", "Carte diversifiée pour tous"
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user