diff --git a/components/sites/ScriptSetupBlock.tsx b/components/sites/ScriptSetupBlock.tsx index ac988a8..339fbfb 100644 --- a/components/sites/ScriptSetupBlock.tsx +++ b/components/sites/ScriptSetupBlock.tsx @@ -14,15 +14,15 @@ import { toast, Toggle, Select, CheckIcon } from '@ciphera-net/ui' const FRAMEWORKS = integrations.filter((i) => i.category === 'framework').slice(0, 10) const STORAGE_OPTIONS = [ - { value: 'local', label: 'Cross-tab (localStorage)' }, - { value: 'session', label: 'Per-tab (sessionStorage)' }, + { value: 'local', label: 'Across all tabs' }, + { value: 'session', label: 'Single tab only' }, ] const TTL_OPTIONS = [ - { value: '24', label: '24h' }, - { value: '48', label: '48h' }, - { value: '168', label: '7d' }, - { value: '720', label: '30d' }, + { value: '24', label: '24 hours' }, + { value: '48', label: '2 days' }, + { value: '168', label: '7 days' }, + { value: '720', label: '30 days' }, ] const FEATURES = [ @@ -187,13 +187,16 @@ export default function ScriptSetupBlock({ {/* ── Storage + TTL ───────────────────────────────────────────────── */}
-

+

Visitor identity

+

+ How returning visitors are recognized. Stricter settings increase privacy but may raise unique visitor counts. +