0aa595ddac
* fix: update enterprise sales URL from i.cal.com to go.cal.com - Update EnterprisePage contact sales button URL - Update TeamList admin tools learn more URL - Update platform pricing enterprise redirect URL - Update documentation example URL - All URLs now point to go.cal.com/enterprise Co-Authored-By: peer@cal.com <peer@cal.com> * Apply suggestions from code review --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
72 lines
2.3 KiB
TypeScript
72 lines
2.3 KiB
TypeScript
"use client";
|
|
|
|
import Shell from "@calcom/features/shell/Shell";
|
|
import { UpgradeTip } from "@calcom/features/tips";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { Button } from "@calcom/ui/components/button";
|
|
import { ButtonGroup } from "@calcom/ui/components/buttonGroup";
|
|
import { Icon } from "@calcom/ui/components/icon";
|
|
|
|
export default function EnterprisePage() {
|
|
const { t } = useLocale();
|
|
|
|
const features = [
|
|
{
|
|
icon: <Icon name="globe" className="h-5 w-5 text-red-500" />,
|
|
title: t("branded_subdomain"),
|
|
description: t("branded_subdomain_description"),
|
|
},
|
|
{
|
|
icon: <Icon name="chart-bar" className="h-5 w-5 text-blue-500" />,
|
|
title: t("org_insights"),
|
|
description: t("org_insights_description"),
|
|
},
|
|
{
|
|
icon: <Icon name="paintbrush" className="h-5 w-5 text-pink-500" />,
|
|
title: t("extensive_whitelabeling"),
|
|
description: t("extensive_whitelabeling_description"),
|
|
},
|
|
{
|
|
icon: <Icon name="users" className="h-5 w-5 text-orange-500" />,
|
|
title: t("unlimited_teams"),
|
|
description: t("unlimited_teams_description"),
|
|
},
|
|
{
|
|
icon: <Icon name="credit-card" className="h-5 w-5 text-green-500" />,
|
|
title: t("unified_billing"),
|
|
description: t("advanced_managed_events_description"),
|
|
},
|
|
{
|
|
icon: <Icon name="lock" className="h-5 w-5 text-purple-500" />,
|
|
title: t("advanced_managed_events"),
|
|
description: t("advanced_managed_events_description"),
|
|
},
|
|
];
|
|
return (
|
|
<div>
|
|
<Shell heading={t("enterprise")} subtitle={t("enterprise_description")}>
|
|
<UpgradeTip
|
|
plan="enterprise"
|
|
title={t("create_your_org")}
|
|
description={t("create_your_org_description")}
|
|
features={features}
|
|
background="/tips/enterprise"
|
|
buttons={
|
|
<div className="space-y-2 rtl:space-x-reverse sm:space-x-2">
|
|
<ButtonGroup>
|
|
<Button color="primary" href="https://go.cal.com/quote" target="_blank">
|
|
{t("contact_sales")}
|
|
</Button>
|
|
<Button color="minimal" href="https://cal.com/enterprise" target="_blank">
|
|
{t("learn_more")}
|
|
</Button>
|
|
</ButtonGroup>
|
|
</div>
|
|
}>
|
|
<>Create Org</>
|
|
</UpgradeTip>
|
|
</Shell>
|
|
</div>
|
|
);
|
|
}
|