import { Container } from '../components/Container' import { Crosshair } from '../components/Crosshair' import { WaveBars } from '../components/WaveBars' import { GlowButton } from '../components/GlowButton' import { useI18n } from '../i18n' import { useClientOS } from '../hooks/useClientOS' export function CTA() { const { t, locale } = useI18n() const clientOS = useClientOS() return (
{/* Background radial glow */}

{t.cta.title1} {t.cta.title2}

{t.cta.subtitle1}
{t.cta.subtitle2}

{/* Hotkey Hint Box */}
Push-to-Talk:
Ctrl + Shift + Space
{locale === 'ko' ? clientOS.buttonLabelKo : clientOS.buttonLabelEn}
{locale === 'ko' ? clientOS.subtextKo : clientOS.subtextEn} · {locale === 'ko' ? '다른 OS 다운로드' : 'Other Platforms'}

{t.cta.systemReq} · 100% OPEN ARCHITECTURE

) }