Skip to content

Commit

Permalink
fix: 404
Browse files Browse the repository at this point in the history
  • Loading branch information
whes1015 committed Dec 13, 2024
1 parent 1ff7838 commit 12d844a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"use client";

import { Suspense } from "react";
import { LoadingState } from "@/components/loading";

export default function NotFound() {
return (
<Suspense fallback={<LoadingState />}>
<div className="py-20 text-center">
<h2 className="mb-4 text-3xl font-bold">Page Not Found</h2>
</div>
</Suspense>
);
}

0 comments on commit 12d844a

Please sign in to comment.