-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: change signup to login button
- Loading branch information
1 parent
ad9b20e
commit ede9418
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"> | ||
|
@@ -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> | ||
|
@@ -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"> | ||
|