9 Commits

Author SHA1 Message Date
5d42d5aff7 Merge version_3 into main
Merge version_3 into main
2026-03-04 17:11:55 +00:00
d1074c2907 Update src/app/page.tsx 2026-03-04 17:11:50 +00:00
9584e8b810 Update src/app/layout.tsx 2026-03-04 17:11:49 +00:00
72c0421893 Merge version_2 into main
Merge version_2 into main
2026-03-04 17:09:19 +00:00
bb4d357e66 Update src/app/page.tsx 2026-03-04 17:09:15 +00:00
d885da2479 Update src/app/layout.tsx 2026-03-04 17:09:15 +00:00
a3d2ce5806 Merge version_1 into main
Merge version_1 into main
2026-03-04 17:07:48 +00:00
7573ec45ce Merge version_1 into main
Merge version_1 into main
2026-03-04 17:06:46 +00:00
f8871adea3 Merge version_1 into main
Merge version_1 into main
2026-03-04 17:05:26 +00:00
2 changed files with 20 additions and 51 deletions

View File

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

View File

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