import { cn } from "@/lib/utils"; /** Spinza mark: a ring split by a diagonal spin stroke — original, drawn inline. */ export function SpinzaMark({ className, glow = true }: { className?: string; glow?: boolean }) { return ( {glow ? ( ) : null} ); } export function SpinzaWordmark({ className, size = "md" }: { className?: string; size?: "sm" | "md" | "lg" }) { const s = { sm: "text-lg", md: "text-xl", lg: "text-3xl" }[size]; return ( SPINZA ); }