Fix: Heading elements are not in a sequentially-descending order

This commit is contained in:
prototypa
2023-08-14 03:32:08 -04:00
parent 618e7a4a55
commit 8d31bf8f27

View File

@ -35,9 +35,9 @@ const {
</div> </div>
)} )}
{title && ( {title && (
<h6 class="text-sm font-medium uppercase tracking-widest text-gray-800 dark:text-slate-400 lg:text-base"> <div class="text-sm font-medium uppercase tracking-widest text-gray-800 dark:text-slate-400 lg:text-base">
{title} {title}
</h6> </div>
)} )}
</div> </div>
)) ))