🤲 a11y: Add landmark to footer, labels updates, and sidebar text contrast (#3630)

* add landmark contentinfo to footer

* fix aria-label ai model menuitem for issue #3587

* changed group/today text color to #535353
This commit is contained in:
Vesna Tan 2024-08-16 03:27:56 -04:00 committed by GitHub
parent 93cf7bab02
commit 7f50d2f7c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 6 additions and 4 deletions

View file

@ -84,6 +84,7 @@ export default function Footer({ className }: { className?: string }) {
className ||
'relative flex items-center justify-center gap-2 px-2 py-2 text-center text-xs text-gray-600 dark:text-gray-300 md:px-[60px]'
}
role="contentinfo"
>
{footerElements.map((contentRender, index) => {
const isLastElement = index === footerElements.length - 1;