change h6 to h5 to fix heading structure

This commit is contained in:
2026-06-12 16:49:55 +02:00
parent 0b10637df4
commit a110c7490c
+1 -1
View File
@@ -7,7 +7,7 @@ interface IProps {
const Feature = ({ title, children }: IProps) => (
<div className="mb-auto">
<h6 className="text-(--neutral-content) text-2xl font-bold">{title}</h6>
<h5 className="text-(--neutral-content) text-2xl font-bold">{title}</h5>
<p className="text-(--neutral-content) font-medium" data-testid="text">
{children}
</p>