Files
calendar/apps/web/components/settings/platform/dashboard/NoPlatformPlan.tsx
T
Rajiv SahalandGitHub 7759e6a029 chore: update platform billing plans (#16233)
* update links for no platform plan

* sync platform pricing with one we have in website
2024-08-21 20:14:15 +05:30

36 lines
991 B
TypeScript

import { EmptyScreen, Button } from "@calcom/ui";
export default function NoPlatformPlan() {
return (
<EmptyScreen
Icon="credit-card"
headline="Subscription needed"
description="You are not subscribed to a Platform plan."
buttonRaw={
<div className="flex gap-2">
<Button
className="hover:bg-slate-300 hover:text-black"
color="secondary"
href="/settings/platform/new">
Subscribe
</Button>
<Button
color="secondary"
className="hover:bg-slate-300 hover:text-black"
href="https://cal.com/platform/pricing"
target="_blank">
Go to Pricing
</Button>
<Button
color="secondary"
className="hover:bg-slate-300 hover:text-black"
href="https://cal.com/sales"
target="_blank">
Contact Sales
</Button>
</div>
}
/>
);
}