We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b607ed commit d97b29dCopy full SHA for d97b29d
1 file changed
app/(home)/components/SponsorsDesktop.tsx
@@ -232,9 +232,12 @@ const SponsorsDesktop = ({ sponsors }: { sponsors: SponsorshipProps[] }) => {
232
key={index}
233
onClick={() => updateButton(index)}
234
className={cn(
235
- 'w-3 h-3 rounded-full mx-1',
236
- current === index ? 'bg-primary' : 'bg-gray-400'
+ 'w-4 h-4 rounded-full mx-1 transition-colors duration-300',
+ current === index
237
+ ? 'bg-primary scale-110'
238
+ : 'bg-gray-400 hover:bg-gray-500'
239
)}
240
+ aria-label={`Go to slide ${index + 1}`}
241
></button>
242
))}
243
</div>
0 commit comments