diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-12-19 13:31:01 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-12-19 13:31:01 +0000 |
| commit | e842c5a7ac3f12af2fcd82eaa06914041647756e (patch) | |
| tree | f66a199b99e3270799dbf7e7425ae0851cd9274b /apps | |
| parent | e78e51297ad0be88ed9543f96340c496be907a19 (diff) | |
| download | karakeep-e842c5a7ac3f12af2fcd82eaa06914041647756e.tar.zst | |
feat(landing): remove waitlist link. fixes #2270
Diffstat (limited to 'apps')
| -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"; |
