diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 101478b..e759b1d 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -14,13 +14,15 @@ export default function AboutPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
+ { name: "Pricing", id: "/pricing" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const navButton = {
- text: "Get Started", href: "/contact"};
+ text: "Get Started", href: "/contact"
+ };
return (
@@ -89,22 +92,28 @@ export default function AboutPage() {
features={[
{
icon: Search,
- title: "SEO & SEM", description: "Dominate search rankings and drive qualified traffic to your website"},
+ title: "SEO & SEM", description: "Dominate search rankings and drive qualified traffic to your website"
+ },
{
icon: Share2,
- title: "Social Media Marketing", description: "Build engaged communities and amplify your brand across platforms"},
+ title: "Social Media Marketing", description: "Build engaged communities and amplify your brand across platforms"
+ },
{
icon: Mail,
- title: "Email Marketing", description: "Convert leads into loyal customers with targeted campaigns"},
+ title: "Email Marketing", description: "Convert leads into loyal customers with targeted campaigns"
+ },
{
icon: Video,
- title: "Content Creation", description: "Compelling videos, graphics, and copy that resonate with your audience"},
+ title: "Content Creation", description: "Compelling videos, graphics, and copy that resonate with your audience"
+ },
{
icon: BarChart3,
- title: "Analytics & Reporting", description: "Transparent insights and actionable data to guide strategy"},
+ title: "Analytics & Reporting", description: "Transparent insights and actionable data to guide strategy"
+ },
{
icon: Zap,
- title: "Performance Marketing", description: "Optimize spend and maximize conversions with precision targeting"},
+ title: "Performance Marketing", description: "Optimize spend and maximize conversions with precision targeting"
+ },
]}
/>
@@ -118,7 +127,8 @@ export default function AboutPage() {
textboxLayout="default"
useInvertedBackground={true}
names={[
- "TechFlow Inc", "Aurora Retail", "Momentum Finance", "Zenith Design", "Pulse Health", "Nexus Commerce", "Vertex Solutions", "Horizon Media"]}
+ "TechFlow Inc", "Aurora Retail", "Momentum Finance", "Zenith Design", "Pulse Health", "Nexus Commerce", "Vertex Solutions", "Horizon Media"
+ ]}
speed={50}
showCard={true}
/>
@@ -133,13 +143,16 @@ export default function AboutPage() {
description="Let's schedule a strategic consultation to discuss your goals, challenges, and how DigitalFlow can accelerate your growth."
buttons={[
{
- text: "Schedule Consultation", href: "/contact"},
+ text: "Schedule Consultation", href: "/contact"
+ },
{
- text: "View Services", href: "/services"},
+ text: "View Services", href: "/services"
+ },
]}
buttonAnimation="slide-up"
background={{
- variant: "animated-grid"}}
+ variant: "animated-grid"
+ }}
useInvertedBackground={false}
/>
@@ -148,9 +161,11 @@ export default function AboutPage() {
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 8f2c811..e097193 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -11,6 +11,7 @@ export default function ContactPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
+ { name: "Pricing", id: "/pricing" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
@@ -58,13 +59,16 @@ export default function ContactPage() {
description="Let's schedule a strategic consultation to discuss your goals, challenges, and how DigitalFlow can accelerate your growth."
buttons={[
{
- text: "Schedule Consultation", href: "/contact"},
+ text: "Schedule Consultation", href: "/contact"
+ },
{
- text: "View Services", href: "/services"},
+ text: "View Services", href: "/services"
+ },
]}
buttonAnimation="slide-up"
background={{
- variant: "animated-grid"}}
+ variant: "animated-grid"
+ }}
useInvertedBackground={false}
/>
@@ -73,9 +77,11 @@ export default function ContactPage() {
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b94b82f..a6e3465 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -33,12 +33,14 @@ export default function HomePage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
+ { name: "Pricing", id: "/pricing" },
{ name: "Portfolio", id: "#portfolio" },
{ name: "About", id: "#about" },
{ name: "Contact", id: "#contact" },
]}
button={{
- text: "Get Started", href: "#contact"}}
+ text: "Get Started", href: "#contact"
+ }}
/>
@@ -104,13 +106,16 @@ export default function HomePage() {
features={[
{
icon: BarChart3,
- title: "SEO & SEM", description: "Dominate search rankings and drive qualified traffic to your website"},
+ title: "SEO & SEM", description: "Dominate search rankings and drive qualified traffic to your website"
+ },
{
icon: TrendingUp,
- title: "Social Media Marketing", description: "Build engaged communities and amplify your brand across platforms"},
+ title: "Social Media Marketing", description: "Build engaged communities and amplify your brand across platforms"
+ },
{
icon: HeadphonesIcon,
- title: "Email Marketing", description: "Convert leads into loyal customers with targeted campaigns"},
+ title: "Email Marketing", description: "Convert leads into loyal customers with targeted campaigns"
+ },
]}
/>
@@ -146,11 +151,14 @@ export default function HomePage() {
@@ -204,9 +219,11 @@ export default function HomePage() {
diff --git a/src/app/portfolio/page.tsx b/src/app/portfolio/page.tsx
index 04effd7..460c757 100644
--- a/src/app/portfolio/page.tsx
+++ b/src/app/portfolio/page.tsx
@@ -13,13 +13,15 @@ export default function PortfolioPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
+ { name: "Pricing", id: "/pricing" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const navButton = {
- text: "Get Started", href: "/contact"};
+ text: "Get Started", href: "/contact"
+ };
return (
@@ -109,9 +123,11 @@ export default function PortfolioPage() {
diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx
new file mode 100644
index 0000000..03b9182
--- /dev/null
+++ b/src/app/pricing/page.tsx
@@ -0,0 +1,104 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
+import PricingCardOne from "@/components/sections/pricing/PricingCardOne";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
+import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
+import Link from "next/link";
+import { Zap, Rocket, Star, Crown } from "lucide-react";
+
+export default function PricingPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
index 831a6ea..0f06e0a 100644
--- a/src/app/services/page.tsx
+++ b/src/app/services/page.tsx
@@ -29,12 +29,14 @@ export default function ServicesPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
+ { name: "Pricing", id: "/pricing" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{
- text: "Get Started", href: "#contact"}}
+ text: "Get Started", href: "#contact"
+ }}
/>
@@ -50,22 +52,28 @@ export default function ServicesPage() {
features={[
{
icon: Search,
- title: "SEO & SEM", description: "Dominate search rankings and drive qualified traffic to your website"},
+ title: "SEO & SEM", description: "Dominate search rankings and drive qualified traffic to your website"
+ },
{
icon: Share2,
- title: "Social Media Marketing", description: "Build engaged communities and amplify your brand across platforms"},
+ title: "Social Media Marketing", description: "Build engaged communities and amplify your brand across platforms"
+ },
{
icon: Mail,
- title: "Email Marketing", description: "Convert leads into loyal customers with targeted campaigns"},
+ title: "Email Marketing", description: "Convert leads into loyal customers with targeted campaigns"
+ },
{
icon: Video,
- title: "Content Creation", description: "Compelling videos, graphics, and copy that resonate with your audience"},
+ title: "Content Creation", description: "Compelling videos, graphics, and copy that resonate with your audience"
+ },
{
icon: BarChart3,
- title: "Analytics & Reporting", description: "Transparent insights and actionable data to guide strategy"},
+ title: "Analytics & Reporting", description: "Transparent insights and actionable data to guide strategy"
+ },
{
icon: Zap,
- title: "Performance Marketing", description: "Optimize spend and maximize conversions with precision targeting"},
+ title: "Performance Marketing", description: "Optimize spend and maximize conversions with precision targeting"
+ },
]}
/>
@@ -77,19 +85,22 @@ export default function ServicesPage() {
id: "starter", badge: "Great to Start", badgeIcon: Rocket,
price: "$2,500", subtitle: "Per month • Billed monthly", buttons: [{ text: "Get Started", href: "#contact" }],
features: [
- "SEO optimization for 5 keywords", "Social media management (2 platforms)", "Monthly reporting and analytics", "Email support", "Content calendar planning"],
+ "SEO optimization for 5 keywords", "Social media management (2 platforms)", "Monthly reporting and analytics", "Email support", "Content calendar planning"
+ ],
},
{
id: "professional", badge: "Most Popular", badgeIcon: Star,
price: "$5,000", subtitle: "Per month • Billed monthly", buttons: [{ text: "Get Started", href: "#contact" }],
features: [
- "SEO optimization for 20+ keywords", "Social media management (4 platforms)", "PPC campaign management", "Weekly reporting and strategy calls", "Video content creation (2/month)", "Email and phone support"],
+ "SEO optimization for 20+ keywords", "Social media management (4 platforms)", "PPC campaign management", "Weekly reporting and strategy calls", "Video content creation (2/month)", "Email and phone support"
+ ],
},
{
id: "enterprise", badge: "Maximum Growth", badgeIcon: Crown,
price: "Custom", subtitle: "Per month • Let's discuss", buttons: [{ text: "Schedule Call", href: "#contact" }],
features: [
- "Full-service digital marketing suite", "Dedicated account team", "Custom strategy and reporting", "Influencer partnerships", "Brand development and positioning", "24/7 priority support", "Quarterly business reviews"],
+ "Full-service digital marketing suite", "Dedicated account team", "Custom strategy and reporting", "Influencer partnerships", "Brand development and positioning", "24/7 priority support", "Quarterly business reviews"
+ ],
},
]}
animationType="slide-up"
@@ -123,9 +134,11 @@ export default function ServicesPage() {