Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
feat: 2 CTAs on homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiShandy committed Mar 20, 2023
1 parent f62597a commit 52c4788
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions client/src/lib/pages/Home.tsx
Expand Up @@ -69,6 +69,20 @@ const Home = () => {
<h2 className="mt-6 text-lg leading-8 text-gray-600">
A place to discover and share great products
</h2>
<div className="mt-6 grid grid-cols-2 gap-4">
<a
href="/discover"
className="rounded-md bg-gray-600 py-2.5 px-3.5 text-sm font-semibold text-white shadow-sm hover:bg-gray-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-gray-600"
>
Discover Products
</a>
<a
href="/sell"
className="rounded-md bg-white py-2.5 px-3.5 text-sm font-semibold text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50"
>
Sell a product
</a>
</div>
</div>
<SubscribeForm />
</>
Expand Down

0 comments on commit 52c4788

Please sign in to comment.