Files
ba8dc79f-95ea-414d-b970-ba0…/src/app/layout.tsx
2026-04-10 16:03:18 +00:00

50 lines
1.4 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'Gatvol Coffee | Luxury Jungle Hideaway in Durban North',
description: 'Gatvol Coffee is a premium jungle-inspired café in La Lucia, Durban. Escape the routine with artisanal coffee and authentic hospitality in our lush, ancient forest setting.',
openGraph: {
"title": "Gatvol Coffee | Premium Jungle Cafe",
"description": "Luxury coffee experience tucked beneath ancient trees.",
"siteName": "Gatvol Coffee",
"type": "website"
},
};
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}