Components
Loading preview...
This is a themed status indicator component that renders a glowing SVG badge with animated text to signal system activity. It adapts dynamically to light/dark themes using color logic tied to the HUD palette, and uses framer-motion for a smooth entrance slide-in. The HyperText element pulses "ACTIVE" with a typewriter-style animation effect for attention. Perfect for live status dashboards, AI system UIs, bot presence indicators, or futuristic HUD overlays that require a subtle but animated signal of system readiness.
npx shadcn@latest add https://21st.dev/r/isaiahbjork/hud-status-1"use client";
import { Status } from "@/components/ui/hud-status-1";
export default function Page() {
return (
<div className="bg-background w-full min-h-screen overflow-hidden flex items-center justify-center">
<Status />
</div>
);
}