Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
@@ -1,54 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lato } 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 lato = Lato({
|
||||
variable: "--font-lato", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Bucky Burger - Burgers & Tacos à Antananarivo", description: "Découvrez les meilleurs burgers, tacos et buckets à Antananarivo. Service rapide, saveur unique, 5 locations. Commandez maintenant par téléphone ou WhatsApp.", keywords: "burger, restaurant rapide, tacos, Antananarivo, Madagascar, fast food", metadataBase: new URL("https://buckyburger.mg"),
|
||||
alternates: {
|
||||
canonical: "https://buckyburger.mg"},
|
||||
openGraph: {
|
||||
title: "Bucky Burger - Le Roi du Burger", description: "Burgers délicieux, tacos savoureux et buckets croustillants à Antananarivo", url: "https://buckyburger.mg", siteName: "Bucky Burger", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/burger-fresh-bun-with-sesame-seeds_140725-7777.jpg", alt: "Bucky Burger - Hero Image"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Bucky Burger - Le Roi du Burger à Madagascar", description: "Découvrez nos burgers, tacos et buckets délicieux", images: ["http://img.b2bpic.net/free-photo/burger-fresh-bun-with-sesame-seeds_140725-7777.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Bucky Burger - Le Roi du Burger à Antananarivo", description: "Découvrez les meilleurs burgers, tacos et buckets à Antananarivo. Service rapide, qualité premium et 5 locations conveniables."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="fr">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -167,7 +167,12 @@ export default function LandingPage() {
|
||||
id: "call", value: "Appelez", title: "Service à l'Écoute", items: ["+261 34 14 029 32", "Disponible 7j/7", "Réponse en 2 minutes"]
|
||||
},
|
||||
{
|
||||
id: "whatsapp", value: "WhatsApp", title: "Commander en Ligne", items: ["+261 34 14 029 32", "Rapide et facile", "Confirmation instantanée"]
|
||||
id: "whatsapp", value: "WhatsApp", title: "Commander en Ligne", items: ["+261 34 14 029 32", "Rapide et facile", "Confirmation instantanée"],
|
||||
buttons: [
|
||||
{
|
||||
text: "Ouvrir WhatsApp", href: "https://wa.me/261341402932"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user