17b9006b88
Build pitch-deck / build-push-deploy (push) Successful in 1m55s
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 36s
CI / test-python-voice (push) Successful in 35s
CI / test-bqas (push) Successful in 35s
- Add English email template variants (greeting, message, closing, subject, CTA copy) - Add `preferred_lang` column to `pitch_investors` — stored per investor, deck opens in that language by default - Invite form: DE/EN language toggle that switches email defaults and pitch language setting - Invite form: "Send email" toggle — when off, creates investor + returns magic link without sending email (for cold outreach attachment) - `app/page.tsx`: initializes pitch language from investor's `preferred_lang` before first render (no flash) - Migration 007 added to `/api/admin/migrate` route for production rollout Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
'use client'
|
|
|
|
import { useState, useCallback, useEffect, useRef } from 'react'
|
|
import { Language } from '@/lib/types'
|
|
import { useAuth } from '@/lib/hooks/useAuth'
|
|
import PitchDeck from '@/components/PitchDeck'
|
|
|
|
export default function Home() {
|
|
const { investor, loading, logout } = useAuth()
|
|
const [lang, setLang] = useState<Language>('de')
|
|
const [langReady, setLangReady] = useState(false)
|
|
const synced = useRef(false)
|
|
|
|
useEffect(() => {
|
|
if (!loading && !synced.current) {
|
|
synced.current = true
|
|
if (investor?.preferred_lang === 'en') setLang('en')
|
|
setLangReady(true)
|
|
}
|
|
}, [loading, investor])
|
|
|
|
const toggleLanguage = useCallback(() => {
|
|
setLang(prev => prev === 'de' ? 'en' : 'de')
|
|
}, [])
|
|
|
|
if (loading || !langReady) {
|
|
return (
|
|
<div className="h-screen flex items-center justify-center">
|
|
<div className="w-12 h-12 border-2 border-indigo-500 border-t-transparent rounded-full animate-spin" />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return <PitchDeck lang={lang} onToggleLanguage={toggleLanguage} investor={investor} onLogout={logout} />
|
|
}
|