feat(release): prepare 1.1.0 candidate

This commit is contained in:
Yun Chan 2026-08-29 18:33:45 +09:00
parent 5a34f66981
commit 5205dcdfa9
736 changed files with 115667 additions and 12203 deletions

View file

@ -8,13 +8,13 @@ interface DataPointProps {
export function DataPoint({ label, value, unit, className = '' }: DataPointProps) {
return (
<div className={`flex flex-col ${className}`}>
<span className="font-mono text-nano uppercase tracking-widest text-neutral-500 mb-1">
<span className="text-xs font-normal text-neutral-400 mb-1">
{label}
</span>
<span className="font-display text-2xl md:text-3xl font-bold text-neutral-100 tracking-tight">
<span className="text-2xl sm:text-3xl font-medium text-neutral-50 tracking-tight flex items-baseline">
{value}
{unit && (
<span className="text-sm font-mono text-neutral-500 ml-1">{unit}</span>
<span className="text-xs font-normal text-brand-blue ml-1.5">{unit}</span>
)}
</span>
</div>