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
+20
View File
@@ -0,0 +1,20 @@
import { FC } from "react";
const GetStarted: FC = () => {
return (
<div className="w-full flex items-center justify-center">
<div className="containerMode">
<h1 className="font-semibold text-[2.375rem] text-[#5C2684] my-[.5rem]">
Lets Get You Started
</h1>
<div className="w-full rounded py-3 bg-[#5C2684] px-5">
<p className="text-base text-[#FBB700] tracking-[3%] font-extrabold w-fit">
BASIC INFORMATION
</p>
</div>
</div>
</div>
);
};
export default GetStarted;
+3
View File
@@ -0,0 +1,3 @@
import GetStarted from "./GetStarted";
export { GetStarted };