corrected footer and linked the click to apply
This commit is contained in:
@@ -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;
|
||||
@@ -1,6 +1,7 @@
|
||||
import { FC } from "react";
|
||||
import { Hero, Header, TopHeader, Requirements } from "../components";
|
||||
|
||||
const HomePage = () => {
|
||||
const HomePage: FC = () => {
|
||||
return (
|
||||
<>
|
||||
<TopHeader />
|
||||
|
||||
+2
-1
@@ -1,4 +1,5 @@
|
||||
import HomePage from "./HomePage";
|
||||
import LoginPage from "./LoginPage";
|
||||
import GetStartedPage from "./GetStartedPage";
|
||||
|
||||
export {HomePage, LoginPage}
|
||||
export {HomePage, LoginPage, GetStartedPage}
|
||||
Reference in New Issue
Block a user