/* * FirstRun.tsx * Zyquo Cloud Web * * Author: Simon-Pierre Boucher * Mail: contact@spboucher.ai * * First-run welcome: clean, honest, transparent about local storage. */ import { useStore } from '../state/store' import ZyquoGlyph from './ZyquoGlyph' export default function FirstRun() { const updateSettings = useStore((s) => s.updateSettings) const openSettings = useStore((s) => s.openSettings) return (

Welcome to Zyquo Cloud

Every cloud model, one beautiful chat — running entirely in your browser.

No account. No backend. Nothing leaves this device. Your API keys and conversation history are stored in this browser {' '}(localStorage / IndexedDB) and are sent only to the AI provider you choose, directly. Keys in browser storage aren't a secure vault — anyone with access to this browser profile could read them. An optional passphrase lock is available in Settings → Advanced. Add a provider API key to begin.
) }