Update src/app/layout.tsx

This commit is contained in:
2026-03-16 08:07:04 +00:00
parent 991cff21bf
commit 140be3659c

View File

@@ -1,28 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Open_Sans } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Orbit Cafe Futuristic Cosmic Dining Experience",
description: "Experience an immersive 3D cosmic dining adventure. Gourmet burgers, wood-fired pizza, momos & premium beverages in a space-chic atmosphere. Reserve now.",
keywords: "fine dining, cosmic cafe, gourmet burgers, wood-fired pizza, luxury restaurant, space theme, momos, futuristic design, premium dining",
metadataBase: new URL("https://orbitcafe.com"),
alternates: {
canonical: "https://orbitcafe.com",
},
openGraph: {
title: "Orbit Cafe Taste the Galaxy",
description: "Join us for an extraordinary culinary journey through space with immersive 3D animations and world-class gourmet cuisine.",
siteName: "Orbit Cafe",
url: "https://orbitcafe.com",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-vector/watercolor-outer-space-blue-purple-background_23-2149247754.jpg",
alt: "Orbit Cafe cosmic space-themed dining experience",
},
],
},
twitter: {
card: "summary_large_image",
title: "Orbit Cafe Cosmic Fine Dining",
description: "Experience futuristic gourmet dining with 3D scroll animations and immersive space-chic design.",
images: ["http://img.b2bpic.net/free-vector/watercolor-outer-space-blue-purple-background_23-2149247754.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}