We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae0823a commit e864995Copy full SHA for e864995
2 files changed
src/app/_components/main_frame/navi_bar.tsx
@@ -65,6 +65,7 @@ export default function Navigationbar() {
65
<a
66
key={item.name}
67
href={item.href}
68
+ aria-label="NavigationBar"
69
aria-current={selected === item.name ? 'page' : undefined}
70
className={classNames(
71
selected === item.name ? 'bg-gray-700 dark:bg-gray-600' : 'text-sky-800 hover:bg-gray-500',
src/app/_components/main_frame/theme-switcher.tsx
@@ -87,6 +87,7 @@ const Switch = () => {
87
<button
88
suppressHydrationWarning={true}
89
className={styles.switch}
90
+ aria-label="ThemeSwitch"
91
onClick={handleModeSwitch}
92
>
93
</button>
0 commit comments