Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-07 02:19:48 +00:00
2 changed files with 8 additions and 43 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 { 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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.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

@@ -49,8 +49,8 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/vanilla-milkshake-smoothie_1339-7274.jpg"
imageAlt="One Love Shack Restaurant Jamaica"
buttons={[
{ text: "Reserve Your Table", href: "contact" },
{ text: "Explore Our Menu", href: "features" }
{ text: "Explore Our Menu", href: "features" },
{ text: "Book Your Table Now", href: "contact" }
]}
buttonAnimation="slide-up"
className="min-h-screen"