diff --git a/src/pages/NotFound.tsx b/src/pages/NotFound.tsx index 85e429d..fbc2030 100644 --- a/src/pages/NotFound.tsx +++ b/src/pages/NotFound.tsx @@ -1,6 +1,9 @@ import { useSeoMeta } from "@unhead/react"; -import { useLocation } from "react-router-dom"; +import { useLocation, Link } from "react-router-dom"; import { useEffect } from "react"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Button } from "@/components/ui/button"; +import { Home, ArrowLeft } from "lucide-react"; const NotFound = () => { const location = useLocation(); @@ -18,13 +21,35 @@ const NotFound = () => { }, [location.pathname]); return ( -
Oops! Page not found
- - Return to Home - ++ The page you're looking for doesn't exist or has been moved. +
+