File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/components/index-page Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import ZapIcon from "@/app/conf/_design-system/pixelarticons/zap.svg?svgr"
6
6
import BullseyeIcon from "@/app/conf/_design-system/pixelarticons/bullseye.svg?svgr"
7
7
import SearchIcon from "@/app/conf/_design-system/pixelarticons/search.svg?svgr"
8
8
9
- const pillars = [
9
+ const items = [
10
10
{
11
11
icon : GiftIcon ,
12
12
title : "Product-centric" ,
@@ -48,7 +48,7 @@ export function FivePillars() {
48
48
</ h2 >
49
49
50
50
< div className = "gql-radial-gradient gap-px" >
51
- { pillars . map ( ( { title, icon : Icon , description } , index ) => (
51
+ { items . map ( ( { title, icon : Icon , description } , index ) => (
52
52
< div key = { title } >
53
53
< 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" >
54
54
< 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() {
63
63
{ description }
64
64
</ p >
65
65
</ div >
66
- { index < pillars . length - 1 && < Separator /> }
66
+ { index < items . length - 1 && < Separator /> }
67
67
</ div >
68
68
) ) }
69
69
</ div >
You can’t perform that action at this time.
0 commit comments