From 9ab5f210f4a542170b52769c709754f3fc75ce6d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 02:19:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 67a929b..6cefed0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "One Love Shack - Authentic Jamaican Bar & Grill | Nine Mile, St. Ann", description: "Experience authentic Jamaican cuisine and Caribbean hospitality at One Love Shack. Located in Nine Mile, St. Ann. Reserve your table today!", keywords: "jamaican restaurant, caribbean bar grill, nine mile st ann, authentic jerk chicken, jamaica dining", openGraph: { - title: "One Love Shack - Jamaica's Favorite Bar & Grill", description: "Discover authentic Caribbean flavors and island hospitality at One Love Shack in Nine Mile, Jamaica.", url: "https://oneloveshack.com", siteName: "One Love Shack", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/vanilla-milkshake-smoothie_1339-7274.jpg", alt: "jamaican restaurant bar grill interior warm lighting"}, - ], - }, - twitter: { - card: "summary_large_image", title: "One Love Shack - Jamaica's Hidden Gem", description: "Authentic Caribbean dining and tropical drinks in Nine Mile, St. Ann", images: ["http://img.b2bpic.net/free-photo/vanilla-milkshake-smoothie_1339-7274.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "One Love Shack", description: "Authentic Jamaican bar & grill in Nine Mile, St. Ann. Experience vibrant Caribbean flavors, tropical drinks, and genuine island hospitality."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}