Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 17:33:06 +00:00
2 changed files with 8 additions and 35 deletions

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>
);
}

View File

@@ -203,7 +203,7 @@ export default function LandingPage() {
tag="Let's Connect"
tagIcon={Mail}
tagAnimation="slide-up"
title="Ready to accelerate your growth?"
title="Start Your Growth Journey Today"
description="Join over 150 brands transforming their marketing. Get in touch with our team to discuss your goals and how Nitgrowth can help you achieve them."
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -212,7 +212,7 @@ export default function LandingPage() {
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="your@email.com"
buttonText="Send Message"
buttonText="Get Started Now"
termsText="We respect your privacy. We'll only use your email to reach out about your inquiry."
/>
</div>