diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index b2e7b3f..2ae0897 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -2,62 +2,68 @@ import React from 'react'; import Link from 'next/link'; import { Button } from '@/components/ui/Button'; +import '@/styles/globals.css'; + export default function NotFound() { return ( -
-
- {/* 404 Icon */} -
-
- - - + + +
+
+ {/* 404 Icon */} +
+
+ + + +
+ + {/* 404 Text */} +

404

+

+ Page Not Found +

+

+ Sorry, we couldn't find the page you're looking for. It might have been moved or deleted. +

+
+ + {/* Action Button */} +
+ + + +
- - {/* 404 Text */} -

404

-

- Page Not Found -

-

- Sorry, we couldn't find the page you're looking for. It might have been moved or deleted. -

- - {/* Action Button */} -
- - - -
-
-
+ + ); }