Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bce3f09677 | |||
| e6e943064a | |||
| a6f98bf01a | |||
| 3be378ab83 | |||
| dad42ba2a2 |
@@ -1,46 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Figtree } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Nitgrowth - Marketing Excellence Redefined", description: "Transform your brand through strategic marketing, creative storytelling, and data-driven results with Nitgrowth."};
|
||||||
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"},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1408,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -203,7 +203,7 @@ export default function LandingPage() {
|
|||||||
tag="Let's Connect"
|
tag="Let's Connect"
|
||||||
tagIcon={Mail}
|
tagIcon={Mail}
|
||||||
tagAnimation="slide-up"
|
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."
|
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" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -212,7 +212,7 @@ export default function LandingPage() {
|
|||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="your@email.com"
|
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."
|
termsText="We respect your privacy. We'll only use your email to reach out about your inquiry."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user