From 8d9ecb521e5126ba2f2658bfcc21a14834bde0dc Mon Sep 17 00:00:00 2001 From: dyzulk <66510723+dyzulk@users.noreply.github.com> Date: Fri, 9 Jan 2026 13:21:47 +0700 Subject: [PATCH] refactor: remove unused (admin) and (full-width-pages) directories --- .../error-404/Error404Client.tsx | 52 ------------------- .../(error-pages)/error-404/page.tsx | 11 ---- src/app/(full-width-pages)/layout.tsx | 7 --- 3 files changed, 70 deletions(-) delete mode 100644 src/app/(full-width-pages)/(error-pages)/error-404/Error404Client.tsx delete mode 100644 src/app/(full-width-pages)/(error-pages)/error-404/page.tsx delete mode 100644 src/app/(full-width-pages)/layout.tsx diff --git a/src/app/(full-width-pages)/(error-pages)/error-404/Error404Client.tsx b/src/app/(full-width-pages)/(error-pages)/error-404/Error404Client.tsx deleted file mode 100644 index a7ee4b0..0000000 --- a/src/app/(full-width-pages)/(error-pages)/error-404/Error404Client.tsx +++ /dev/null @@ -1,52 +0,0 @@ -"use client"; - -import GridShape from "@/components/common/GridShape"; -import Image from "next/image"; -import Link from "next/link"; -import React from "react"; -import { useTranslations } from "next-intl"; - -export default function Error404Client() { - const t = useTranslations("Error"); - - return ( -
- {t('desc_404')} -
- - - {t('back_to_home')} - -- © {new Date().getFullYear()} - TrustLab -
-