moving online

This commit is contained in:
QkoSad
2022-11-07 19:38:16 +02:00
parent 53737bce7f
commit 6b5c61de0b
34 changed files with 2005 additions and 144 deletions
+19
View File
@@ -0,0 +1,19 @@
import { FaHome } from "react-icons/fa";
import { Link } from "react-router-dom";
export default function NotFound() {
return (
<div className="hero">
<div className="text-center hero-content">
<div className="max-w-lg">
<h1 className="text-8xl font-bold mb-8">Oop!</h1>
<p className="text-5xl mb-8">404 - Page not found!</p>
<Link className="btn btn-primary btn-lg" to="/">
<FaHome className="mr-2" />
Back To Home
</Link>
</div>
</div>
</div>
);
}