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 className="mt-8">
<Link
href="/contact"
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
<Link 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">
Connect with Me
</a>
</Link>
</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>
</div>
{!user && (
<Link
href="/auth"
className="bg-purple text-white font-medium py-2 px-6 rounded-full hover:bg-opacity-90 transition duration-300"
>
Sign Up to Participate
<Link href="/auth">
<a 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>
</Link>
)}
</div>