// frontend/components/journey/Gauge.tsx — 반원 게이지 (원본 Gauge) import type { JourneyGauge } from "@/lib/types"; const LEN = Math.PI * 64; export function Gauge({ pct, tone, val, unit, label, sub }: JourneyGauge) { const color = tone === "ink" ? "var(--ink)" : `var(--${tone})`; return (