From 3a9f9b819efc7a0f34fd14eb07e3c57ee7929968 Mon Sep 17 00:00:00 2001 From: Val <44112412+LawfaL@users.noreply.github.com> Date: Tue, 25 Feb 2025 01:54:44 +0700 Subject: [PATCH] fix: redirection --- src/components/Pages/Page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Pages/Page.tsx b/src/components/Pages/Page.tsx index e95b71c..7f7b962 100644 --- a/src/components/Pages/Page.tsx +++ b/src/components/Pages/Page.tsx @@ -11,7 +11,7 @@ export default async function Page({ slug }: PageProps) { const page = await fetchPageBySlug({ slug }); if (!page) { - redirect("/404"); + redirect("/page/not-found"); } return (