bravo68web-portfolio-nextjs/pages/404.js

12 lines
187 B
JavaScript
Raw Permalink Normal View History

2022-05-02 13:43:41 +00:00
import Page404 from "components/404Page";
import Footer from "components/footer";
2022-04-16 10:55:03 +00:00
export default function Custom404() {
2023-06-12 08:03:13 +00:00
return (
// <>
<Page404 />
/* <Footer />
2022-05-02 13:43:41 +00:00
</> */
2023-06-12 08:03:13 +00:00
);
2022-04-16 10:55:03 +00:00
}