mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-20 14:42:37 +02:00
17 lines
440 B
JavaScript
17 lines
440 B
JavaScript
import React from "react";
|
|
|
|
const PageNotFound = () => {
|
|
return (
|
|
<div className="flex items-center justify-center h-screen w-full bg-white rounded">
|
|
<div className="text-center">
|
|
<h1 className="text-[60px] lg:text-[120px] font-semibold text-black">
|
|
404
|
|
</h1>
|
|
<p className="text-[30px] lg:text-[50px] text-black">Page Not Found</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PageNotFound;
|