10 Commits

Author SHA1 Message Date
8a867cbf92 Update src/app/seo/page.tsx 2026-02-19 02:23:44 +00:00
279a34e925 Update src/app/page.tsx 2026-02-19 02:23:43 +00:00
0d5c72dba2 Update src/app/layout.tsx 2026-02-19 02:23:42 +00:00
6b3a03ce33 Merge version_4 into main
Merge version_4 into main
2026-02-19 02:17:59 +00:00
9c8bc8d5d9 Update theme fonts 2026-02-19 02:17:55 +00:00
5417c0bd18 Update theme fonts 2026-02-19 02:17:54 +00:00
25b68ed7cf Merge version_4 into main
Merge version_4 into main
2026-02-19 02:14:23 +00:00
75e71d4235 Update src/app/seo/page.tsx 2026-02-19 02:14:19 +00:00
c79d701f57 Update src/app/page.tsx 2026-02-19 02:14:18 +00:00
ba73324b73 Merge version_3 into main
Merge version_3 into main
2026-02-19 02:11:10 +00:00
4 changed files with 19 additions and 46 deletions

View File

@@ -1,51 +1,19 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Performance Marketing Agency Amsterdam | Data-Driven Results", description: "Amsterdam-based performance marketing agency specializing in SEO, PPC, and conversion optimization. 312% avg ROI increase for 500+ clients.", keywords: "performance marketing Amsterdam, digital marketing agency, SEO services, PPC advertising, conversion optimization, growth marketing", metadataBase: new URL("https://performancehub.example.com"),
alternates: {
canonical: "https://performancehub.example.com"
},
openGraph: {
title: "PerformanceHub - Performance Marketing Agency Amsterdam", description: "Boost your ROI with data-driven marketing strategies. Proven expertise in SEO, PPC, and conversion optimization.", url: "https://performancehub.example.com", siteName: "PerformanceHub", type: "website", images: [{
url: "https://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg", alt: "Performance Marketing Dashboard"
}]
},
twitter: {
card: "summary_large_image", title: "PerformanceHub - Performance Marketing Agency", description: "Data-driven marketing strategies that deliver results. Amsterdam-based experts in growth marketing.", images: ["https://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "PerformanceHub - Performance Marketing Agency Amsterdam", description: "Amsterdam-based performance marketing agency specializing in SEO, PPC, and conversion optimization. Drive real results with data-driven strategies."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1327,7 +1295,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -68,7 +68,7 @@ export default function LandingPage() {
features={[
{
id: "1", title: "Search Engine Optimization (SEO)", tags: ["Organic Traffic", "Long-term Growth"],
imageSrc: "https://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg", imageAlt: "SEO optimization and search engine marketing strategies"
imageSrc: "https://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg", imageAlt: "SEO optimization and search engine marketing strategies", onFeatureClick: () => window.location.href = "/seo"
},
{
id: "2", title: "Pay-Per-Click Advertising (PPC)", tags: ["Immediate Results", "Budget Control"],
@@ -95,6 +95,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
buttons={[
{ text: "Start Your Journey", href: "contact" }
]}
metrics={[
{
id: "1", value: "312%", title: "Average ROI Increase", description: "Client average return on marketing investment within 6 months", imageSrc: "https://img.b2bpic.net/free-photo/close-up-digital-tablet-with-bar-graph_1098-3523.jpg", imageAlt: "Revenue growth chart showing ROI improvement"
@@ -260,4 +263,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -94,6 +94,9 @@ export default function SEOPage() {
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
buttons={[
{ text: "Start Your SEO Journey", href: "contact" }
]}
metrics={[
{
id: "1", value: "156%", title: "Average Organic Traffic Increase", description: "Typical improvement in organic search traffic within 6-12 months", imageSrc: "https://img.b2bpic.net/free-photo/close-up-office-supplies_1098-3510.jpg", imageAlt: "Organic traffic growth metrics"
@@ -185,4 +188,4 @@ export default function SEOPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-work-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-public-sans), sans-serif;
font-family: var(--font-open-sans), sans-serif;
}