We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c52a86 commit 92e139cCopy full SHA for 92e139c
src/components/header.tsx
@@ -14,7 +14,7 @@ const links = [
14
{ id: 2, label: 'Calendário', href: '/activitys' },
15
{ id: 3, label: 'Código de conduta', href: '/conduct' },
16
{ id: 4, label: 'Keynotes', href: '#' },
17
- { id: 5, label: 'FAQ', href: '#' },
+ { id: 5, label: 'FAQ', href: '/#FAQList' },
18
]
19
20
export function Header() {
@@ -58,8 +58,12 @@ export function Header() {
58
key={link.id}
59
className={cn(
60
'cursor-pointer',
61
- pathname === link.href && 'underline',
+ pathname === link.href &&
62
+ 'underline decoration-wavy underline-offset-[2px] ',
63
)}
64
+ style={{
65
+ textDecorationSkipInk: 'none',
66
+ }}
67
href={link.href}
68
>
69
<li>{link.label}</li>
0 commit comments