From 2ed2a8d5a73188ddbffa981aea73ace5b4e1f4ce Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 06:18:36 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dfcf3ac..2f19ee9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Al Zaiqa | Authentic Dining Experience", description: "Discover authentic flavors and unforgettable dining at Al Zaiqa. Premium ingredients, signature dishes, and exceptional service. Reserve your table today.", keywords: "restaurant, authentic dining, fine dining, reservations, premium cuisine, family restaurant", metadataBase: new URL("https://alzaiqa.com"), - alternates: { - canonical: "https://alzaiqa.com"}, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Al Zaiqa | Authentic Dining Experience", description: "Experience authentic flavors and unforgettable dining at Al Zaiqa. Premium ingredients, signature dishes, and exceptional service.", type: "website", siteName: "Al Zaiqa Restaurant", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-fish-meal-inside-white-plate-along-with-red-wine-table-food-meal-restaurant_140725-28131.jpg", alt: "Al Zaiqa Restaurant elegant dining"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Al Zaiqa | Authentic Dining Experience", description: "Experience authentic flavors and unforgettable dining at Al Zaiqa.", images: ["http://img.b2bpic.net/free-photo/top-view-fish-meal-inside-white-plate-along-with-red-wine-table-food-meal-restaurant_140725-28131.jpg"], - }, -}; + title: "Al Zaiqa Restaurant", description: "Authentic Flavors, Unforgettable Dining Experience"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}