From 39de8e679d283676abb576f3d98e207588544603 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 03:13:41 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 47332b5..92d9aa5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}