Restored to '7a45caa01e29ba466f0f4bff6b10c086c1ee2157'

Replit-Restored-To: 7a45caa01e
This commit is contained in:
JeffEmmett 2025-05-07 02:48:49 +00:00
parent 5487b851a3
commit 6c21fef897
2 changed files with 8 additions and 10 deletions

View File

@ -69,11 +69,10 @@ export function AboutSection() {
</div> </div>
<div className="mt-8"> <div className="mt-8">
<Link <Link href="/contact">
href="/contact" <a className="inline-block bg-teal text-white font-medium py-3 px-6 rounded-full hover:bg-opacity-90 transition duration-300">
className="inline-block bg-teal text-white font-medium py-3 px-6 rounded-full hover:bg-opacity-90 transition duration-300" Connect with Me
> </a>
Connect with Me
</Link> </Link>
</div> </div>
</div> </div>

View File

@ -98,11 +98,10 @@ export function CommunitySection() {
<p className="text-gray-600 text-sm">Share your journey, ask questions, and connect with others.</p> <p className="text-gray-600 text-sm">Share your journey, ask questions, and connect with others.</p>
</div> </div>
{!user && ( {!user && (
<Link <Link href="/auth">
href="/auth" <a className="bg-purple text-white font-medium py-2 px-6 rounded-full hover:bg-opacity-90 transition duration-300">
className="bg-purple text-white font-medium py-2 px-6 rounded-full hover:bg-opacity-90 transition duration-300" Sign Up to Participate
> </a>
Sign Up to Participate
</Link> </Link>
)} )}
</div> </div>