Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,6 @@ const config = {
label: "LinkedIn",
href: "https://www.linkedin.com/company/wopee",
},
{
label: "Meetup",
href: "https://www.meetup.com/wopee-io/",
},
{
label: "GitHub",
href: "https://github.com/Wopee-io",
Expand Down
12 changes: 5 additions & 7 deletions src/components/home-page/HomeDeploymentOptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,11 @@ const DeploymentCard = ({
<p className="text-lg leading-relaxed opacity-90">{description}</p>
</div>

<Link href={buttonHref} className="group mt-8">
<ButtonPrimary
className="w-full font-semibold rounded-lg px-8 py-4 text-lg !bg-primary-wopee !text-secondary-wopee group-hover:!text-white group-hover:!bg-secondary-wopee group-hover:!border-primary-wopee"
label={buttonText}
href={buttonHref}
/>
</Link>
<ButtonPrimary
className="w-full font-semibold rounded-lg px-8 py-4 text-lg !bg-primary-wopee !text-secondary-wopee group-hover:!text-white group-hover:!bg-secondary-wopee group-hover:!border-primary-wopee"
label={buttonText}
href={buttonHref}
/>
</div>
);
};
Expand Down
14 changes: 2 additions & 12 deletions src/components/pricing/PlanCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const PlanCards: PlanCardT[] = [
title: "Starter",
img: require("@site/static/img/subscription-plans/starter.png").default,
price: "19 €",
features: ["1.000 test steps per project/month"],
features: ["1.000 test steps/month"],
featured: false,
button: (
<Link to="https://cmd.wopee.io">
Expand Down Expand Up @@ -94,19 +94,9 @@ export default function PlanCard({
{title === "Ultimate" || title === "Enterprise" ? (
""
) : (
<small className="font-normal">
per {title === "Starter" ? "project/" : ""}user/month
</small>
<small className="font-normal">per user/month</small>
)}
</h4>
<small className="text-md md:text-lg">
{features.map((feature, idx) => (
<span key={idx}>
{" "}
{feature} <br />
</span>
))}
</small>
</div>
{button}
</div>
Expand Down
48 changes: 35 additions & 13 deletions src/components/pricing/PlanComparison.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,16 @@ import ButtonGradientOutline from "../buttons/ButtonGradientOutline";
const planFeatureArray: PlanComparisonRowProps[] = [
{
feature: "Test steps",
starter: "1.000 / project / month / user",
basic: "10.000 / month / user",
premium: "100.000 / month / user",
starter: "1.000 / user / month",
basic: "10.000 / user / month",
premium: "100.000 / user / month",
enterprise: "Unlimited",
},
{
feature: "Projects",
starter: "10",
basic: "100",
premium: "Unlimited",
enterprise: "Unlimited",
},
{
Expand All @@ -21,29 +28,44 @@ const planFeatureArray: PlanComparisonRowProps[] = [
},
{
feature: "Autonomous Testing",
starter: "Check",
basic: "Check",
premium: "Check",
enterprise: "Check",
},
{
feature: "Testing Bot",
feature: "AI Testing Agent",
subFeature: true,
basic: "gen 2.0",
premium: "gen 2.0",
enterprise: "gen 3.0 (preview)",
starter: "5 daily",
basic: "100 monthly",
premium: "250 monthly",
enterprise: "Unlimited",
},
{
feature: "Videos and traces from testing",
feature: "Videos and traces",
subFeature: true,
enterprise: "Check",
},
{
feature: "Playwright Integration",
subFeature: true,
enterprise: "Early access",
starter: "Check",
basic: "Check",
premium: "Check",
enterprise: "Check",
},
{
feature: "Robot Framework Integration",
subFeature: true,
enterprise: "Check",
},
{
feature: "WebdriverIO Integration",
subFeature: true,
enterprise: "Check",
},
{
feature: "Parallel test runs",
feature: "Cypress Integration",
subFeature: true,
enterprise: "Check",
},
Expand Down Expand Up @@ -93,9 +115,9 @@ const planFeatureArray: PlanComparisonRowProps[] = [
{
feature: "CI/CD Integration",
subFeature: true,
starter: "VT only",
basic: "VT only",
premium: "VT only",
starter: "Check",
basic: "Check",
premium: "Check",
enterprise: "Check",
},
{
Expand Down