export default function NotFound() {
  return (
    <div className="flex h-screen flex-col items-center justify-center">
      <h1 className="text-3xl font-bold">404 | Page Not Found</h1>
      <p className="text-gray-500">
        The page you are looking for doesn’t exist.
      </p>
    </div>
  );
}
