diff --git a/apps/website/app/[locale]/not-found.tsx b/apps/website/app/[locale]/not-found.tsx
index 1eee5946..e690048a 100644
--- a/apps/website/app/[locale]/not-found.tsx
+++ b/apps/website/app/[locale]/not-found.tsx
@@ -1,27 +1,5 @@
-import Link from 'next/link'
-
-import { SlimLayout } from '../../components/SlimLayout'
-// import { Button } from "../components/Button";
-import { Logo } from '../../components/shared/Logo'
+import { SlimLayout } from '@/components/SlimLayout'
export default function NotFound() {
- return (
-
-
-
-
-
-
-
404
-
- Page not found
-
-
- Sorry, we couldn’t find the page you’re looking for.
-
- {/* */}
-
- )
+ return
}
diff --git a/apps/website/app/not-found.tsx b/apps/website/app/not-found.tsx
index 69915615..77d255e1 100644
--- a/apps/website/app/not-found.tsx
+++ b/apps/website/app/not-found.tsx
@@ -1,41 +1,6 @@
'use client'
-import { Logo } from '@/components/shared/Logo'
-import { SlimLayout } from '@/components/SlimLayout'
import Error from 'next/error'
-import Link from 'next/link'
-
-// Render the default Next.js 404 page when a route
-// is requested that doesn't match the middleware and
-// therefore doesn't have a locale associated with it.
-
-// export default function NotFound() {
-// return (
-//
-//
-//
-//
-//
-//
-//
-//
-//
-// 404
-//
-//
-// Page not found
-//
-//
-// Sorry, we couldn’t find the page you’re looking for.
-//