Update src/app/layout.tsx

This commit is contained in:
2026-03-07 06:18:36 +00:00
parent 850d45444d
commit 2ed2a8d5a7

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}