-
-
-
- {status.pulse && (
-
+
+
+
+ {isMonitoring && (
+
)}
-
- {domain.name}
- {status.label}
-
+ {domain.name}
|
- {status.label}
+ {domain.is_available ? 'Available' : isMonitoring ? 'Monitoring' : 'Registered'}
|
{exp ? (
{exp.text}
@@ -664,7 +587,7 @@ export default function DashboardPage() {
className={clsx(
"p-2 rounded-lg transition-all",
domain.notify_on_available
- ? "text-cyan-400 hover:bg-cyan-400/10"
+ ? "text-accent hover:bg-accent/10"
: "text-foreground-subtle hover:text-foreground hover:bg-foreground/10"
)}
title={domain.notify_on_available ? "Monitoring active" : "Enable monitoring"}
@@ -674,7 +597,7 @@ export default function DashboardPage() {
- |