diff --git a/app/api/seo-check/route.js b/app/api/seo-check/route.js index 5b09cb2..252a369 100644 --- a/app/api/seo-check/route.js +++ b/app/api/seo-check/route.js @@ -54,7 +54,6 @@ export async function POST(request) { let page; let finalUrl; - let html; let securityHeaders = {}; let response; diff --git a/app/pricing/page.js b/app/pricing/page.js index b25295e..3f278a2 100644 --- a/app/pricing/page.js +++ b/app/pricing/page.js @@ -1,157 +1,326 @@ import Layout from "@/components/layout/Layout"; import { Check, Star, Zap, Crown } from "lucide-react"; -import Link from "next/link"; - -const plans = [ - { - name: "Starter", - price: 150, - description: "Perfect for small businesses getting started", - icon: Zap, - features: [ - "Basic invoicing & billing", - "Payment processing", - "Client portal access", - "Email support", - "Basic reporting", - "Up to 50 clients", - "Standard templates", - ], - popular: false, - }, - { - name: "Professional", - price: 250, - description: "Advanced features for growing businesses", - icon: Star, - features: [ - "Advanced invoicing & billing", - "Live chat support", - "Payment history & receipts", - "Support ticket system", - "Knowledge base access", - "Video tutorials", - "Product upgrade system", - "Unlimited clients", - "Custom branding", - "Advanced reporting", - "API access", - ], - popular: true, - }, - { - name: "Enterprise", - price: "Custom", - description: "Tailored solutions for large organizations", - icon: Crown, - features: [ - "Everything in Professional", - "Custom integrations", - "Dedicated account manager", - "Priority support", - "Custom workflows", - "Advanced AI features", - "ClickUp integration", - "White-label solution", - "Custom training", - "SLA guarantee", - ], - popular: false, - }, -]; +import Image from "next/image"; export default function PricingPage() { return ( -
-
-
-

- Simple, Transparent Pricing -

-

- Choose the perfect plan for your business. All plans include our - core CRM features with no hidden fees. -

-
- -
- {plans.map((plan) => { - const Icon = plan.icon; - return ( -
- {plan.popular && ( -
- Most Popular -
- )} -
-
- -
-

- {plan.name} -

-

{plan.description}

-
- - {typeof plan.price === "number" - ? `$${plan.price}` - : plan.price} - - {typeof plan.price === "number" && ( - /month - )} -
-
-
-
    - {plan.features.map((feature, index) => ( -
  • - - {feature} -
  • - ))} -
-
- - {plan.name === "Enterprise" - ? "Contact Sales" - : "Get Started"} - +
+
+ + PLANS AND PRICING + +

Full-service web management built to outrun the competition.

+
+
+
+
+ {/* Essential Plan */} +
+
+

Starter Care

+
+ + + +
+

+ 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 +
+
+
-
-

- All plans include 14-day free trial • No setup fees • Cancel - anytime -

- {/* - View Client Area Demo → - */} + {/* 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 + +
+
+
-
+
); } diff --git a/public/assets/img/icon/icon-rank-gradient.webp b/public/assets/img/icon/icon-rank-gradient.webp new file mode 100644 index 0000000..f7341ba Binary files /dev/null and b/public/assets/img/icon/icon-rank-gradient.webp differ diff --git a/public/assets/img/icon/icon-rank-removebg-preview.png b/public/assets/img/icon/icon-rank-removebg-preview.png new file mode 100644 index 0000000..66ce294 Binary files /dev/null and b/public/assets/img/icon/icon-rank-removebg-preview.png differ diff --git a/public/assets/img/icon/icon-rank.webp b/public/assets/img/icon/icon-rank.webp new file mode 100644 index 0000000..57895fc Binary files /dev/null and b/public/assets/img/icon/icon-rank.webp differ