Skip to content

Commit 0aa595d

Browse files
fix: update enterprise sales URL from i.cal.com to go.cal.com (calcom#22627)
* 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>
1 parent 2115a04 commit 0aa595d

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/web/components/EnterprisePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default function EnterprisePage() {
5454
buttons={
5555
<div className="space-y-2 rtl:space-x-reverse sm:space-x-2">
5656
<ButtonGroup>
57-
<Button color="primary" href="https://i.cal.com/sales/enterprise?duration=25" target="_blank">
57+
<Button color="primary" href="https://go.cal.com/quote" target="_blank">
5858
{t("contact_sales")}
5959
</Button>
6060
<Button color="minimal" href="https://cal.com/enterprise" target="_blank">

apps/web/components/settings/platform/pricing/platform-pricing/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const PlatformPricing = ({ teamId, teamPlan, heading }: PlatformPricingPr
4141

4242
const handleStripeSubscription = async (plan: string) => {
4343
if (plan === "Enterprise") {
44-
router.push("https://i.cal.com/sales/exploration");
44+
return router.push("https://go.cal.com/quote");
4545
}
4646

4747
if (currentPage === "platform") {

docs/developing/guides/appstore-and-integration/how-to-show-assigned-people-from-a-crm.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ This means if you have a table
3030

3131
You could show peer@cal.com an embed inside your application simply by using the value from AccountExecutive to build the link:
3232

33-
jane@acme.com → acme.cal.com/jane either with a string replace function or a simple regex.
33+
jane@acme.com → acme.cal.com/jane either with a string replace function or a simple regex.

packages/features/ee/teams/components/TeamList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export default function TeamList(props: Props) {
101101
"As an organization owner, you are in charge of every team account. You can make changes with admin-only tools and see organization wide analytics in one place."
102102
)}
103103
actionButton={{
104-
href: "https://i.cal.com/sales/enterprise",
104+
href: "https://go.cal.com/quote",
105105
child: t("learn_more"),
106106
}}
107107
/>

0 commit comments

Comments
 (0)