Skip to content

Commit e61f0c5

Browse files
committed
Rename a variable
1 parent 032823d commit e61f0c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/index-page/five-pillars.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import ZapIcon from "@/app/conf/_design-system/pixelarticons/zap.svg?svgr"
66
import BullseyeIcon from "@/app/conf/_design-system/pixelarticons/bullseye.svg?svgr"
77
import SearchIcon from "@/app/conf/_design-system/pixelarticons/search.svg?svgr"
88

9-
const pillars = [
9+
const items = [
1010
{
1111
icon: GiftIcon,
1212
title: "Product-centric",
@@ -48,7 +48,7 @@ export function FivePillars() {
4848
</h2>
4949

5050
<div className="gql-radial-gradient gap-px">
51-
{pillars.map(({ title, icon: Icon, description }, index) => (
51+
{items.map(({ title, icon: Icon, description }, index) => (
5252
<div key={title}>
5353
<div className="flex flex-col gap-2 bg-neu-0 py-6 max-sm:text-center lg:flex-row lg:items-center lg:gap-8 lg:py-8">
5454
<div className="flex items-center max-sm:flex-col lg:w-[430px] lg:shrink-0 xl:w-[520px]">
@@ -63,7 +63,7 @@ export function FivePillars() {
6363
{description}
6464
</p>
6565
</div>
66-
{index < pillars.length - 1 && <Separator />}
66+
{index < items.length - 1 && <Separator />}
6767
</div>
6868
))}
6969
</div>

0 commit comments

Comments
 (0)