From a607576d519174ffa8cc5f92f3ecb8bc1076abfa Mon Sep 17 00:00:00 2001 From: rohanharikr Date: Wed, 11 Mar 2026 18:45:45 +0000 Subject: [PATCH 1/2] Replace waitlist with get started links for Lifecycle and GitHub Offboarding launch Co-Authored-By: Claude Opus 4.6 --- components/products/github-offboarding.js | 20 +++----------------- components/products/hello-lifecycle.js | 20 +++----------------- 2 files changed, 6 insertions(+), 34 deletions(-) diff --git a/components/products/github-offboarding.js b/components/products/github-offboarding.js index 64169f3..4d395a6 100644 --- a/components/products/github-offboarding.js +++ b/components/products/github-offboarding.js @@ -1,21 +1,8 @@ 'use client' -import { useState, useEffect } from 'react' import OffboardingAnimation from '@/components/animations/offboarding-anim' export default function GitHubOffboarding({ showTitle = true, compact = false }) { - const [waitlistUrl, setWaitlistUrl] = useState(null) - - useEffect(() => { - if (typeof window !== 'undefined') { - const returnUri = encodeURIComponent( - `${window.location.origin}${window.location.pathname}#github-offboarding` - ) - setWaitlistUrl( - `https://wallet.hello.coop/waitlist?waitlist_label=GitHub+Offboarding&return_uri=${returnUri}` - ) - } - }, []) return (
@@ -55,14 +42,13 @@ export default function GitHubOffboarding({ showTitle = true, compact = false })
)}
- Coming Q1 2026
- Join the waitlist + Get started diff --git a/components/products/hello-lifecycle.js b/components/products/hello-lifecycle.js index 2f93338..83b0bf7 100644 --- a/components/products/hello-lifecycle.js +++ b/components/products/hello-lifecycle.js @@ -1,21 +1,8 @@ 'use client' -import { useState, useEffect } from 'react' import LifecycleAnimation from '@/components/animations/lifecycle-anim' export default function HelloLifecycle({ showTitle = true, compact = false }) { - const [waitlistUrl, setWaitlistUrl] = useState(null) - - useEffect(() => { - if (typeof window !== 'undefined') { - const returnUri = encodeURIComponent( - `${window.location.origin}${window.location.pathname}#hellō-lifecycle` - ) - setWaitlistUrl( - `https://wallet.hello.coop/waitlist?waitlist_label=Hell%C5%8D+Lifecycle&return_uri=${returnUri}` - ) - } - }, []) return (
@@ -56,14 +43,13 @@ export default function HelloLifecycle({ showTitle = true, compact = false }) {
)}
- Coming Q1 2026
- Join the waitlist + Get started From 84ad42764dcef344f90ae5ae4febf8f28bd4a327 Mon Sep 17 00:00:00 2001 From: rohanharikr Date: Thu, 12 Mar 2026 10:34:55 +0000 Subject: [PATCH 2/2] Add waitlist functionality and promotional text for Hello Lifecycle and GitHub Offboarding - Introduced a dynamic waitlist URL for the Hello Lifecycle component. - Updated the GitHub Offboarding component to include a promotional message for directory members. - Changed the call-to-action in Hello Lifecycle from "Get started" to "Join the waitlist" for better clarity. --- components/products/github-offboarding.js | 1 + components/products/hello-lifecycle.js | 22 ++++++++++++++++++---- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/components/products/github-offboarding.js b/components/products/github-offboarding.js index 4d395a6..1e59f33 100644 --- a/components/products/github-offboarding.js +++ b/components/products/github-offboarding.js @@ -42,6 +42,7 @@ export default function GitHubOffboarding({ showTitle = true, compact = false })
)}