Four-cell grid of atmospheric stats with uppercase labels, bold tabular values, and an optional detail line.
Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.
import { Weather5 } from "@/components/beste/piece/weather5";
<Weather5
metrics={[
{
"label": "Humidity",
"value": "64%"
},
{
"label": "Wind",
"value": "12 km/h",
"detail": "NE"
},
{
"label": "Pressure",
"value": "1018 hPa"
},
{
"label": "UV Index",
"value": "6",
"detail": "High"
}
]}
/>