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('title_404')}
-
-
-
-
-
-
- {t('desc_404')}
-
-
-
- {t('back_to_home')}
-
-
- {/* */}
-
- © {new Date().getFullYear()} - TrustLab
-
-
- );
-}
diff --git a/src/app/(full-width-pages)/(error-pages)/error-404/page.tsx b/src/app/(full-width-pages)/(error-pages)/error-404/page.tsx
deleted file mode 100644
index bddcabb..0000000
--- a/src/app/(full-width-pages)/(error-pages)/error-404/page.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-import { Metadata } from "next";
-import Error404Client from "./Error404Client";
-
-export const metadata: Metadata = {
- title: "Page Not Found",
- description: "The page you are looking for does not exist.",
-};
-
-export default function Error404() {
- return ;
-}
diff --git a/src/app/(full-width-pages)/layout.tsx b/src/app/(full-width-pages)/layout.tsx
deleted file mode 100644
index 4db6477..0000000
--- a/src/app/(full-width-pages)/layout.tsx
+++ /dev/null
@@ -1,7 +0,0 @@
-export default function FullWidthPageLayout({
- children,
-}: {
- children: React.ReactNode;
-}) {
- return {children}
;
-}