Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5d42d5aff7 | |||
| d1074c2907 | |||
| 9584e8b810 | |||
| 72c0421893 | |||
| bb4d357e66 | |||
| d885da2479 | |||
| a3d2ce5806 | |||
| 7573ec45ce | |||
| f8871adea3 |
@@ -1,63 +1,29 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Geist, Geist_Mono } 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 geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Premium Social Media Agency - Strategy & Growth",
|
||||
description: "Transform your brand with data-driven social media strategies. 500+ successful campaigns, 150% avg engagement growth. Get expert social media management today.",
|
||||
keywords: "social media agency, social media marketing, content creation, social strategy, brand growth, digital marketing",
|
||||
openGraph: {
|
||||
title: "Premium Social Media Agency",
|
||||
description: "Transform your brand with strategic social media excellence",
|
||||
siteName: "Social Agency",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Premium Social Media Agency",
|
||||
description: "Data-driven social media strategies for brand growth",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
title: "Create Next App", description: "Generated by create next app"
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1425,7 +1391,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -38,7 +38,8 @@ export default function HomePage() {
|
||||
brandName="Social Agency"
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Get Started", href: "/contact"}}
|
||||
text: "Get Started", href: "/contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -91,7 +92,7 @@ export default function HomePage() {
|
||||
metrics={[
|
||||
{ id: "1", value: "$50M+", description: "Revenue Generated for Clients" },
|
||||
{ id: "2", value: "2.5M+", description: "Total Followers Gained" },
|
||||
{ id: "3", value: "95%", description: "Client Retention Rate" },
|
||||
{ id: "3", value: "95%", description: "Of Clients Return for Additional Services" },
|
||||
{ id: "4", value: "10K+", description: "Posts Created Annually" },
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
@@ -150,6 +151,9 @@ export default function HomePage() {
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
mediaPosition="right"
|
||||
buttons={[
|
||||
{ text: "Schedule a Consultation", href: "/contact" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -195,4 +199,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user