From 1a378f7dc3144c86a01bcdd4bcac9a616e494051 Mon Sep 17 00:00:00 2001 From: Mayuri Gade Date: Sat, 30 May 2026 21:11:28 +0530 Subject: [PATCH] fix: remove duplicate main landmarks and id='main-content' across pages - layout.tsx: single
wraps all children (no change) - page.tsx: removed duplicate
wrapper around VideoEditor - privacy/page.tsx: changed
to
to avoid nested main landmarks - contact/page.tsx: changed
to
to avoid nested main landmarks Fixes duplicate id='main-content' and nested
accessibility issues. --- src/app/contact/page.tsx | 4 ++-- src/app/page.tsx | 4 +--- src/app/privacy/page.tsx | 4 ++-- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 13b04261..db7d9982 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -6,7 +6,7 @@ export const metadata: Metadata = { }; export default function ContactPage() { return ( -
+
For questions, ideas, and general help.

-
+
); } diff --git a/src/app/page.tsx b/src/app/page.tsx index 381fbd80..4edd2d73 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,9 +13,7 @@ export default function Home() { ⭐ Star on GitHub -
- -
+
-
+ ); } \ No newline at end of file