Files
c26ef7f5-6616-4399-a970-e64…/src/app/layout.tsx
2026-04-08 08:50:27 +00:00

51 lines
1.6 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 { Cormorant_Garamond, Inter } from "next/font/google";
export const metadata: Metadata = {
title: 'Bizzle Designz | Luxury Brand Design That Converts',
description: 'Boutique creative studio specializing in luxury brand identity, commercial design, and ROI-focused marketing assets.',
keywords: ["brand design, logo designer, brand identity agency, commercial advertising design"],
openGraph: {
"title": "Bizzle Designz | Luxury Brand Design",
"description": "Strategic branding that converts.",
"siteName": "Bizzle Designz",
"type": "website"
},
twitter: {
"card": "summary_large_image"
},
};
const cormorant = Cormorant_Garamond({ variable: "--font-cormorant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"] }); 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={`${cormorant.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}