Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 79a0b06756 | |||
| 750c40dc56 | |||
| 993b237849 | |||
| 8a867cbf92 | |||
| 279a34e925 | |||
| 0d5c72dba2 | |||
| 6b3a03ce33 | |||
| 9c8bc8d5d9 | |||
| 5417c0bd18 | |||
| 25b68ed7cf | |||
| 75e71d4235 | |||
| c79d701f57 | |||
| ba73324b73 | |||
| 4068d2138f | |||
| c0e32d0660 | |||
| 43eb6d7f70 | |||
| a91164fb9f | |||
| ac761e88b9 | |||
| 85f087ae4a | |||
| 12d580bfac | |||
| 23f58c86f7 |
@@ -32,6 +32,7 @@ export default function BlogPage() {
|
|||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Results", id: "metrics" },
|
{ name: "Results", id: "metrics" },
|
||||||
{ name: "Case Studies", id: "casestudies" },
|
{ name: "Case Studies", id: "casestudies" },
|
||||||
|
{ name: "SEO", id: "/seo" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "pricing" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
@@ -64,7 +65,7 @@ export default function BlogPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Services", href: "services" },
|
{ label: "Services", href: "services" },
|
||||||
{ label: "SEO", href: "#" },
|
{ label: "SEO", href: "/seo" },
|
||||||
{ label: "PPC Advertising", href: "#" },
|
{ label: "PPC Advertising", href: "#" },
|
||||||
{ label: "Social Media", href: "#" }
|
{ label: "Social Media", href: "#" }
|
||||||
]
|
]
|
||||||
@@ -73,7 +74,7 @@ export default function BlogPage() {
|
|||||||
items: [
|
items: [
|
||||||
{ label: "Company", href: "#" },
|
{ label: "Company", href: "#" },
|
||||||
{ label: "About Us", href: "#" },
|
{ label: "About Us", href: "#" },
|
||||||
{ label: "Case Studies", href: "casestudies" },
|
{ label: "Case Studies", href: "/" },
|
||||||
{ label: "Careers", href: "#" }
|
{ label: "Careers", href: "#" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,50 +1,19 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
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 = {
|
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"),
|
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."
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>
|
||||||
<body
|
{children}
|
||||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1327,7 +1296,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -33,6 +33,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Results", id: "metrics" },
|
{ name: "Results", id: "metrics" },
|
||||||
{ name: "Case Studies", id: "casestudies" },
|
{ name: "Case Studies", id: "casestudies" },
|
||||||
|
{ name: "SEO", id: "/seo" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "pricing" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
@@ -67,7 +68,7 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "1", title: "Search Engine Optimization (SEO)", tags: ["Organic Traffic", "Long-term Growth"],
|
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"],
|
id: "2", title: "Pay-Per-Click Advertising (PPC)", tags: ["Immediate Results", "Budget Control"],
|
||||||
@@ -94,6 +95,9 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
|
buttons={[
|
||||||
|
{ text: "Start Your Journey", href: "contact" }
|
||||||
|
]}
|
||||||
metrics={[
|
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"
|
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"
|
||||||
@@ -103,6 +107,9 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "3", value: "500+", title: "Clients Served", description: "Businesses from startups to enterprises achieving growth goals", imageSrc: "https://img.b2bpic.net/free-photo/businessman-holding-laptop-showing-financial-data_9975-22146.jpg", imageAlt: "Team collaboration and client success stories"
|
id: "3", value: "500+", title: "Clients Served", description: "Businesses from startups to enterprises achieving growth goals", imageSrc: "https://img.b2bpic.net/free-photo/businessman-holding-laptop-showing-financial-data_9975-22146.jpg", imageAlt: "Team collaboration and client success stories"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4", value: "2.3x", title: "Average Traffic Growth", description: "Typical increase in overall website traffic from optimized campaigns", imageSrc: "https://img.b2bpic.net/free-photo/close-up-digital-tablet-with-bar-graph_1098-3523.jpg", imageAlt: "Website traffic analytics and growth metrics"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -225,7 +232,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{ label: "Services", href: "services" },
|
{ label: "Services", href: "services" },
|
||||||
{ label: "SEO", href: "#" },
|
{ label: "SEO", href: "/seo" },
|
||||||
{ label: "PPC Advertising", href: "#" },
|
{ label: "PPC Advertising", href: "#" },
|
||||||
{ label: "Social Media", href: "#" }
|
{ label: "Social Media", href: "#" }
|
||||||
]
|
]
|
||||||
|
|||||||
191
src/app/seo/page.tsx
Normal file
191
src/app/seo/page.tsx
Normal file
@@ -0,0 +1,191 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import React from "react";
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
|
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||||
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||||
|
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||||
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
import { Sparkles, TrendingUp, Zap, Award } from "lucide-react";
|
||||||
|
|
||||||
|
export default function SEOPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="bounce-effect"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="smallMedium"
|
||||||
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
|
background="noiseDiagonalGradient"
|
||||||
|
cardStyle="gradient-mesh"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="extrabold"
|
||||||
|
>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleApple
|
||||||
|
brandName="PerformanceHub"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Services", id: "services" },
|
||||||
|
{ name: "Results", id: "metrics" },
|
||||||
|
{ name: "Case Studies", id: "casestudies" },
|
||||||
|
{ name: "SEO", id: "/seo" },
|
||||||
|
{ name: "Pricing", id: "pricing" },
|
||||||
|
{ name: "Contact", id: "contact" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="hero" data-section="hero">
|
||||||
|
<HeroBillboardScroll
|
||||||
|
title="Search Engine Optimization That Drives Real Growth"
|
||||||
|
description="Dominate search rankings and attract high-quality organic traffic with our comprehensive SEO strategies. Amsterdam-based experts with proven track record of increasing visibility and conversions."
|
||||||
|
tag="Professional SEO Services"
|
||||||
|
tagIcon={Sparkles}
|
||||||
|
background={{ variant: "radial-gradient" }}
|
||||||
|
imageSrc="https://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg"
|
||||||
|
imageAlt="SEO strategy and search engine optimization"
|
||||||
|
buttons={[
|
||||||
|
{ text: "Get Your SEO Audit", href: "contact" },
|
||||||
|
{ text: "View SEO Case Studies", href: "/" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="services" data-section="services">
|
||||||
|
<FeatureCardTwentyThree
|
||||||
|
title="Our Comprehensive SEO Services"
|
||||||
|
description="A complete range of SEO solutions designed to improve your search visibility and drive sustainable organic growth"
|
||||||
|
tag="SEO Solutions"
|
||||||
|
tagIcon={Zap}
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
animationType="slide-up"
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
id: "1", title: "Technical SEO Optimization", tags: ["Site Speed", "Mobile Optimization"],
|
||||||
|
imageSrc: "https://img.b2bpic.net/free-photo/close-up-digital-tablet-with-bar-graph_1098-3523.jpg", imageAlt: "Technical SEO and website optimization"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", title: "Keyword Research & Strategy", tags: ["Target Audience", "High Intent"],
|
||||||
|
imageSrc: "https://img.b2bpic.net/free-photo/businesswoman-working-laptop_53876-163211.jpg", imageAlt: "Keyword research and SEO strategy"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", title: "Content Strategy & Optimization", tags: ["Quality Content", "Search Intent"],
|
||||||
|
imageSrc: "https://img.b2bpic.net/free-photo/business-woman-talking-about-financial-project-taking-notes-discussing-start-up-ideas-using-laptop-diverse-employees-gathered-co-working-working-process-busy-company-teamwork-help-concept_482257-13564.jpg", imageAlt: "Content creation and optimization for SEO"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "4", title: "Link Building & Authority", tags: ["Backlink Strategy", "Domain Authority"],
|
||||||
|
imageSrc: "https://img.b2bpic.net/free-photo/top-view-image-young-african-man-sitting-coworking_171337-13500.jpg", imageAlt: "Link building and SEO authority development"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="metrics" data-section="metrics">
|
||||||
|
<MetricCardEleven
|
||||||
|
title="SEO Results Our Clients Achieve"
|
||||||
|
description="Measurable improvements in search rankings, organic traffic, and sustainable online visibility"
|
||||||
|
tag="SEO Performance"
|
||||||
|
tagIcon={TrendingUp}
|
||||||
|
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"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", value: "1st Page", title: "Target Keywords Ranking", description: "80% of target keywords ranking on Google's first page", imageSrc: "https://img.b2bpic.net/free-photo/businessman-holding-laptop-showing-financial-data_9975-22146.jpg", imageAlt: "Search ranking improvements"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", value: "89%", title: "Client Satisfaction Rate", description: "Clients reporting significant ROI from SEO investments", imageSrc: "https://img.b2bpic.net/free-photo/digital-laptop-working-global-business-concept_53876-23438.jpg", imageAlt: "Client satisfaction and SEO ROI"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="casestudies" data-section="casestudies">
|
||||||
|
<BlogCardOne
|
||||||
|
title="SEO Success Stories"
|
||||||
|
description="Real examples of how our SEO strategies have transformed businesses and increased their online visibility"
|
||||||
|
tag="Case Studies"
|
||||||
|
tagIcon={Award}
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
animationType="slide-up"
|
||||||
|
blogs={[
|
||||||
|
{
|
||||||
|
id: "1", category: "E-Commerce", title: "Local E-Commerce: From Invisible to $1M+ Organic Revenue", excerpt: "Comprehensive SEO strategy increased organic traffic by 312% and generated $1.2M in annual revenue through optimized product pages and content strategy.", imageSrc: "https://img.b2bpic.net/free-photo/business-finance-economy-commerce-investment_53876-124458.jpg", imageAlt: "E-commerce SEO success", authorName: "Sarah Johnson", authorAvatar: "https://img.b2bpic.net/free-photo/closeup-handsome-middle-aged-business-leader_1262-4822.jpg", date: "Mar 15, 2024"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "2", category: "SaaS", title: "SaaS Platform: Ranking #1 for 50+ Industry Keywords", excerpt: "Technical SEO combined with content strategy resulted in 1st page rankings for 50+ target keywords and 400% increase in qualified leads.", imageSrc: "https://img.b2bpic.net/free-photo/online-shopping-shipping-internet-commerce-concept_53876-124900.jpg", imageAlt: "SaaS SEO case study", authorName: "Michael Chen", authorAvatar: "https://img.b2bpic.net/free-photo/smiling-homosexual-man-official-suit-looking-camera-close-up-shot-happy-gay-getting-dressed-wedding-ceremony-standing-hotel-room-with-his-partner-background-love-emotion-concept_74855-22675.jpg", date: "Feb 28, 2024"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: "3", category: "Local Business", title: "Local Services: Dominating Local Search Results", excerpt: "Local SEO strategy including Google Business optimization generated 250% increase in local search visibility and service inquiries.", imageSrc: "https://img.b2bpic.net/free-photo/digital-laptop-working-global-business-concept_53876-23438.jpg", imageAlt: "Local SEO success", authorName: "Emma Rodriguez", authorAvatar: "https://img.b2bpic.net/free-photo/positive-middle-aged-business-leader-window_1262-5388.jpg", date: "Feb 10, 2024"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactText
|
||||||
|
text="Ready to transform your organic search presence? Let's conduct a free SEO audit and show you the opportunities available for your business."
|
||||||
|
animationType="background-highlight"
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Request Free SEO Audit", href: "contact" },
|
||||||
|
{ text: "Schedule Consultation", href: "contact" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
logoText="PerformanceHub"
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "Services", href: "services" },
|
||||||
|
{ label: "SEO", href: "/seo" },
|
||||||
|
{ label: "PPC Advertising", href: "#" },
|
||||||
|
{ label: "Social Media", href: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "Company", href: "#" },
|
||||||
|
{ label: "About Us", href: "#" },
|
||||||
|
{ label: "Case Studies", href: "/" },
|
||||||
|
{ label: "Careers", href: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "Resources", href: "#" },
|
||||||
|
{ label: "Blog", href: "#" },
|
||||||
|
{ label: "Guides", href: "#" },
|
||||||
|
{ label: "Webinars", href: "#" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
items: [
|
||||||
|
{ label: "Legal", href: "#" },
|
||||||
|
{ label: "Privacy Policy", href: "#" },
|
||||||
|
{ label: "Terms of Service", href: "#" },
|
||||||
|
{ label: "Contact", href: "contact" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -89,6 +89,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{"name":"Services","id":"services"},
|
{"name":"Services","id":"services"},
|
||||||
{"name":"Results","id":"metrics"},
|
{"name":"Results","id":"metrics"},
|
||||||
{"name":"Case Studies","id":"casestudies"},
|
{"name":"Case Studies","id":"casestudies"},
|
||||||
|
{"name":"SEO","id":"/seo"},
|
||||||
{"name":"Pricing","id":"pricing"},
|
{"name":"Pricing","id":"pricing"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"},
|
||||||
{"name":"Shop","id":"/shop"}
|
{"name":"Shop","id":"/shop"}
|
||||||
@@ -103,8 +104,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
logoText="PerformanceHub"
|
logoText="PerformanceHub"
|
||||||
columns={[
|
columns={[
|
||||||
{"items":[{"label":"Services","href":"services"},{"label":"SEO","href":"#"},{"label":"PPC Advertising","href":"#"},{"label":"Social Media","href":"#"}]},
|
{"items":[{"label":"Services","href":"services"},{"label":"SEO","href":"/seo"},{"label":"PPC Advertising","href":"#"},{"label":"Social Media","href":"#"}]},
|
||||||
{"items":[{"label":"Company","href":"#"},{"label":"About Us","href":"#"},{"label":"Case Studies","href":"casestudies"},{"label":"Careers","href":"#"}]},
|
{"items":[{"label":"Company","href":"#"},{"label":"About Us","href":"#"},{"label":"Case Studies","href":"/"},{"label":"Careers","href":"#"}]},
|
||||||
{"items":[{"label":"Resources","href":"#"},{"label":"Blog","href":"#"},{"label":"Guides","href":"#"},{"label":"Webinars","href":"#"}]},
|
{"items":[{"label":"Resources","href":"#"},{"label":"Blog","href":"#"},{"label":"Guides","href":"#"},{"label":"Webinars","href":"#"}]},
|
||||||
{"items":[{"label":"Legal","href":"#"},{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"contact"}]}
|
{"items":[{"label":"Legal","href":"#"},{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"contact"}]}
|
||||||
]}
|
]}
|
||||||
@@ -138,6 +139,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{"name":"Services","id":"services"},
|
{"name":"Services","id":"services"},
|
||||||
{"name":"Results","id":"metrics"},
|
{"name":"Results","id":"metrics"},
|
||||||
{"name":"Case Studies","id":"casestudies"},
|
{"name":"Case Studies","id":"casestudies"},
|
||||||
|
{"name":"SEO","id":"/seo"},
|
||||||
{"name":"Pricing","id":"pricing"},
|
{"name":"Pricing","id":"pricing"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"},
|
||||||
{"name":"Shop","id":"/shop"}
|
{"name":"Shop","id":"/shop"}
|
||||||
@@ -160,8 +162,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
logoText="PerformanceHub"
|
logoText="PerformanceHub"
|
||||||
columns={[
|
columns={[
|
||||||
{"items":[{"label":"Services","href":"services"},{"label":"SEO","href":"#"},{"label":"PPC Advertising","href":"#"},{"label":"Social Media","href":"#"}]},
|
{"items":[{"label":"Services","href":"services"},{"label":"SEO","href":"/seo"},{"label":"PPC Advertising","href":"#"},{"label":"Social Media","href":"#"}]},
|
||||||
{"items":[{"label":"Company","href":"#"},{"label":"About Us","href":"#"},{"label":"Case Studies","href":"casestudies"},{"label":"Careers","href":"#"}]},
|
{"items":[{"label":"Company","href":"#"},{"label":"About Us","href":"#"},{"label":"Case Studies","href":"/"},{"label":"Careers","href":"#"}]},
|
||||||
{"items":[{"label":"Resources","href":"#"},{"label":"Blog","href":"#"},{"label":"Guides","href":"#"},{"label":"Webinars","href":"#"}]},
|
{"items":[{"label":"Resources","href":"#"},{"label":"Blog","href":"#"},{"label":"Guides","href":"#"},{"label":"Webinars","href":"#"}]},
|
||||||
{"items":[{"label":"Legal","href":"#"},{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"contact"}]}
|
{"items":[{"label":"Legal","href":"#"},{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"contact"}]}
|
||||||
]}
|
]}
|
||||||
@@ -194,6 +196,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
{"name":"Services","id":"services"},
|
{"name":"Services","id":"services"},
|
||||||
{"name":"Results","id":"metrics"},
|
{"name":"Results","id":"metrics"},
|
||||||
{"name":"Case Studies","id":"casestudies"},
|
{"name":"Case Studies","id":"casestudies"},
|
||||||
|
{"name":"SEO","id":"/seo"},
|
||||||
{"name":"Pricing","id":"pricing"},
|
{"name":"Pricing","id":"pricing"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"},
|
||||||
{"name":"Shop","id":"/shop"}
|
{"name":"Shop","id":"/shop"}
|
||||||
@@ -241,8 +244,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
|||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
logoText="PerformanceHub"
|
logoText="PerformanceHub"
|
||||||
columns={[
|
columns={[
|
||||||
{"items":[{"label":"Services","href":"services"},{"label":"SEO","href":"#"},{"label":"PPC Advertising","href":"#"},{"label":"Social Media","href":"#"}]},
|
{"items":[{"label":"Services","href":"services"},{"label":"SEO","href":"/seo"},{"label":"PPC Advertising","href":"#"},{"label":"Social Media","href":"#"}]},
|
||||||
{"items":[{"label":"Company","href":"#"},{"label":"About Us","href":"#"},{"label":"Case Studies","href":"casestudies"},{"label":"Careers","href":"#"}]},
|
{"items":[{"label":"Company","href":"#"},{"label":"About Us","href":"#"},{"label":"Case Studies","href":"/"},{"label":"Careers","href":"#"}]},
|
||||||
{"items":[{"label":"Resources","href":"#"},{"label":"Blog","href":"#"},{"label":"Guides","href":"#"},{"label":"Webinars","href":"#"}]},
|
{"items":[{"label":"Resources","href":"#"},{"label":"Blog","href":"#"},{"label":"Guides","href":"#"},{"label":"Webinars","href":"#"}]},
|
||||||
{"items":[{"label":"Legal","href":"#"},{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"contact"}]}
|
{"items":[{"label":"Legal","href":"#"},{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"contact"}]}
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -41,6 +41,7 @@ export default function ShopPage() {
|
|||||||
{"name":"Services","id":"services"},
|
{"name":"Services","id":"services"},
|
||||||
{"name":"Results","id":"metrics"},
|
{"name":"Results","id":"metrics"},
|
||||||
{"name":"Case Studies","id":"casestudies"},
|
{"name":"Case Studies","id":"casestudies"},
|
||||||
|
{"name":"SEO","id":"/seo"},
|
||||||
{"name":"Pricing","id":"pricing"},
|
{"name":"Pricing","id":"pricing"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"},
|
||||||
{"name":"Shop","id":"/shop"}
|
{"name":"Shop","id":"/shop"}
|
||||||
@@ -55,8 +56,8 @@ export default function ShopPage() {
|
|||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
logoText="PerformanceHub"
|
logoText="PerformanceHub"
|
||||||
columns={[
|
columns={[
|
||||||
{"items":[{"label":"Services","href":"services"},{"label":"SEO","href":"#"},{"label":"PPC Advertising","href":"#"},{"label":"Social Media","href":"#"}]},
|
{"items":[{"label":"Services","href":"services"},{"label":"SEO","href":"/seo"},{"label":"PPC Advertising","href":"#"},{"label":"Social Media","href":"#"}]},
|
||||||
{"items":[{"label":"Company","href":"#"},{"label":"About Us","href":"#"},{"label":"Case Studies","href":"casestudies"},{"label":"Careers","href":"#"}]},
|
{"items":[{"label":"Company","href":"#"},{"label":"About Us","href":"#"},{"label":"Case Studies","href":"/"},{"label":"Careers","href":"#"}]},
|
||||||
{"items":[{"label":"Resources","href":"#"},{"label":"Blog","href":"#"},{"label":"Guides","href":"#"},{"label":"Webinars","href":"#"}]},
|
{"items":[{"label":"Resources","href":"#"},{"label":"Blog","href":"#"},{"label":"Guides","href":"#"},{"label":"Webinars","href":"#"}]},
|
||||||
{"items":[{"label":"Legal","href":"#"},{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"contact"}]}
|
{"items":[{"label":"Legal","href":"#"},{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"contact"}]}
|
||||||
]}
|
]}
|
||||||
@@ -89,6 +90,7 @@ export default function ShopPage() {
|
|||||||
{"name":"Services","id":"services"},
|
{"name":"Services","id":"services"},
|
||||||
{"name":"Results","id":"metrics"},
|
{"name":"Results","id":"metrics"},
|
||||||
{"name":"Case Studies","id":"casestudies"},
|
{"name":"Case Studies","id":"casestudies"},
|
||||||
|
{"name":"SEO","id":"/seo"},
|
||||||
{"name":"Pricing","id":"pricing"},
|
{"name":"Pricing","id":"pricing"},
|
||||||
{"name":"Contact","id":"contact"},
|
{"name":"Contact","id":"contact"},
|
||||||
{"name":"Shop","id":"/shop"}
|
{"name":"Shop","id":"/shop"}
|
||||||
@@ -111,8 +113,8 @@ export default function ShopPage() {
|
|||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
logoText="PerformanceHub"
|
logoText="PerformanceHub"
|
||||||
columns={[
|
columns={[
|
||||||
{"items":[{"label":"Services","href":"services"},{"label":"SEO","href":"#"},{"label":"PPC Advertising","href":"#"},{"label":"Social Media","href":"#"}]},
|
{"items":[{"label":"Services","href":"services"},{"label":"SEO","href":"/seo"},{"label":"PPC Advertising","href":"#"},{"label":"Social Media","href":"#"}]},
|
||||||
{"items":[{"label":"Company","href":"#"},{"label":"About Us","href":"#"},{"label":"Case Studies","href":"casestudies"},{"label":"Careers","href":"#"}]},
|
{"items":[{"label":"Company","href":"#"},{"label":"About Us","href":"#"},{"label":"Case Studies","href":"/"},{"label":"Careers","href":"#"}]},
|
||||||
{"items":[{"label":"Resources","href":"#"},{"label":"Blog","href":"#"},{"label":"Guides","href":"#"},{"label":"Webinars","href":"#"}]},
|
{"items":[{"label":"Resources","href":"#"},{"label":"Blog","href":"#"},{"label":"Guides","href":"#"},{"label":"Webinars","href":"#"}]},
|
||||||
{"items":[{"label":"Legal","href":"#"},{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"contact"}]}
|
{"items":[{"label":"Legal","href":"#"},{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"contact"}]}
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter), sans-serif;
|
font-family: var(--font-work-sans), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-public-sans), sans-serif;
|
font-family: var(--font-open-sans), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,21 +2,21 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #f5f5f5;;
|
/* --background: #0a0a0a;;
|
||||||
--card: #ffffff;;
|
--card: #1a1a1a;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #e6f0ffe6;;
|
||||||
--primary-cta: #511f1f;;
|
--primary-cta: #1f5fb8;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #0e1a29;;
|
||||||
--accent: #e63946;;
|
--accent: #0798ff;;
|
||||||
--background-accent: #e8bea8;; */
|
--background-accent: #004a93;; */
|
||||||
|
|
||||||
--background: #f5f5f5;;
|
--background: #0a0a0a;;
|
||||||
--card: #ffffff;;
|
--card: #1a1a1a;;
|
||||||
--foreground: #1c1c1c;;
|
--foreground: #e6f0ffe6;;
|
||||||
--primary-cta: #511f1f;;
|
--primary-cta: #1f5fb8;;
|
||||||
--secondary-cta: #ffffff;;
|
--secondary-cta: #0e1a29;;
|
||||||
--accent: #e63946;;
|
--accent: #0798ff;;
|
||||||
--background-accent: #e8bea8;;
|
--background-accent: #004a93;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user