Emphasize community access button to encourage more users to join

Updates the 'Join Our Community' button color to rose-800 in CommunitySection component.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: d004b9e1-f9be-46e2-acda-f440ccd644a9
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/0a956444-f401-4e77-9455-531cc1e91555.jpg
This commit is contained in:
JeffEmmett 2025-05-21 14:26:09 +00:00
parent 0619200fbf
commit 7add99429c
1 changed files with 2 additions and 2 deletions

View File

@ -163,8 +163,8 @@ export function CommunitySection() {
<div className="text-center mt-12">
<Link to="/auth">
<button className="px-8 py-3 bg-teal text-white font-medium rounded-full hover:bg-opacity-90 transition duration-300">
{user ? "Access Community Dashboard" : "Join Our Community"}
<button className="px-8 py-3 bg-rose-800 text-white font-bold rounded-full hover:bg-rose-900 transition duration-300 shadow-md">
{user ? "Access Community Dashboard" : "Join My Community"}
</button>
</Link>
</div>