export default function NotFound() {
  return (
    <div className="flex h-screen">
      <h1 className="m-auto">Not Found</h1>
    </div>
  );
}