From 6829b441c290d4d17833c6d486b3a3b9f7d04233 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:50:49 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1414 +------------------------------------------- 1 file changed, 6 insertions(+), 1408 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 12add70..2ce349b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TakaHisa | Michelin-Guide Luxury Japanese Fine Dining Dubai", description: "Experience exclusive omakase and premium A5 Wagyu at TakaHisa, Dubai's premier Japanese fine-dining restaurant. Michelin-featured, chef-led culinary excellence on Bluewaters Island.", keywords: "luxury dining Dubai, Japanese restaurant, omakase, fine dining, Wagyu beef, Michelin guide, Bluewaters Island, sushi Dubai", openGraph: { - title: "TakaHisa | Luxury Japanese Fine Dining in Dubai", description: "Experience authentic Japanese cuisine by master chefs Takashi Namekata and Hisao Ueda at TakaHisa, featured in the Michelin Guide.", url: "https://takahisa.ae", siteName: "TakaHisa", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-holds-plate-with-red-gurza-side-view_141793-4739.jpg", alt: "TakaHisa Luxury Omakase Experience"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "TakaHisa | Michelin-Guide Fine Dining Dubai", description: "Exclusive omakase and premium Wagyu by renowned master chefs.", images: ["http://img.b2bpic.net/free-photo/man-holds-plate-with-red-gurza-side-view_141793-4739.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TakaHisa | Luxury Japanese Fine Dining in Dubai", description: "Experience authentic Japanese omakase and premium Wagyu at TakaHisa, Dubai's most exclusive fine dining destination on Bluewaters Island."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -