From e73f3a482f76074d4480fdc6772563f89a151931 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 16:15:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2786 -------------------------------------------- 1 file changed, 2786 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b031dd3..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2786 +0,0 @@ -import type { Metadata } from "next"; -import { Libre_Baskerville, Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Reshta Restaurant - Premium Levantine Fine Dining in Jerusalem", description: "Discover authentic Palestinian and Mediterranean cuisine at Reshta, Jerusalem's premier fine-dining restaurant. Fresh ingredients, heritage recipes, award-winning chefs. Reserve your table today.", keywords: "restaurant Jerusalem, Palestinian cuisine, Mediterranean dining, fine dining, Levantine food, authentic Palestinian restaurant, shawarma, hummus, fattoush, luxury dining Jerusalem", metadataBase: new URL("https://reshta-restaurant.com"), - alternates: { - canonical: "https://reshta-restaurant.com"}, - openGraph: { - title: "Reshta Restaurant - Culinary Excellence in Jerusalem", description: "Experience authentic Levantine cuisine with 20+ years of culinary heritage. Fine dining meets Palestinian tradition.", url: "https://reshta-restaurant.com", siteName: "Reshta Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/slice-tasty-tuna-meal-with-glass-white-wine-restaurant_8353-10588.jpg", alt: "Signature dish at Reshta Restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Reshta Restaurant - Premium Levantine Dining", description: "Award-winning Palestinian and Mediterranean cuisine in Jerusalem's heart", images: ["http://img.b2bpic.net/free-photo/slice-tasty-tuna-meal-with-glass-white-wine-restaurant_8353-10588.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -