chore(wizard): update demo license keys in lookup panel

This commit is contained in:
DanielS
2026-07-21 11:32:30 +02:00
parent 3db3606f17
commit acd8d6575c

View File

@@ -25,10 +25,10 @@ import { lookupLicenseFromLicServer } from '@/lib/actions/licserver-config'
// ─── MOCK DATA (until real LicServer API is wired up) ─────────────────────── // ─── MOCK DATA (until real LicServer API is wired up) ───────────────────────
const MOCK_LICENSES: Record<string, LicenseInfo> = { const MOCK_LICENSES: Record<string, LicenseInfo> = {
'CAS-2023-PRO-00123': { '995500-0005': {
licenseKey: 'CAS-2023-PRO-00123', licenseKey: '995500-0005',
status: 'active', status: 'active',
product: 'CAS genesisWorld Professional', product: 'CASPOS DEMO',
edition: 'Professional', edition: 'Professional',
version: '14.1.2', version: '14.1.2',
seats: 10, seats: 10,
@@ -242,7 +242,7 @@ export function LicenseLookupPanel({ onLicenseResolved }: LicenseLookupPanelProp
setNotFound(false) setNotFound(false)
}} }}
onKeyDown={handleKeyDown} onKeyDown={handleKeyDown}
placeholder="z. B. CAS-2023-PRO-00123" placeholder="z. B. 995500-00"
className="pl-9 pr-8 bg-white/5 border-white/10 text-white placeholder:text-slate-500 className="pl-9 pr-8 bg-white/5 border-white/10 text-white placeholder:text-slate-500
focus:border-violet-500/60 focus:ring-violet-500/20 rounded-xl text-sm h-10" focus:border-violet-500/60 focus:ring-violet-500/20 rounded-xl text-sm h-10"
/> />
@@ -278,16 +278,16 @@ export function LicenseLookupPanel({ onLicenseResolved }: LicenseLookupPanelProp
Demo:&nbsp; Demo:&nbsp;
<span <span
className="font-mono text-violet-400/80 cursor-pointer hover:text-violet-400 transition-colors" className="font-mono text-violet-400/80 cursor-pointer hover:text-violet-400 transition-colors"
onClick={() => setLicenseKey('CAS-2023-PRO-00123')} onClick={() => setLicenseKey('995500-00')}
> >
CAS-2023-PRO-00123 995500-00
</span> </span>
{' · '} {' · '}
<span <span
className="font-mono text-amber-400/80 cursor-pointer hover:text-amber-400 transition-colors" className="font-mono text-amber-400/80 cursor-pointer hover:text-amber-400 transition-colors"
onClick={() => setLicenseKey('CAS-2020-STD-00456')} onClick={() => setLicenseKey('995500-01')}
> >
CAS-2020-STD-00456 995500-01
</span> </span>
</p> </p>
</div> </div>