From 682d9a480ef83ec2ab0ab8dcfd99409033a4e3ea Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 22:08:34 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=95=B8=EF=B8=8F=20Spider:=20Fix=20invalid?= =?UTF-8?q?=20nested=20
=20tags=20in=20Actualit=C3=A9s=20detail=20pag?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaced the nested `
` element wrapping the article body with a `
` inside `src/app/(frontend)/[locale]/actualites/[slug]/page.tsx` to ensure valid HTML5 semantics and improve search engine crawlability. Also added an explanatory comment for the SEO benefit. Co-authored-by: kourdroid <36898160+kourdroid@users.noreply.github.com> --- src/app/(frontend)/[locale]/actualites/[slug]/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/(frontend)/[locale]/actualites/[slug]/page.tsx b/src/app/(frontend)/[locale]/actualites/[slug]/page.tsx index e4026ac..937006c 100644 --- a/src/app/(frontend)/[locale]/actualites/[slug]/page.tsx +++ b/src/app/(frontend)/[locale]/actualites/[slug]/page.tsx @@ -156,7 +156,8 @@ export default async function Actualite({ params: paramsPromise }: Args) { {/* CENTER COLUMN: Main Article (Left aligned flow) */} -
+ {/* SEO: Changed from
to
to prevent invalid nested
tags within the page's outer layout, maintaining valid HTML5 semantics and ensuring proper crawlability. */} +
{/* Hero Image */} @@ -254,7 +255,7 @@ export default async function Actualite({ params: paramsPromise }: Args) {
-
+
{/* RIGHT COLUMN: Related / Latest News */}