refactor: update references from Ciphera Analytics to Ciphera Pulse across the application for consistent branding and messaging

This commit is contained in:
Usman Baig
2026-01-19 16:49:42 +01:00
parent d0a13adf36
commit 9dbe74fd9f
19 changed files with 198 additions and 55 deletions

View File

@@ -10,7 +10,7 @@ interface LoadingOverlayProps {
export default function LoadingOverlay({
logoSrc = "/ciphera_icon_no_margins.png",
title = "Ciphera Analytics"
title = "Ciphera Pulse"
}: LoadingOverlayProps) {
const [mounted, setMounted] = useState(false)
@@ -27,11 +27,11 @@ export default function LoadingOverlay({
<div className="flex items-center gap-3">
<img
src={logoSrc}
alt={typeof title === 'string' ? title : "Ciphera Analytics"}
alt={typeof title === 'string' ? title : "Ciphera Pulse"}
className="h-12 w-auto object-contain"
/>
<span className="text-3xl tracking-tight text-neutral-900 dark:text-white">
<span className="font-bold">Ciphera</span><span className="font-light">Analytics</span>
<span className="font-bold">Ciphera</span><span className="font-light">Pulse</span>
</span>
</div>
<div className="h-8 w-8 animate-spin rounded-full border-4 border-neutral-200 border-t-brand-orange dark:border-neutral-800 dark:border-t-brand-orange" />