diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 41cb8ce..c989ecb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Cavo Dubai | Premium Dining & Lounge in Dubai", description: "Experience luxury dining and handcrafted cocktails at Cavo Dubai. Premium sushi, seafood, and unforgettable nights with Burj Khalifa views. Reserve your table today.", keywords: "Dubai lounge, Dubai restaurant with view, Dubai sushi restaurant, Dubai nightlife restaurant, restaurant near Burj Khalifa, best lounge Dubai, premium dining Dubai", metadataBase: new URL("https://cavodubai.ae"), - alternates: { - canonical: "https://cavodubai.ae"}, - openGraph: { - title: "Cavo Dubai | Premium Dining & Lounge Experience", description: "Join us for luxury dining, handcrafted cocktails, and unforgettable Dubai nights with stunning Burj Khalifa views.", type: "website", siteName: "Cavo Dubai", url: "https://cavodubai.ae", images: [ - { - url: "http://img.b2bpic.net/free-photo/twigs-leaves-near-lamp-cutlery_23-2147811213.jpg", alt: "Cavo Dubai luxury lounge and dining venue"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Cavo Dubai | Premium Dining & Lounge", description: "Experience luxury dining and exclusive nightlife at Cavo Dubai. Reserve your table now.", images: ["http://img.b2bpic.net/free-photo/twigs-leaves-near-lamp-cutlery_23-2147811213.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Cavo Dubai - Premium Dining & Lounge", description: "Dubai's most stylish dining and lounge experience with premium sushi, handcrafted cocktails, and stunning Burj Khalifa views."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -