Skip to content

Commit

Permalink
chore: change signup to login button
Browse files Browse the repository at this point in the history
  • Loading branch information
pantheredeye committed Dec 13, 2024
1 parent ad9b20e commit ede9418
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions web/src/pages/HomePage/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ const HomePage = () => {
>
Get Started Today
</Link> */}
<button
onClick={() =>
(window.location.href = 'mailto:[email protected]')
}
className="mt-8 rounded-xl bg-indigo-600 px-6 py-3 text-lg font-medium text-white shadow-lg hover:bg-indigo-500 focus:outline-none"
>
Email Us
</button>

<div className="py-8 px-4 text-center">
<h2 className="text-4xl font-semibold text-gray-200">
Expand All @@ -111,14 +119,6 @@ const HomePage = () => {
<div className="mt-8 mx-auto max-w-md">
<LeadForm />
</div>
<button
onClick={() =>
(window.location.href = 'mailto:[email protected]')
}
className="mt-8 rounded-xl bg-indigo-600 px-6 py-3 text-lg font-medium text-white shadow-lg hover:bg-indigo-500 focus:outline-none"
>
Email Us
</button>
</div>
</div>
</div>
Expand Down Expand Up @@ -179,10 +179,10 @@ const HomePage = () => {
</h2>
<div className="mt-6 flex flex-col items-center space-y-4 md:flex-row md:space-x-4 md:space-y-0">
<Link
to={routes.signup()}
to={routes.login()}
className="rounded-xl bg-indigo-600 px-6 py-3 font-medium text-white shadow-lg hover:bg-indigo-500"
>
Get Started Today
Log In
</Link>

<button className="rounded-xl bg-gray-700 px-6 py-3 font-medium text-white shadow-lg hover:bg-gray-600">
Expand Down

0 comments on commit ede9418

Please sign in to comment.