corrected footer and linked the click to apply

This commit is contained in:
Ebube
2024-03-14 04:54:46 +01:00
parent 9ec1013173
commit db21572651
15 changed files with 165 additions and 84 deletions
+14
View File
@@ -0,0 +1,14 @@
import React from "react";
import { GetStarted as Main, Header, Footer } from "../components";
const GetStartedPage: React.FC = () => {
return (
<>
<Header hideSidebar={true} hideMenu={true} />
<Main />
<Footer />
</>
);
};
export default GetStartedPage;