From 79504224847f58268d67aa52cf9df1c47eb52bff Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:44:22 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1423 +------------------------------------------- 1 file changed, 10 insertions(+), 1413 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8c64cb2..02bdff4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,24 @@ 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", +const poppins = Poppins({ subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "007 Restaurant - Luxury Dining & Cocktails Durbanville", - description: "Experience Durbanville's most stylish dining destination. Premium steaks, signature cocktails at Skyfall Lounge, and family-friendly hospitality in an elegant James Bond-inspired setting.", - keywords: "Durbanville restaurant, cocktail bar, steakhouse, fine dining, luxury restaurant, Skyfall Lounge, family restaurant, upscale dining", - openGraph: { - title: "007 Restaurant - Licensed to Dine", - description: "Durbanville's most stylish dining experience featuring premium steaks, cocktails and exceptional hospitality", - siteName: "007 Restaurant", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/preparing-refreshing-cocktail-bar_23-2148176739.jpg", - alt: "007 Restaurant - Luxury Dining Experience", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "007 Restaurant - Luxury Dining", - description: "Experience premium dining and signature cocktails at Durbanville's most stylish venue", - images: ["http://img.b2bpic.net/free-photo/preparing-refreshing-cocktail-bar_23-2148176739.jpg"], - }, -}; + title: "007 Restaurant - Durbanville's Most Stylish Dining", description: + "Experience premium steaks, signature cocktails, and unforgettable atmosphere at 007 Restaurant in Durbanville."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -