From 21660c87135d40b198013b9153478a0ef9509ce9 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:01:24 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 43 ++++++++++++++++++++++++++++-------------- 1 file changed, 29 insertions(+), 14 deletions(-) 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() { -- 2.49.1 From c6f6f84e329a9a15ae2a8ee984a149c76de2b00f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:01:24 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) 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() { -- 2.49.1 From 0c85c6454c8c8768a256b7d6cc2416ab438053ad Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:01:25 +0000 Subject: [PATCH 3/6] Update src/app/page.tsx --- src/app/page.tsx | 49 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 33 insertions(+), 16 deletions(-) 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() { -- 2.49.1 From b0c8cd50e7704080f6861e99f49712b801bd872f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:01:26 +0000 Subject: [PATCH 4/6] Update src/app/portfolio/page.tsx --- src/app/portfolio/page.tsx | 46 +++++++++++++++++++++++++------------- 1 file changed, 31 insertions(+), 15 deletions(-) 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() { -- 2.49.1 From 3a83911086847ce8e4367cd47171ca629964c15e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:01:27 +0000 Subject: [PATCH 5/6] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 104 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 src/app/pricing/page.tsx 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 -- 2.49.1 From 88f25a2b3e70ff344fb67a0d92785e32664b80be Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:01:29 +0000 Subject: [PATCH 6/6] Update src/app/services/page.tsx --- src/app/services/page.tsx | 37 +++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) 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() { -- 2.49.1