Merge version_2 into main #8
@@ -1,50 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat, Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { Inter } from "next/font/google";
|
||||
import "../styles/globals.css";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Premium Social Media Strategy Agency | Zenith", description: "Transform your brand with data-driven social media strategies. Zenith delivers 312% average growth, 425% ROI, and real results for ambitious brands.", keywords: "social media agency, Instagram growth, TikTok marketing, influencer partnerships, social strategy, digital marketing", metadataBase: new URL("https://zenith.agency"),
|
||||
alternates: {
|
||||
canonical: "https://zenith.agency"},
|
||||
openGraph: {
|
||||
title: "Premium Social Media Strategy Agency | Zenith", description: "Transform your brand with data-driven social media strategies that deliver results.", url: "https://zenith.agency", siteName: "Zenith", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcYLGFhDoqC2oKrE3JxDJWKAH4/a-luxurious-social-media-agency-dashboar-1772893359486-fa135ac0.png", alt: "Zenith Social Media Agency"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Premium Social Media Strategy Agency | Zenith", description: "Transform your brand with data-driven social media strategies that deliver results.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcYLGFhDoqC2oKrE3JxDJWKAH4/a-luxurious-social-media-agency-dashboar-1772893359486-fa135ac0.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Zenith - Premium Social Media Agency", description: "Transform your brand through strategic social excellence. We craft premium social media strategies that drive unprecedented growth."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -70,8 +70,8 @@ export default function LandingPage() {
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Discover Our Process", href: "#services" },
|
||||
{ text: "Schedule Consultation", href: "contact" }
|
||||
{ text: "Discover Our Process", href: "services" },
|
||||
{ text: "Schedule Consultation", href: "/booking" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -229,8 +229,8 @@ export default function LandingPage() {
|
||||
title="Let's Transform Your Social Strategy"
|
||||
description="Join hundreds of brands experiencing explosive growth with Zenith. Schedule a consultation with our strategy team to discuss your goals, current performance, and growth opportunities."
|
||||
buttons={[
|
||||
{ text: "Schedule Consultation", href: "#" },
|
||||
{ text: "View Pricing", href: "#" }
|
||||
{ text: "Schedule Consultation", href: "/booking" },
|
||||
{ text: "View Pricing", href: "/pricing" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
@@ -243,15 +243,15 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Instagram Growth", href: "#services" },
|
||||
{ label: "TikTok Strategy", href: "#services" },
|
||||
{ label: "Paid Campaigns", href: "#services" },
|
||||
{ label: "Influencer Marketing", href: "#services" }
|
||||
{ label: "Instagram Growth", href: "services" },
|
||||
{ label: "TikTok Strategy", href: "services" },
|
||||
{ label: "Paid Campaigns", href: "services" },
|
||||
{ label: "Influencer Marketing", href: "services" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Zenith", href: "#about" },
|
||||
{ label: "About Zenith", href: "about" },
|
||||
{ label: "Our Team", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Blog", href: "#" }
|
||||
@@ -259,7 +259,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Contact Us", href: "#contact" },
|
||||
{ label: "Contact Us", href: "contact" },
|
||||
{ label: "Email", href: "mailto:hello@zenith.agency" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Instagram", href: "https://instagram.com" }
|
||||
|
||||
Reference in New Issue
Block a user