Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b4d6e80e54 | |||
| d21aeb105e | |||
| 1f101d7718 |
@@ -1,64 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } 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 "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
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 = {
|
export const metadata: Metadata = {
|
||||||
title: "La Boul'Mich | Brasserie Française à Montauban", description: "Découvrez La Boul'Mich, une brasserie authentique à Montauban. Cuisine française généreuse, produits frais, ambiance chaleureuse. Note 4.9/5. Réservez votre table dès maintenant.", keywords: "brasserie Montauban, restaurant français, cuisine authentique, magret canard, bistro Montauban", metadataBase: new URL("https://laboulmieh.fr"),
|
title: "La Boul'Mich - Brasserie Authentique à Montauban", description: "Découvrez La Boul'Mich, une brasserie authentique au cœur de Montauban. Cuisine française généreuse, produits frais et ambiance chaleureuse. Réservez votre table dès maintenant."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://laboulmieh.fr"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "La Boul'Mich | Brasserie Française Authentique", description: "Expérience culinaire raffinée au cœur de Montauban. Cuisine française généreuse avec produits de qualité. Réservez votre table dès maintenant.", url: "https://laboulmieh.fr", siteName: "La Boul'Mich", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/happy-couple-lovely-date_23-2148422309.jpg", alt: "La Boul'Mich - Intérieur élégant de la brasserie"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "La Boul'Mich | Brasserie Française", description: "Brasserie authentique à Montauban. Cuisine généreuse, produits frais, ambiance chaleureuse.", images: ["http://img.b2bpic.net/free-photo/happy-couple-lovely-date_23-2148422309.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="fr">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1426,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ export default function LandingPage() {
|
|||||||
id: "4", name: "Philippe Rousseau", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-tray-muffins-counter_107420-12317.jpg", imageAlt: "pleased restaurant patron portrait satisfied"
|
id: "4", name: "Philippe Rousseau", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-tray-muffins-counter_107420-12317.jpg", imageAlt: "pleased restaurant patron portrait satisfied"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
cardTitle="Nos clients satisfaits recommandent La Boul'Mich"
|
cardTitle="Plus de 300 clients satisfaits nous font confiance"
|
||||||
cardTag="Avis clients Google"
|
cardTag="Avis clients Google"
|
||||||
cardAnimation="slide-up"
|
cardAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -199,4 +199,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user