feat(a11y): add semantic <main> landmark to app layout

This commit is contained in:
saravanakumardb1 2026-03-27 16:43:55 -07:00
parent 1bab8a87ac
commit 0f56b12f3c

View File

@ -5,7 +5,7 @@ export default function ProductLayout({ children }: { children: ReactNode }) {
return (
<>
<KeyboardShortcuts />
{children}
<main>{children}</main>
</>
);
}