From 32878dac4053c4b17d0d127f3991c19e6cad3b65 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 21:54:52 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=95=B8=EF=B8=8F=20Spider:=20[SEO=20improv?= =?UTF-8?q?ement]=20Use=20
=20tag=20for=20error=20page=20layout?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaced the generic `
` wrapper with a semantic `
` tag in `src/app/(frontend)/[locale]/error.tsx`. Co-authored-by: kourdroid <36898160+kourdroid@users.noreply.github.com> --- src/app/(frontend)/[locale]/error.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/(frontend)/[locale]/error.tsx b/src/app/(frontend)/[locale]/error.tsx index 486088b..df948c1 100644 --- a/src/app/(frontend)/[locale]/error.tsx +++ b/src/app/(frontend)/[locale]/error.tsx @@ -16,7 +16,8 @@ export default function Error({ }, [error]) return ( -
+
+ {/* SEO Benefit: Using
instead of
for the page's primary content wrapper improves semantic HTML structure, making the content more discoverable and accessible to crawlers. */}
⚠️ @@ -45,6 +46,6 @@ export default function Error({

ERROR_DIGEST: {error.digest || 'UNKNOWN'}

ERROR_MSG: {error.message}

-
+
) }