11"use client" ;
22
3+ import { TextDivider } from "@/components/TextDivider" ;
34import { PricingCard } from "@/components/blocks/pricing-card" ;
45import { Button } from "@/components/ui/button" ;
5- import { ArrowRightIcon } from "lucide-react" ;
66import { TitleAndDescription } from "./Title" ;
77
88export function OnboardingChoosePlan ( props : {
@@ -20,7 +20,7 @@ export function OnboardingChoosePlan(props: {
2020
2121 < div className = "h-4" />
2222
23- < div className = "grid grid-cols-1 gap-6 md:grid-cols-2 md:gap-4 " >
23+ < div className = "grid grid-cols-1 gap-6 md:grid-cols-2 md:gap-5 " >
2424 < PricingCard
2525 billingPlan = "starter"
2626 teamSlug = { props . teamSlug }
@@ -51,17 +51,20 @@ export function OnboardingChoosePlan(props: {
5151 />
5252 </ div >
5353
54- < div className = "h -4" />
54+ < TextDivider text = "OR" className = "my -4" />
5555
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 >
56+ < Button
57+ variant = "outline"
58+ onClick = { props . skipPlan }
59+ className = "relative h-auto w-full items-center gap-2 rounded-xl bg-muted/50 py-2.5"
60+ >
61+ < span className = "flex flex-col gap-0.5" >
62+ < span className = "text-base text-foreground" > Skip for now</ span >
63+ < span className = "text-muted-foreground text-sm" >
64+ You will have limited access to services
65+ </ span >
66+ </ span >
67+ </ Button >
6568 </ div >
6669 ) ;
6770}
0 commit comments