refactor: update branding from Ciphera Pulse to Pulse across the application for consistency and clarity
This commit is contained in:
@@ -10,7 +10,7 @@ interface LoadingOverlayProps {
|
||||
|
||||
export default function LoadingOverlay({
|
||||
logoSrc = "/ciphera_icon_no_margins.png",
|
||||
title = "Ciphera Pulse"
|
||||
title = "Pulse"
|
||||
}: LoadingOverlayProps) {
|
||||
const [mounted, setMounted] = useState(false)
|
||||
|
||||
@@ -27,7 +27,7 @@ export default function LoadingOverlay({
|
||||
<div className="flex items-center gap-3">
|
||||
<img
|
||||
src={logoSrc}
|
||||
alt={typeof title === 'string' ? title : "Ciphera Pulse"}
|
||||
alt={typeof title === 'string' ? title : "Pulse"}
|
||||
className="h-12 w-auto object-contain"
|
||||
/>
|
||||
<span className="text-3xl tracking-tight text-neutral-900 dark:text-white">
|
||||
|
||||
@@ -43,7 +43,7 @@ export default function SiteList() {
|
||||
}
|
||||
|
||||
if (loading) {
|
||||
return <LoadingOverlay logoSrc="/ciphera_icon_no_margins.png" title="Ciphera Pulse" />
|
||||
return <LoadingOverlay logoSrc="/ciphera_icon_no_margins.png" title="Pulse" />
|
||||
}
|
||||
|
||||
if (sites.length === 0) {
|
||||
|
||||
Reference in New Issue
Block a user