import { dashboard } from '@/routes'; import { store } from '@/routes/user-leads'; import { type SharedData } from '@/types'; import { Form, Head, Link, usePage } from '@inertiajs/react'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import InputError from '@/components/input-error'; import { LockIcon, ShieldCheckIcon, TrendingUpIcon, BellIcon, PieChartIcon, SmartphoneIcon, ZapIcon, EyeOffIcon, BirdIcon, CodeIcon, } from 'lucide-react'; import { useEffect, useRef } from 'react'; import { trackEvent } from '@/lib/track-event'; import { LEAD_FUNNEL_EVENT_UUID } from '@/lib/constants'; export default function Welcome({ canRegister = true, hideAuthButtons = false, }: { canRegister?: boolean; hideAuthButtons?: boolean; }) { const { auth, appUrl } = usePage().props; const emailInputRef = useRef(null); const visitTrackedRef = useRef(false); useEffect(() => { if (visitTrackedRef.current) { return; } visitTrackedRef.current = true; trackEvent(LEAD_FUNNEL_EVENT_UUID, { step: 'Visit', }); }, []); return ( <>
Whisper Money
{!hideAuthButtons && ( )}
Military Grade Encryption

The most secure way to understand your finances

Your financial data stays private with end-to-end encryption. Track expenses, create budgets, and achieve your goals—all while keeping your information completely secure.

{({ processing, errors }) => ( <> {errors.email && (
)} )}

Your data is yours alone. Join our waitlist for early access.

Bank accounts securely stored Bank accounts securely stored
Everything is encrypted with a private & local key you only have Everything is encrypted with a private & local key you only have
You're transactions with a military grade encryption You're transactions with a military grade encryption

Everything you need. Nothing you don't.

End-to-end encryption

Your financial data is encrypted on your device. Only you can access it.

Smart budgeting

Create budgets that adapt to your spending habits and goals.

Intelligent insights

Are you overspending? Know exactly where you stand.

Visual insights

Understand your spending with beautiful charts and reports.

Works everywhere

Access your finances on any device, anytime, anywhere.

Lightning fast

Built for speed with instant sync and smooth interactions.

Zero tracking

We don't track, sell, or share your data. Ever.

Open source

Fully transparent and open source. Review the code yourself.

Trusted by people who value their privacy

Join thousands of users who have taken control of their finances without compromising their privacy.

Sarah M.

@sarahm_finance

Finally, a finance app that respects my privacy. The encryption gives me peace of mind.

Michael R.

@mike_tech

The budgeting features are intuitive and the dark mode is gorgeous. Best finance app I've used.

Emma L.

@emmalou

Love that my financial data is encrypted. No more worrying about data breaches!

Sarah M.

@sarahm_finance

Finally, a finance app that respects my privacy. The encryption gives me peace of mind.

Michael R.

@mike_tech

The budgeting features are intuitive and the dark mode is gorgeous. Best finance app I've used.

Emma L.

@emmalou

Love that my financial data is encrypted. No more worrying about data breaches!

Sarah M.

@sarahm_finance

Finally, a finance app that respects my privacy. The encryption gives me peace of mind.

Michael R.

@mike_tech

The budgeting features are intuitive and the dark mode is gorgeous. Best finance app I've used.

Emma L.

@emmalou

Love that my financial data is encrypted. No more worrying about data breaches!

Sarah M.

@sarahm_finance

Finally, a finance app that respects my privacy. The encryption gives me peace of mind.

Michael R.

@mike_tech

The budgeting features are intuitive and the dark mode is gorgeous. Best finance app I've used.

Emma L.

@emmalou

Love that my financial data is encrypted. No more worrying about data breaches!

David K.

@davidk_dev

As a developer, I appreciate the security architecture. This is how finance apps should be built.

Jessica P.

@jessicap

The automation rules save me so much time. And knowing my data is private? Priceless.

Alex T.

@alext_money

Clean interface, powerful features, and zero compromise on privacy. What more could you want?

David K.

@davidk_dev

As a developer, I appreciate the security architecture. This is how finance apps should be built.

Jessica P.

@jessicap

The automation rules save me so much time. And knowing my data is private? Priceless.

Alex T.

@alext_money

Clean interface, powerful features, and zero compromise on privacy. What more could you want?

David K.

@davidk_dev

As a developer, I appreciate the security architecture. This is how finance apps should be built.

Jessica P.

@jessicap

The automation rules save me so much time. And knowing my data is private? Priceless.

Alex T.

@alext_money

Clean interface, powerful features, and zero compromise on privacy. What more could you want?

David K.

@davidk_dev

As a developer, I appreciate the security architecture. This is how finance apps should be built.

Jessica P.

@jessicap

The automation rules save me so much time. And knowing my data is private? Priceless.

Alex T.

@alext_money

Clean interface, powerful features, and zero compromise on privacy. What more could you want?

); }