10 Commits

Author SHA1 Message Date
999c615037 Update src/app/page.tsx 2026-03-03 22:45:34 +00:00
d1b0833a79 Update src/app/layout.tsx 2026-03-03 22:45:34 +00:00
a721d86639 Merge version_3 into main
Merge version_3 into main
2026-03-03 22:43:42 +00:00
868fdb51e3 Update src/app/page.tsx 2026-03-03 22:43:38 +00:00
2245df0e26 Merge version_2 into main
Merge version_2 into main
2026-03-03 22:38:03 +00:00
2bc0cd29cc Update src/app/page.tsx 2026-03-03 22:37:59 +00:00
991eb064bd Update src/app/layout.tsx 2026-03-03 22:37:59 +00:00
4e93f20dbd Merge version_1 into main
Merge version_1 into main
2026-03-03 22:36:20 +00:00
95e7f2919e Merge version_1 into main
Merge version_1 into main
2026-03-03 22:35:24 +00:00
27f2153f84 Merge version_1 into main
Merge version_1 into main
2026-03-03 22:34:09 +00:00
2 changed files with 14 additions and 44 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "../styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Clubhouse Restaurant & Gym | Lebanese Food & Fitness", description: "Experience authentic Lebanese cuisine and premium fitness facilities at Clubhouse. Reserve your table, join our gym, or call +234 (812) 345-6789 today.", keywords: "Lebanese restaurant, family dining, authentic food, gym membership, fitness center, restaurant with gym", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Clubhouse Restaurant & Gym", description: "Authentic Lebanese Flavors. Premium Dining & Fitness Experience.", type: "website", siteName: "Clubhouse", images: [
{
url: "http://img.b2bpic.net/free-photo/decorated-wedding-reception-venue-with-view-sea-through-windows_637285-1001.jpg", alt: "Clubhouse Restaurant Interior"},
],
},
twitter: {
card: "summary_large_image", title: "Clubhouse Restaurant & Gym", description: "Authentic Lebanese cuisine and premium fitness facilities combined.", images: ["http://img.b2bpic.net/free-photo/azeri-set-mangal-cheese-vegetables-olives-pickles-top-view_141793-2322.jpg"],
},
};
title: "Clubhouse - Premium Dining & Fitness", description: "Experience authentic Lebanese flavors and premium gym facilities at Clubhouse"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -44,8 +44,8 @@ export default function LandingPage() {
logoText="CLUBHOUSE"
description="Authentic Lebanese Flavors. Premium Dining & Fitness Experience."
buttons={[
{ text: "📞 Call Now", href: "tel:+234812345678" },
{ text: "📅 Reserve Table", href: "#contact" }
{ text: "Reserve Now", href: "tel:+234812345678" },
{ text: "Reserve a Table", href: "#contact" }
]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/decorated-wedding-reception-venue-with-view-sea-through-windows_637285-1001.jpg", imageAlt: "Clubhouse restaurant interior" },
@@ -81,15 +81,15 @@ export default function LandingPage() {
products={[
{
id: "1", brand: "Clubhouse Specials", name: "Mixed Grilled Platter", price: "₦18,500", rating: 5,
reviewCount: "342", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-meat-bones-with-fried-vegetables-sauce-table-food-meal-dinner-restaurant-meat_140725-28157.jpg", imageAlt: "Grilled meat platter"
reviewCount: "342+", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-meat-bones-with-fried-vegetables-sauce-table-food-meal-dinner-restaurant-meat_140725-28157.jpg", imageAlt: "Grilled meat platter"
},
{
id: "2", brand: "Traditional Mezze", name: "Hummus & Mezze Selection", price: "₦12,000", rating: 5,
reviewCount: "268", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-hummus-plate-still-life_23-2149595638.jpg", imageAlt: "Lebanese mezze platter"
reviewCount: "268+", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-delicious-hummus-plate-still-life_23-2149595638.jpg", imageAlt: "Lebanese mezze platter"
},
{
id: "3", brand: "Desserts", name: "Baklava & Pastries", price: "₦8,500", rating: 5,
reviewCount: "195", imageSrc: "http://img.b2bpic.net/free-photo/close-up-turkish-baklava-dessert-made-thin-pastry-nuts-honey_176474-2592.jpg", imageAlt: "Traditional Lebanese dessert"
reviewCount: "195+", imageSrc: "http://img.b2bpic.net/free-photo/close-up-turkish-baklava-dessert-made-thin-pastry-nuts-honey_176474-2592.jpg", imageAlt: "Traditional Lebanese dessert"
}
]}
textboxLayout="default"
@@ -229,4 +229,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}