Skip to content

Commit ba00731

Browse files
committed
Update Free plan button copy and styles in onboarding plan selection screen
1 parent 7456422 commit ba00731

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

apps/dashboard/src/app/login/onboarding/ChoosePlan.tsx

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import { PricingCard } from "@/components/blocks/pricing-card";
44
import { Button } from "@/components/ui/button";
5-
import { ArrowRightIcon } from "lucide-react";
65
import { TitleAndDescription } from "./Title";
76

87
export function OnboardingChoosePlan(props: {
@@ -20,7 +19,7 @@ export function OnboardingChoosePlan(props: {
2019

2120
<div className="h-4" />
2221

23-
<div className="grid grid-cols-1 gap-6 md:grid-cols-2 md:gap-4">
22+
<div className="grid grid-cols-1 gap-6 md:grid-cols-2 md:gap-5">
2423
<PricingCard
2524
billingPlan="starter"
2625
teamSlug={props.teamSlug}
@@ -51,17 +50,20 @@ export function OnboardingChoosePlan(props: {
5150
/>
5251
</div>
5352

54-
<div className="h-4" />
53+
<div className="h-5" />
5554

56-
<div className="flex justify-center">
57-
<Button
58-
variant="link"
59-
onClick={props.skipPlan}
60-
className="inline-flex translate-x-2 items-center gap-2 text-muted-foreground"
61-
>
62-
Continue with Free Plan <ArrowRightIcon className="size-4" />
63-
</Button>
64-
</div>
55+
<Button
56+
variant="outline"
57+
onClick={props.skipPlan}
58+
className="relative h-auto w-full items-center gap-2 rounded-xl bg-muted/50 py-2.5"
59+
>
60+
<span className="flex flex-col gap-0.5">
61+
<span className="text-base text-foreground">Skip for Now</span>
62+
<span className="text-muted-foreground text-sm">
63+
Limited Access To Services
64+
</span>
65+
</span>
66+
</Button>
6567
</div>
6668
);
6769
}

0 commit comments

Comments
 (0)