Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 999c615037 | |||
| d1b0833a79 | |||
| a721d86639 | |||
| 868fdb51e3 | |||
| 2245df0e26 | |||
| 2bc0cd29cc | |||
| 991eb064bd | |||
| 4e93f20dbd | |||
| 95e7f2919e | |||
| 27f2153f84 |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user