From b077921179f7ffd0cb893917db1d97365104f0a3 Mon Sep 17 00:00:00 2001 From: Claudio Wunder Date: Sun, 20 Jul 2025 20:04:34 +0200 Subject: [PATCH 1/4] hotfix: make 404 page non-client/static --- apps/site/app/[locale]/not-found.tsx | 8 +++++--- apps/site/app/global-error.tsx | 7 ++++--- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/apps/site/app/[locale]/not-found.tsx b/apps/site/app/[locale]/not-found.tsx index 7972f7c265ac4..e97bdfef7032d 100644 --- a/apps/site/app/[locale]/not-found.tsx +++ b/apps/site/app/[locale]/not-found.tsx @@ -1,5 +1,3 @@ -'use client'; - import { ArrowRightIcon } from '@heroicons/react/24/solid'; import Image from 'next/image'; import { useTranslations } from 'next-intl'; @@ -13,10 +11,12 @@ const NotFoundPage: FC = () => { return ( - 404 + 404 +

{t('layouts.error.notFound.title')}

+
{ />
+

{t('layouts.error.notFound.description')}

+