Files
f8bfcbe8-7612-4d2f-a432-368…/src/app/layout.tsx
2026-04-09 06:37:15 +00:00

48 lines
1.3 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 { Cinzel, Inter } from "next/font/google";
export const metadata: Metadata = {
title: 'Webild | Modern Solutions',
description: 'Modern, scalable solutions for the digital age.',
openGraph: {
"title": "Funmich Couture",
"description": "Elevate your style with premium couture tailoring.",
"siteName": "Funmich Couture",
"type": "website"
},
};
const cinzel = Cinzel({ variable: "--font-cinzel", subsets: ["latin"] });
const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${cinzel.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}