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 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 */}
); }