diff options
Diffstat (limited to 'apps/landing/src')
| -rw-r--r-- | apps/landing/src/Pricing.tsx | 8 | ||||
| -rw-r--r-- | apps/landing/src/constants.ts | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/apps/landing/src/Pricing.tsx b/apps/landing/src/Pricing.tsx index 9240ba76..af5a5cb6 100644 --- a/apps/landing/src/Pricing.tsx +++ b/apps/landing/src/Pricing.tsx @@ -2,7 +2,7 @@ import { buttonVariants } from "@/components/ui/button"; import { cn } from "@/lib/utils"; import { Check, ExternalLink } from "lucide-react"; -import { DOCS_LINK, GITHUB_LINK, WAITLIST_LINK } from "./constants"; +import { CLOUD_SIGNUP_LINK, DOCS_LINK, GITHUB_LINK } from "./constants"; import NavBar from "./Navbar"; const pricingTiers = [ @@ -17,7 +17,7 @@ const pricingTiers = [ "Mobile & web apps", "Browser extensions", ], - buttonText: "Join Waitlist", + buttonText: "Get Started", buttonVariant: "outline" as const, popular: false, }, @@ -34,7 +34,7 @@ const pricingTiers = [ "Mobile & web apps", "Browser extensions", ], - buttonText: "Join Waitlist", + buttonText: "Get Started", buttonVariant: "default" as const, popular: true, }, @@ -121,7 +121,7 @@ function PricingCards() { </a> ) : ( <a - href={WAITLIST_LINK} + href={CLOUD_SIGNUP_LINK} target="_blank" className={cn( "flex w-full items-center justify-center", diff --git a/apps/landing/src/constants.ts b/apps/landing/src/constants.ts index b75cecae..617b8f4b 100644 --- a/apps/landing/src/constants.ts +++ b/apps/landing/src/constants.ts @@ -1,4 +1,4 @@ export const GITHUB_LINK = "https://github.com/karakeep-app/karakeep"; export const DOCS_LINK = "https://docs.karakeep.app"; export const DEMO_LINK = "https://try.karakeep.app"; -export const WAITLIST_LINK = "https://tally.so/r/wo8zzx"; +export const CLOUD_SIGNUP_LINK = "https://cloud.karakeep.app/signup"; |
