bravo68web-portfolio-nextjs/components/404Page.jsx

18 lines
290 B
React
Raw Normal View History

2022-05-02 13:43:41 +00:00
import { Page404Style } from "./404Page.style";
2022-05-27 08:07:44 +00:00
import Link from "next/link";
2022-05-02 13:43:41 +00:00
function Page404() {
2023-06-12 08:03:13 +00:00
return (
<Page404Style>
<div>
404 !!
<div className="backtohome">
<Link href="/">Back to Home</Link>
</div>
</div>
</Page404Style>
);
2022-05-02 13:43:41 +00:00
}
export default Page404;