From e6e943064ae053a18dffa9de7634b182a203cf50 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:32:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 39 ++++++--------------------------------- 1 file changed, 6 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3003f57..4c431a5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}