Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 04:20:24 +00:00
2 changed files with 9 additions and 44 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Villaggio Sandwicherie Bistro | Sandwichs frais Terrebonne", description: "Sandwicherie artisanale à Terrebonne. Sandwichs, salades et croissants frais faits sur place. Dine-in, takeout et catering disponibles. Appelez (450) 471-6182.", keywords: "sandwicherie Terrebonne, sandwich frais, cafe Terrebonne, salades saines, bistro local, lunch Terrebonne, takeout Terrebonne", metadataBase: new URL("https://villaggio-terrebonne.com"),
openGraph: {
title: "Villaggio Sandwicherie Bistro - Sandwichs frais & artisanaux", description: "Découvrez nos sandwichs frais, salades et croissants préparés quotidiennement à Terrebonne", url: "https://villaggio-terrebonne.com", siteName: "Villaggio Sandwicherie Bistro", type: "website", images: [{
url: "http://img.b2bpic.net/free-photo/serving-burger-background_1321-4511.jpg", alt: "Villaggio Sandwicherie Bistro - Restaurant à Terrebonne"
}]
},
twitter: {
card: "summary_large_image", title: "Villaggio Sandwicherie Bistro", description: "Sandwichs frais, salades et café artisanaux à Terrebonne", images: ["http://img.b2bpic.net/free-photo/serving-burger-background_1321-4511.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Villaggio Sandwicherie Bistro - Terrebonne", description: "Sandwicherie artisanale à Terrebonne. Sandwichs frais, salades, soupes et café faits sur place chaque jour."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -46,8 +46,8 @@ export default function LandingPage() {
logoText="Villaggio"
description="Sandwicherie artisanale à Terrebonne. Sandwichs frais, salades, soupes et café faits sur place chaque jour."
buttons={[
{ text: "Appeler maintenant", href: "tel:(450)471-6182" },
{ text: "Voir le menu", href: "#menu" }
{ text: "Voir le menu", href: "#menu" },
{ text: "Appeler maintenant", href: "tel:(450)471-6182" }
]}
imageSrc="http://img.b2bpic.net/free-photo/serving-burger-background_1321-4511.jpg"
imageAlt="Sandwicherie Villaggio - Terrebonne"
@@ -242,4 +242,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}