"use client"; // 종목 페이지 상단 가격 헤더. // 표시: 종목명 / (코드·시장) / 현재가 / 전일대비 + 우측에 sparkline. // 한국 거래소 관행대로 상승=빨강, 하락=파랑. import { Sparkline } from "./Sparkline"; type Props = { name: string; code: string; market: string; current: number | null; prev: number | null; asOf?: string | null; // 헤더 우측 sparkline 용 종가 시계열 (오래된 → 최신 순). 비어 있으면 미표시. series?: number[]; // social-proof — "오늘 N명이 봤어요" 배지. null/0 이면 숨김. viewsToday?: number | null; }; export function PriceHero({ name, code, market, current, prev, asOf, series, viewsToday, }: Props) { const change = current != null && prev != null ? current - prev : null; const pct = change != null && prev ? (change / prev) * 100 : null; const tone = change == null || change === 0 ? "text-zinc-400" : change > 0 ? "text-rose-400" : "text-sky-400"; const arrow = change == null || change === 0 ? "—" : change > 0 ? "▲" : "▼"; return (