Update src/app/layout.tsx

This commit is contained in:
2026-03-03 17:32:53 +00:00
parent a6f98bf01a
commit e6e943064a

View File

@@ -1,46 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Nitgrowth | Growth Marketing Agency", description: "Transform your brand with data-driven marketing strategies. 150+ brands trust Nitgrowth to scale their digital presence and achieve 4.2x average ROI.", keywords: "marketing agency, growth marketing, brand strategy, digital marketing, campaigns, social media", metadataBase: new URL("https://nitgrowth.com"),
openGraph: {
title: "Nitgrowth | Growth Marketing Agency", description: "Transform your brand with data-driven marketing strategies. 150+ brands trust Nitgrowth.", siteName: "Nitgrowth", type: "website"},
twitter: {
card: "summary_large_image", title: "Nitgrowth | Growth Marketing Agency", description: "Transform your brand with data-driven marketing strategies"},
};
title: "Nitgrowth - Marketing Excellence Redefined", description: "Transform your brand through strategic marketing, creative storytelling, and data-driven results with Nitgrowth."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1408,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}