Added social links to env and added hero text to the pages

This commit is contained in:
Ebube
2024-03-20 13:12:08 +01:00
parent ee94a59f75
commit 32f2a358b2
14 changed files with 230 additions and 92 deletions
+9 -5
View File
@@ -1,13 +1,17 @@
import React from "react";
import { GetStarted as Main, Header, Footer } from "../components";
const GetStartedPage :React.FC = () => {
const GetStartedPage: React.FC = () => {
return (
<>
<div className="relative">
<Header hideSidebar={true} hideMenu={true} />
<Main />
<Footer />
</>
<div className="flex flex-col min-h-[85vh] justify-between">
<Main />
<div className="self-end w-full">
<Footer />
</div>
</div>
</div>
);
};