NotFound Page Added

This commit is contained in:
2024-01-18 10:15:49 +00:00
parent 2eddded3c6
commit 3fc45cffb4
11 changed files with 36 additions and 24 deletions
+19
View File
@@ -0,0 +1,19 @@
import React from "react";
import Navbar from "../Components/Navbar/Navbar";
import HeroSec from "../Components/HeroSec/HeroSec";
import Footer from "../Components/Footer/Footer";
const NotFound = () => {
return (
<>
<Navbar />
<HeroSec
heading="404"
paragraph="The page you are looking for does not exist :("
/>
<Footer />
</>
);
};
export default NotFound;