Skip to content
Snippets Groups Projects
Unverified Commit 7beac4cc authored by Noel Simbolon's avatar Noel Simbolon
Browse files

feat: not found page

parent 16525dda
1 merge request!1Dev
const NotMatch = () => { const NotMatch = () => {
return ( return (
<div> <>
<h1 className="text-4xl text-white">404 Not Found</h1> <div className="h-screen flex flex-col items-center justify-center">
</div> <h1 className="font-bold text-3xl text-neutral-100">
Oops!
</h1>
<p className="my-5 text-neutral-100">
Sorry, an unexpected error has occurred.
</p>
<p className="text-neutral-100">
Not Found
</p>
</div>
</>
); );
}; };
export default NotMatch; export default NotMatch;
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment