Skip to content

Commit cb2784f

Browse files
fix(landing): keep 'Grid Operators' label, use whitespace-nowrap + tighter tracking to prevent wrap
1 parent 01cb46b commit cb2784f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/(shell)/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,15 +278,15 @@ export default function LandingPage() {
278278
<div className="grid grid-cols-2 sm:grid-cols-4 gap-y-4 gap-x-2 items-start">
279279
{[
280280
{ value: utilityCount.toLocaleString(), label: "Utilities" },
281-
{ value: gridOperatorCount.toLocaleString(), label: "Operators" },
281+
{ value: gridOperatorCount.toLocaleString(), label: "Grid Operators" },
282282
{ value: TERRITORY_COUNT.toLocaleString(), label: "Territories" },
283283
{ value: programCount.toLocaleString(), label: "Programs" },
284284
].map((stat) => (
285285
<div key={stat.label} className="text-center flex flex-col">
286286
<div className="text-xl sm:text-2xl font-bold text-text-heading tabular-nums">
287287
{stat.value}
288288
</div>
289-
<div className="text-[11px] font-medium uppercase tracking-widest text-text-muted mt-0.5">
289+
<div className="text-[10px] font-medium uppercase tracking-wider text-text-muted mt-0.5 whitespace-nowrap">
290290
{stat.label}
291291
</div>
292292
</div>

0 commit comments

Comments
 (0)