From bf2c616dce3fab28a14c768677c1da8e4ae255c4 Mon Sep 17 00:00:00 2001 From: Maycon Santos Date: Mon, 23 Dec 2024 16:52:19 +0100 Subject: [PATCH] add tittle to the nav link --- src/components/NavigationAPI.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/NavigationAPI.jsx b/src/components/NavigationAPI.jsx index 1cf86ffb..1bb9b9d4 100644 --- a/src/components/NavigationAPI.jsx +++ b/src/components/NavigationAPI.jsx @@ -87,6 +87,7 @@ export function NavLink({ href, tag, active, isAnchorLink = false, children, lin href={href ? href : "#"} data-nb-link={active ? 1 : 0} aria-current={active ? 'page' : undefined} + title={children} className={clsx( 'flex justify-between gap-2 py-1 pr-3 text-sm transition', isAnchorLink ? 'pl-7' : 'pl-4',