fix(homepage): use h3 instead of h4 to maintain heading order in FeaturesSection component

This commit is contained in:
Moamal-2000
2025-05-10 12:53:51 +03:00
parent 78eefe9da1
commit cc7bc4ffb8

View File

@ -118,7 +118,7 @@ export const FeaturesSection = () => {
whileInView={{ opacity: 1, x: 0, transition: { delay: index * 0.1 } }}
>
{feature.icon}
<h4>{feature.title}</h4>
<h3>{feature.title}</h3>
</motion.div>
))}