website: remove enterprise waitlist (#6670)
This commit is contained in:
parent
b43068bfa3
commit
aaf58e5741
|
@ -2,6 +2,7 @@ import React from "react";
|
||||||
import Layout from "@theme/Layout";
|
import Layout from "@theme/Layout";
|
||||||
import Link from "@docusaurus/Link";
|
import Link from "@docusaurus/Link";
|
||||||
import Card from "../../components/PricingQuestions/Card";
|
import Card from "../../components/PricingQuestions/Card";
|
||||||
|
import useBaseUrl from "@docusaurus/useBaseUrl";
|
||||||
|
|
||||||
export default function pricingPage() {
|
export default function pricingPage() {
|
||||||
return (
|
return (
|
||||||
|
@ -64,10 +65,12 @@ export default function pricingPage() {
|
||||||
<small>/external user/month</small>
|
<small>/external user/month</small>
|
||||||
</h1>
|
</h1>
|
||||||
<a
|
<a
|
||||||
className="button button--info button--block"
|
className="button button--primary button--block"
|
||||||
href="./waitlist/enterprise"
|
href={useBaseUrl(
|
||||||
|
"/docs/enterprise/get-started",
|
||||||
|
)}
|
||||||
>
|
>
|
||||||
Join waitlist
|
Get Started
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
import React from "react";
|
|
||||||
import { WaitListForm } from "../../../components/Waitlist";
|
|
||||||
import Layout from "@theme/Layout";
|
|
||||||
|
|
||||||
export default function waitListEnterprise() {
|
|
||||||
return (
|
|
||||||
<Layout title="Waitlist">
|
|
||||||
<WaitListForm product="enterprise"></WaitListForm>
|
|
||||||
</Layout>
|
|
||||||
);
|
|
||||||
}
|
|
Reference in New Issue