fix(banner): wrap link in a paragraph for better semantic structure

This commit is contained in:
cfngc4594 2025-02-21 21:20:52 +08:00
parent 326cce7836
commit 2b5b4dee57

View File

@ -19,7 +19,8 @@ export function Banner({
{...props} {...props}
className={cn("h-12 flex items-center justify-center bg-muted text-foreground", className)} className={cn("h-12 flex items-center justify-center bg-muted text-foreground", className)}
> >
<a href={link} className="group flex justify-center text-sm"> <p className="flex justify-center text-sm">
<a href={link} className="group">
<span className="me-1 text-base leading-none"></span> <span className="me-1 text-base leading-none"></span>
{text} {text}
<ArrowRightIcon <ArrowRightIcon
@ -28,6 +29,7 @@ export function Banner({
aria-hidden="true" aria-hidden="true"
/> />
</a> </a>
</p>
</header> </header>
); );
} }