Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAKE BUTTON CLICKALBLE #1824

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 20 additions & 44 deletions src/components/Homepage/GetInvolvedSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,9 @@ const GetInvolvedSection: React.FC = () => {
</p>
{/* Center the button */}
<div className="flex justify-center">
<Link
to="#"
className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition group-hover:bg-white group-hover:text-blue-700"
>
Learn More
</Link>
</div>
<a href="https://hacktoberfest.com/" className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition hover:bg-blue-700 cursor-pointer pointer-events-auto z-10"
target="_blank" rel="noopener noreferrer">Learn More</a>
</div>
<div className="absolute inset-0 bg-blue-100 opacity-10 rounded-lg"></div>
</div>

Expand All @@ -47,14 +43,10 @@ const GetInvolvedSection: React.FC = () => {
Join our workshops to learn about the latest technologies and best
practices in software development.
</p>
<div className="flex justify-center">
<Link
to="#"
className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition group-hover:bg-white group-hover:text-blue-700"
>
Learn More
</Link>
</div>
<div className="flex justify-center">
<a href="#" className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition hover:bg-blue-700 cursor-pointer pointer-events-auto z-10"
target="_blank" rel="noopener noreferrer">Learn More</a>
</div>
<div className="absolute inset-0 bg-blue-100 opacity-10 rounded-lg"></div>
</div>

Expand All @@ -67,14 +59,10 @@ const GetInvolvedSection: React.FC = () => {
Connect with fellow contributors and share ideas at our regular
community meetups.
</p>
<div className="flex justify-center">
<Link
to="#"
className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition group-hover:bg-white group-hover:text-blue-700"
>
Learn More
</Link>
</div>
<div className="flex justify-center">
<a href="https://www.linkedin.com/in/ajay-dhangar/" className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition hover:bg-blue-700 cursor-pointer pointer-events-auto z-10"
target="_blank" rel="noopener noreferrer">Learn More</a>
</div>
<div className="absolute inset-0 bg-blue-100 opacity-10 rounded-lg"></div>
</div>

Expand All @@ -88,13 +76,9 @@ const GetInvolvedSection: React.FC = () => {
experienced developers in the industry.
</p>
<div className="flex justify-center">
<Link
to="#"
className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition group-hover:bg-white group-hover:text-blue-700"
>
Learn More
</Link>
</div>
<a href="#" className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition hover:bg-blue-700 cursor-pointer pointer-events-auto z-10"
target="_blank" rel="noopener noreferrer">Learn More</a>
</div>
<div className="absolute inset-0 bg-blue-100 opacity-10 rounded-lg"></div>
</div>

Expand All @@ -109,13 +93,9 @@ const GetInvolvedSection: React.FC = () => {
</p>
{/* Center the button */}
<div className="flex justify-center">
<Link
to="#"
className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition group-hover:bg-white group-hover:text-blue-700"
>
Learn More
</Link>
</div>
<a href="#" className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition hover:bg-blue-700 cursor-pointer pointer-events-auto z-10"
target="_blank" rel="noopener noreferrer">Learn More</a>
</div>
<div className="absolute inset-0 bg-blue-100 opacity-10 rounded-lg"></div>
</div>

Expand All @@ -129,13 +109,9 @@ const GetInvolvedSection: React.FC = () => {
making a positive impact!
</p>
<div className="flex justify-center">
<Link
to="#"
className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition group-hover:bg-white group-hover:text-blue-700"
>
Learn More
</Link>
</div>
<a href="https://github.com/ajay-dhangar/algo" className="inline-block bg-blue-600 text-white px-4 py-2 rounded shadow transition hover:bg-blue-700 cursor-pointer pointer-events-auto z-10"
target="_blank" rel="noopener noreferrer">Learn More</a>
</div>
<div className="absolute inset-0 bg-blue-100 opacity-10 rounded-lg"></div>
</div>
</div>
Expand Down
Loading