diff --git a/app/pricing/page.js b/app/pricing/page.js index 3f278a2..5096b00 100644 --- a/app/pricing/page.js +++ b/app/pricing/page.js @@ -3,6 +3,93 @@ import { Check, Star, Zap, Crown } from "lucide-react"; import Image from "next/image"; export default function PricingPage() { + const pricingPlans = [ + { + id: 1, + name: "Starter Care", + price: "$175", + description: "Great for getting started or low-maintenance needs.", + buttonText: "Buy Now", + isPopular: false, + features: [ + "Custom onboarding", + "Business grade website hosting", + "24/7 website protection", + "Code & speed optimization", + "Google product integrations", + "On-Demand monthly revisions", + "Free SSL certificate", + "50GB of storage", + "Weekly Backups", + ], + stars: 1, + }, + { + id: 2, + name: "Steady Support", + price: "$250", + description: "Ideal for businesses needing regular updates.", + buttonText: "Get In Touch", + isPopular: true, + features: [ + "Custom onboarding", + "Business grade website hosting", + "24/7 website protection", + "Code & speed optimization", + "Google product integrations", + "On-Demand bi-weekly revisions", + "Free SSL certificate", + "100GB of additional storage", + "Daily Backups", + "Site performance investigations", + "Form submission monitoring", + "Proprietary CMS Integration", + ], + stars: 2, + }, + { + id: 3, + name: "Total Coverage", + price: "$400", + description: "Perfect for hands-off clients who want it all handled.", + buttonText: "Get In Touch", + isPopular: false, + features: [ + "Custom onboarding", + "Business grade website hosting", + "24/7 website protection", + "Code & speed optimization", + "Google product integrations", + "Unlimited revisions", + "Free SSL certificate", + "100GB of additional storage", + "Daily Backups + Off-site Backups", + "Automated backup protection", + "Site performance investigations", + "Form submission monitoring", + "Proprietary CMS Integration", + "Dedicated senior account manager", + ], + stars: 3, + }, + ]; + + const renderStars = (count) => { + const stars = []; + for (let i = 0; i < 3; i++) { + stars.push( + Star + ); + } + return stars; + }; + return (
@@ -10,315 +97,51 @@ export default function PricingPage() { PLANS AND PRICING -

Full-service web management built to outrun the competition.

+

+ Full-service web management built to outrun the competition. +

- {/* Essential Plan */} -
-
-

Starter Care

-
- - - + {pricingPlans.map((plan) => ( +
+ {plan.isPopular && ( +
+ Best Value +
+ )} +
+

{plan.name}

+
+ {renderStars(plan.stars)} +
+

{plan.description}

+
+
{plan.price}
+
USD /mo
+
+
-

- Great for getting started or low-maintenance needs. -

-
-
$175
-
USD /mo
-
- -
-
-
-
- - Custom onboarding -
-
- - - Business grade website hosting - -
-
- - 24/7 website protection -
-
- - Code & speed optimization -
-
- - Google product integrations -
-
- - On-Demand monthly revisions -
-
- - Free SSL certificate -
-
- - 50GB of storage -
-
- - Weekly Backups +
+
+ {plan.features.map((feature, index) => ( +
+ + {feature} +
+ ))}
-
- - {/* Core Plan */} -
-
- Best Value -
-
-

Steady Support

-
- - - -
-

- Ideal for businesses needing regular updates. -

-
-
$250
-
USD /mo
-
- -
-
-
-
- - Custom onboarding -
-
- - - Business grade website hosting - -
-
- - 24/7 website protection -
-
- - Code & speed optimization -
-
- - Google product integrations -
-
- - On-Demand bi-weekly revisions -
-
- - Free SSL certificate -
-
- - 100GB of additional storage -
-
- - Daily Backups -
-
- - - Site performance investigations - -
-
- - Form submission monitoring -
-
- - Proprietary CMS Integration -
-
- -
-
Advisory Services
-
-
- - - Prioritized senior technical support - -
-
- - - Increased Scope for On-Demand revisions - -
-
-
- -
-
- Performance & Insights -
-
-
- - Monthly Site Health Reports -
-
- - 99.99% uptime SLA -
-
-
-
-
- - {/* Enterprise Plan */} -
-
-

Total Coverage

-
- - - -
-

- Perfect for hands-off clients who want it all handled. -

-
-
$400
-
USD /mo
-
- -
-
-
-
- - Custom onboarding -
-
- - - Business grade website hosting - -
-
- - 24/7 website protection -
-
- - Code & speed optimization -
-
- - Google product integrations -
-
- - Unlimited revisions -
-
- - Automated backup protection -
-
- - Free SSL certificate -
-
- - 100GB of additional storage -
-
- - - Daily Backups + Off-site Backups - -
-
- - - Site performance investigations - -
-
- - Form submission monitoring -
-
- - Proprietary CMS Integration -
-
- - - Dedicated senior account manager - -
-
-
-
+ ))}