diff --git a/src/app/(app)/claw/components/ClawDashboard.tsx b/src/app/(app)/claw/components/ClawDashboard.tsx index d5f34c14b..d11844e22 100644 --- a/src/app/(app)/claw/components/ClawDashboard.tsx +++ b/src/app/(app)/claw/components/ClawDashboard.tsx @@ -18,7 +18,6 @@ import { InstanceControls } from './InstanceControls'; import { InstanceTab } from './InstanceTab'; import { SettingsTab } from './SettingsTab'; import { ChangelogCard } from './ChangelogCard'; -import { EarlybirdBanner } from './EarlybirdBanner'; import { PairingCard } from './PairingCard'; type PopulatedClawStatus = KiloClawDashboardStatus & { @@ -142,7 +141,6 @@ export function ClawDashboard({ status }: { status: KiloClawDashboardStatus | un {instanceStatus?.status === 'running' && } - ); diff --git a/src/app/(app)/claw/earlybird/page.tsx b/src/app/(app)/claw/earlybird/page.tsx index 5f17f7cbc..49ea9523d 100644 --- a/src/app/(app)/claw/earlybird/page.tsx +++ b/src/app/(app)/claw/earlybird/page.tsx @@ -1,74 +1,4 @@ -'use client'; - -import { useUser } from '@/hooks/useUser'; -import { PageLayout } from '@/components/PageLayout'; -import { Card, CardContent, CardFooter, CardHeader, CardTitle } from '@/components/ui/card'; -import { Button } from '@/components/ui/button'; - -const STRIPE_PAYMENT_LINK = 'https://buy.stripe.com/00wcN64ot27OaIK0K4dAk00'; -const PROMO_CODE = 'KILOCLAWEARLYBIRD'; - -function buildStripeUrl(email: string | undefined) { - const url = new URL(STRIPE_PAYMENT_LINK); - if (email) { - url.searchParams.set('prefilled_email', email); - } - url.searchParams.set('prefilled_promo_code', PROMO_CODE); - return url.toString(); -} - +// Early Bird offer has been retired. export default function EarlybirdPage() { - const { data: user } = useUser(); - const stripeUrl = buildStripeUrl(user?.google_user_email); - - return ( - -
- -
-
- - -
- - 🦞 - - Presale: 50% Off for the First 1,000 -
- - Early Bird — 50% Off - -
- - -

- To thank those of you who have been early adopters, we're offering the first - 1,000 users 6 months of KiloClaw compute at 50% off. That's{' '} - $150 total — works out - to $25/month instead of $49. -

-

- The discount applies to compute only, not inference. At $25/month for a hosted AI - agent, that's hard to beat. 🦀 -

-

- âš  All early bird purchases are final. No refunds will be issued. -

-
- - - - - -
- - ); + return null; }