diff --git a/apps/web/src/routes/cal.tsx b/apps/web/src/routes/cal.tsx deleted file mode 100644 index f542ae5573..0000000000 --- a/apps/web/src/routes/cal.tsx +++ /dev/null @@ -1,116 +0,0 @@ -import { createFileRoute, Link } from "@tanstack/react-router"; - -import { cn } from "@hypr/utils"; - -export const Route = createFileRoute("/cal")({ - component: Component, -}); - -function Component() { - return ( - -
- - - - ); -} - -function Container({ children }: { children: React.ReactNode }) { - return ( -
-
-
-
- {children} -
-
-
- - Back to home - -
-
-
- ); -} - -function Header() { - return ( - <> -

- Skip the Waitlist -

-

- Book a quick 20-minute chat with the founders and get guaranteed early - access to Hyprnote -

- - ); -} - -function BookingButton() { - return ( -
- - - -
- ); -} - -function FAQ() { - return ( -
-
- - -
-
- ); -} - -function FAQItem({ question, answer }: { question: string; answer: string }) { - return ( -
-

{question}

-

{answer}

-
- ); -} diff --git a/apps/web/src/routes/join-waitlist.tsx b/apps/web/src/routes/join-waitlist.tsx index d15a57c4b3..aaf45babaf 100644 --- a/apps/web/src/routes/join-waitlist.tsx +++ b/apps/web/src/routes/join-waitlist.tsx @@ -1,9 +1,94 @@ -import { createFileRoute, redirect } from "@tanstack/react-router"; +import { createFileRoute, Link } from "@tanstack/react-router"; + +import { cn } from "@hypr/utils"; export const Route = createFileRoute("/join-waitlist")({ - beforeLoad: () => { - throw redirect({ - href: "https://tally.so/r/mJaRDY", - }); - }, + component: Component, }); + +function Component() { + return ( + +
+ + + ); +} + +function Container({ children }: { children: React.ReactNode }) { + return ( +
+
+
+
+ {children} +
+
+
+ + Back to home + +
+
+
+ ); +} + +function Header() { + return ( + <> +

+ Quick chat with founders +

+

+ Hop on a 20 minute chat and get early access to{" "} + + Pro + +

+ + ); +} + +function BookingButton() { + return ( +
+ + + +
+ ); +}