Files
02c7eaae-83b5-478e-abd0-2ca…/src/app/layout.tsx
2026-03-30 18:24:21 +00:00

45 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 { Nunito_Sans } from "next/font/google";
export const metadata: Metadata = {
title: 'TheSamyZone | Creative Web Design & Digital Art',
description: 'Welcome to TheSamyZone, your ultimate creative hub for web design, digital art, and professional storytelling. Join us and unlock your creative superpower.',
robots: {
"index": true,
"follow": true
},
};
const nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"] });
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}