diff --git a/src/pages/PricingPage.tsx b/src/pages/PricingPage.tsx
index ae8eeae..c085ff8 100644
--- a/src/pages/PricingPage.tsx
+++ b/src/pages/PricingPage.tsx
@@ -1,112 +1,144 @@
-import { routes } from "@/routes";
-import NavbarCentered from "@/components/ui/NavbarCentered";
import PricingCenteredCards from "@/components/sections/pricing/PricingCenteredCards";
-import FooterSimple from "@/components/sections/footer/FooterSimple";
+import { Check } from "lucide-react";
+import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
const plans = [
{
- name: "Basic",
- price: "$10",
- frequency: "month",
+ tag: "Basic",
+ price: "€499/mo",
+ description: "Ideal for startups and small businesses looking to establish an online presence.",
features: [
- "1 User",
- "10GB Storage",
- "Email Support",
- "Basic Analytics",
- "Community Access",
+ "Basic SEO Optimization",
+ "Social Media Setup",
+ "Content Calendar (2 posts/week)",
+ "Monthly Performance Report",
],
- buttonText: "Start Basic",
- buttonHref: "#",
- highlighted: false,
+ primaryButton: { text: "Get Started", href: "/#contact" },
},
{
- name: "Pro",
- price: "$50",
- frequency: "month",
+ tag: "Pro",
+ price: "€999/mo",
+ description: "Perfect for growing businesses aiming for significant digital growth and engagement.",
features: [
- "5 Users",
- "100GB Storage",
- "Chat Support",
- "Advanced Analytics",
- "Priority Community Access",
+ "Advanced SEO Strategy",
+ "Full Social Media Management",
+ "Content Creation (4 posts/week)",
+ "Bi-Weekly Performance Reports",
+ "Email Marketing Campaigns",
],
- buttonText: "Go Pro",
- buttonHref: "#",
- highlighted: true,
+ primaryButton: { text: "Choose Pro", href: "/#contact" },
},
{
- name: "Enterprise",
+ tag: "Enterprise",
price: "Custom",
- frequency: "",
+ description: "Tailored solutions for large enterprises with complex marketing needs and ambitious goals.",
features: [
- "Unlimited Users",
- "Unlimited Storage",
- "24/7 Phone Support",
- "Custom Integrations",
"Dedicated Account Manager",
+ "Comprehensive Digital Strategy",
+ "Unlimited Content Creation",
+ "Weekly Performance Reviews",
+ "Advanced Analytics & Insights",
+ "PR & Influencer Outreach",
],
- buttonText: "Contact Us",
- buttonHref: "/contact",
- highlighted: false,
+ primaryButton: { text: "Contact Us", href: "/#contact" },
},
];
export default function PricingPage() {
return (
-
-
({ name: r.label, href: r.path }))}
- ctaButton={{ text: "Get Started", href: "/contact" }}
- />
+
+
-
-
-
-
-
-
Compare Plans
-
-
Feature
-
Basic
-
Pro
-
Enterprise
-
-
Users
-
1
-
5
-
Unlimited
-
-
Storage
-
10GB
-
100GB
-
Unlimited
-
-
Support
-
Email
-
Chat
-
24/7 Phone
-
-
Analytics
-
Basic
-
Advanced
-
Custom
+
+
+
+
+
+
Detailed Feature Comparison
+
+ Compare our plans side-by-side to find the perfect fit for your business needs.
+
+
+
+
+
+
+
+ | Features |
+ Basic |
+ Pro |
+ Enterprise |
+
+
+
+
+ | SEO Strategy |
+ Basic |
+ Advanced |
+ Comprehensive |
+
+
+ | Social Media Posts |
+ 2 per week |
+ 4 per week |
+ Unlimited |
+
+
+ | Reporting |
+ Monthly |
+ Bi-Weekly |
+ Weekly |
+
+
+ | Email Marketing |
+ - |
+
+
+
+
+ |
+
+
+
+
+ |
+
+
+ | PR & Influencer Outreach |
+ - |
+ - |
+
+
+
+
+ |
+
+
+ | Dedicated Manager |
+ - |
+ - |
+
+
+
+
+ |
+
+
+
+
-
-
-
-
-
({ name: r.label, href: r.path }))}
- copyright="© 2024 Brand. All rights reserved."
- />
+
+
+
);
}
\ No newline at end of file