File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed
apps/dashboard/src/app/login/onboarding Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change 22
33import { PricingCard } from "@/components/blocks/pricing-card" ;
44import { Button } from "@/components/ui/button" ;
5- import { ArrowRightIcon } from "lucide-react" ;
65import { TitleAndDescription } from "./Title" ;
76
87export 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}
You can’t perform that action at this time.
0 commit comments