Update src/app/layout.tsx
This commit is contained in:
@@ -1,11 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
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."};
|
||||
title: "Cavo Dubai - Premium Dining & Lounge", description: "Dubai's most stylish dining and lounge experience featuring premium cuisine, handcrafted cocktails, and stunning Burj Khalifa views."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
Reference in New Issue
Block a user