Bob AI: Populate src/pages/PricingPage.tsx (snippet builder, 1 sections)

This commit is contained in:
2026-04-24 16:42:16 +03:00
parent 1ace1e78c6
commit 73bdbb6349

View File

@@ -1,89 +1,16 @@
import React from "react";
import { routes } from "@/routes";
import NavbarCentered from "@/components/ui/NavbarCentered"; // Corrected import path
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import PricingHighlightedCards from "@/components/sections/pricing/PricingHighlightedCards";
import FaqSimple from "@/components/sections/faq/FaqSimple";
import FooterSimple from "@/components/sections/footer/FooterSimple";
const PricingPage: React.FC = () => {
export default function PricingPage() {
return (
<div className="flex min-h-screen flex-col bg-background text-foreground">
<NavbarCentered
logo="Webild"
navItems={routes.map((r) => ({ name: r.label, href: r.path }))}
ctaButton={{ text: "Get Started", href: "/contact" }}
<>
<PricingHighlightedCards
tag="Flexible Pricing"
title="Unlock Your Team's Full Potential with FlowSync"
description="FlowSync offers tailored plans designed to empower teams of all sizes. Choose the perfect solution to streamline your workflows, enhance collaboration, and consistently meet your deadlines with unparalleled ease."
primaryButton={{"text":"Get Started Today","href":"/signup"}}
secondaryButton={{"text":"Compare All Features","href":"/features"}}
plans={[{"tag":"Starter","price":"$19/month","description":"Ideal for small teams and startups looking to organize tasks and improve basic collaboration.","features":["Unlimited tasks & projects","Basic workflow automation","Shared calendars & deadlines","Email & in-app notifications","Up to 5 team members"],"primaryButton":{"text":"Choose Starter","href":"/signup?plan=starter"},"secondaryButton":{"text":"Learn More","href":"#starter-details"}},{"tag":"Pro","price":"$49/month","description":"Designed for growing teams needing advanced tools for project management and enhanced productivity.","features":["Everything in Starter, plus:","Advanced analytics & reporting","Customizable workflows & templates","Priority support","Integrations with popular apps","Up to 20 team members"],"highlight":"Most Popular","primaryButton":{"text":"Choose Pro","href":"/signup?plan=pro"},"secondaryButton":{"text":"Learn More","href":"#pro-details"}},{"tag":"Enterprise","price":"Custom","description":"Comprehensive solution for large organizations requiring robust security, scalability, and dedicated support.","features":["Everything in Pro, plus:","Single Sign-On (SSO)","Dedicated account manager","Advanced security & compliance","Onboarding & training","Unlimited team members"],"primaryButton":{"text":"Contact Sales","href":"/contact-sales"},"secondaryButton":{"text":"Request a Demo","href":"/demo"}}]}
/>
<main className="flex-grow">
<HeroBillboard
title="Flexible Plans for Every Business"
description="Choose the perfect plan that scales with your needs, from startups to enterprises."
primaryCta={{ text: "View Features", href: "/features" }}
secondaryCta={{ text: "Contact Sales", href: "/contact" }}
/>
<PricingHighlightedCards
title="Simple & Transparent Pricing"
description="No hidden fees, just straightforward plans designed to help you succeed."
plans={[
{
name: "Starter",
price: "$29",
frequency: "per month",
features: ["5 Projects", "Basic Analytics", "Community Support", "1 User"],
buttonText: "Start Free Trial",
buttonHref: "/signup",
highlighted: false,
},
{
name: "Pro",
price: "$99",
frequency: "per month",
features: ["Unlimited Projects", "Advanced Analytics", "Priority Support", "5 Users", "Custom Integrations"],
buttonText: "Get Started",
buttonHref: "/signup",
highlighted: true,
},
{
name: "Enterprise",
price: "Custom",
frequency: "quote",
features: ["All Pro features", "Dedicated Account Manager", "SLA & Uptime Guarantee", "Unlimited Users", "On-premise deployment"],
buttonText: "Contact Sales",
buttonHref: "/contact",
highlighted: false,
},
]}
/>
<FaqSimple
title="Frequently Asked Questions"
description="Find answers to common questions about our pricing and plans."
faqs={[
{
question: "Can I change my plan later?",
answer: "Yes, you can upgrade or downgrade your plan at any time directly from your account settings.",
},
{
question: "What payment methods do you accept?",
answer: "We accept all major credit cards, including Visa, MasterCard, American Express, and Discover.",
},
{
question: "Do you offer a free trial?",
answer: "Yes, the Starter plan comes with a 14-day free trial. No credit card required to start.",
},
]}
/>
</main>
<FooterSimple
logo="Webild"
description="Build your web presence with ease."
socialLinks={[
{ name: "Twitter", href: "#" },
{ name: "LinkedIn", href: "#" },
]}
copyright="© 2024 Webuild. All rights reserved."
/>
</div>
</>
);
};
export default PricingPage;
}