Skip to content

Commit 01cb46b

Browse files
fix(landing): top-align stats bar cells, shorten 'Grid Operators' → 'Operators'
1 parent b8addc5 commit 01cb46b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/(shell)/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,14 +275,14 @@ export default function LandingPage() {
275275
<div className="px-6 -mt-0.5">
276276
<div className="max-w-2xl mx-auto">
277277
<div className="bg-background-surface border border-border-default rounded-xl shadow-sm py-5 px-6 -mt-px">
278-
<div className="grid grid-cols-2 sm:grid-cols-4 gap-y-4 gap-x-2">
278+
<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: "Grid Operators" },
281+
{ value: gridOperatorCount.toLocaleString(), label: "Operators" },
282282
{ value: TERRITORY_COUNT.toLocaleString(), label: "Territories" },
283283
{ value: programCount.toLocaleString(), label: "Programs" },
284284
].map((stat) => (
285-
<div key={stat.label} className="text-center">
285+
<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>

0 commit comments

Comments
 (0)