Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 03:13:46 +00:00
2 changed files with 8 additions and 46 deletions

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } 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 poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "France Resto Bar | Authentic Caribbean Cuisine Montreal", description: "Experience authentic Haitian Caribbean cuisine at France Resto Bar in Montreal. Griot, braised beef, and bold flavors with warm hospitality. Reserve your table today.", keywords: "Caribbean restaurant Montreal, Haitian cuisine, griot, authentic food, fine dining Montreal", metadataBase: new URL("https://francerestobar.com"),
alternates: {
canonical: "https://francerestobar.com"},
openGraph: {
title: "France Resto Bar | Caribbean Cuisine", description: "Authentic Caribbean flavors, generous portions, and warm hospitality. Where flavor meets soul.", url: "https://francerestobar.com", siteName: "France Resto Bar", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/chicken-leg-served-with-mashed-potatoes-sour-cream_7502-7082.jpg", alt: "France Resto Bar - Luxury Caribbean Meal"},
],
},
twitter: {
card: "summary_large_image", title: "France Resto Bar | Authentic Caribbean Excellence", description: "Experience unforgettable Caribbean cuisine in Montreal", images: ["http://img.b2bpic.net/free-photo/chicken-leg-served-with-mashed-potatoes-sour-cream_7502-7082.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "France Resto Bar", description: "Authentic Caribbean cuisine and handcrafted cocktails in Montreal"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -9,7 +9,7 @@ import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSp
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { Award, MapPin, Sparkles, Zap } from "lucide-react";
import { Award, MapPin, Sparkles, Zap, Heart } from "lucide-react";
export default function LandingPage() {
return (
@@ -64,6 +64,7 @@ export default function LandingPage() {
title="Loved By Our Community"
description="Discover why guests return again and again for unforgettable meals and genuine warmth."
tag="Customer Love"
tagIcon={Heart}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}