8 Commits

Author SHA1 Message Date
697c787e78 Update src/app/page.tsx 2026-03-04 01:35:46 +00:00
196767a2ce Update src/app/layout.tsx 2026-03-04 01:35:46 +00:00
1f20370f7c Merge version_2 into main
Merge version_2 into main
2026-03-04 01:33:52 +00:00
bab9c6ed2f Update src/app/page.tsx 2026-03-04 01:33:47 +00:00
3373a15471 Merge version_1 into main
Merge version_1 into main
2026-03-04 01:29:19 +00:00
f343648d7a Merge version_1 into main
Merge version_1 into main
2026-03-04 01:27:14 +00:00
013ada1c4e Merge version_1 into main
Merge version_1 into main
2026-03-04 01:26:08 +00:00
5075759386 Merge version_1 into main
Merge version_1 into main
2026-03-04 01:24:44 +00:00
2 changed files with 25 additions and 44 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Archivo } 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 archivo = Archivo({
variable: "--font-archivo", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Marketing Agency | Creative Growth Strategies", description: "Transform your brand with data-driven marketing strategies. 150+ successful campaigns. Expert team delivering measurable results.", keywords: "marketing agency, digital marketing, brand strategy, social media marketing, content marketing, performance marketing", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Marketing Pro - Transform Your Brand", description: "Creative and data-driven marketing solutions for brand growth.", url: "https://marketingpro.com", siteName: "Marketing Pro", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/happy-young-colleagues-office-coworking_171337-17719.jpg", alt: "marketing team creative professional"},
],
},
twitter: {
card: "summary_large_image", title: "Marketing Pro - Transform Your Brand", description: "Creative and data-driven marketing solutions for brand growth.", images: [
"http://img.b2bpic.net/free-photo/happy-young-colleagues-office-coworking_171337-17719.jpg"],
},
};
title: "Marketing Pro - Data-Driven Marketing Excellence", description: "Transform your brand with proven marketing strategies. We craft data-driven campaigns that elevate your brand, engage your audience, and drive measurable growth."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -9,8 +9,9 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterCard from '@/components/sections/footer/FooterCard';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Award, Facebook, Heart, Instagram, Linkedin, Mail, Sparkles, Target, TrendingUp, Twitter } from "lucide-react";
import { Award, Facebook, Heart, Instagram, Linkedin, Mail, Sparkles, Target, TrendingUp, Twitter, Users } from "lucide-react";
export default function LandingPage() {
return (
@@ -133,6 +134,22 @@ export default function LandingPage() {
/>
</div>
<div id="trust" data-section="trust">
<SocialProofOne
title="Trusted by Over 10,000 People"
description="Join thousands of satisfied clients who've transformed their brands with us"
tag="Social Proof"
tagIcon={Users}
tagAnimation="slide-up"
names={[
"TechFlow Inc", "Creative Studios", "Digital Ventures", "Growth Labs", "Innovation Hub", "Brand Factory"]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
showCard={true}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardSeven
title="Our Impact by the Numbers"
@@ -157,7 +174,7 @@ export default function LandingPage() {
animationType="scale-rotate"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Schedule Consultation", href: "#contact" }]}
buttons={[]}
buttonAnimation="slide-up"
/>
</div>