@@ -122,18 +122,20 @@ function Component() {
122122 >
123123 < div
124124 className = { cn (
125- "flex items-center justify-center gap-2 text-center" ,
126- "bg-stone-50/70 border-b border-stone-100" ,
127- "py-3 px-4" ,
128- "font-serif text-sm text-stone-700" ,
129- "hover:bg-stone-50 transition-all" ,
125+ [
126+ "flex items-center justify-center gap-2 text-center" ,
127+ "bg-stone-50/70 border-b border-stone-100" ,
128+ "py-3 px-4" ,
129+ "font-serif text-sm text-stone-700" ,
130+ "hover:bg-stone-50 transition-all" ,
131+ ] ,
130132 ) }
131133 >
132134 < span className = "group-hover:font-medium" > Backed by</ span >
133135 < img
134136 src = "/icons/yc_stone.svg"
135137 alt = "Y Combinator"
136- className = { cn ( "h-4 w-4 inline-block group-hover:scale-105" ) }
138+ className = "h-4 w-4 inline-block group-hover:scale-105"
137139 />
138140 < span className = "group-hover:font-medium" > Y Combinator</ span >
139141 </ div >
@@ -459,10 +461,12 @@ Mad respect to the team. This is how you build in 2025. 🚀"
459461 key = { index }
460462 onClick = { ( ) => scrollToFeature ( index ) }
461463 className = { cn (
462- "h-1 rounded-full transition-all cursor-pointer" ,
463- selectedFeature === index
464- ? "w-8 bg-stone-600"
465- : "w-8 bg-neutral-300 hover:bg-neutral-400" ,
464+ [
465+ "h-1 rounded-full transition-all cursor-pointer" ,
466+ selectedFeature === index
467+ ? "w-8 bg-stone-600"
468+ : "w-8 bg-neutral-300 hover:bg-neutral-400" ,
469+ ] ,
466470 ) }
467471 aria-label = { `Go to feature ${ index + 1 } ` }
468472 />
@@ -629,10 +633,12 @@ Mad respect to the team. This is how you build in 2025. 🚀"
629633 key = { index }
630634 onClick = { ( ) => scrollToDetail ( index ) }
631635 className = { cn (
632- "h-1 rounded-full transition-all cursor-pointer" ,
633- selectedDetail === index
634- ? "w-8 bg-stone-600"
635- : "w-8 bg-neutral-300 hover:bg-neutral-400" ,
636+ [
637+ "h-1 rounded-full transition-all cursor-pointer" ,
638+ selectedDetail === index
639+ ? "w-8 bg-stone-600"
640+ : "w-8 bg-neutral-300 hover:bg-neutral-400" ,
641+ ] ,
636642 ) }
637643 aria-label = { `Go to detail ${ index + 1 } ` }
638644 />
0 commit comments