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

Updated the "Contribute to Github" & "Explore Algorithms" buttons #29

Merged
merged 2 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/components/Homepage/ContributeSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const ContributeSection: React.FC = () => {
<div className="mt-12">
<a
href="https://github.com/ajay-dhangar/algo"
className="inline-block px-8 py-4 bg-indigo-500 dark:bg-yellow-400 text-white dark:text-gray-900 rounded-full font-semibold transition hover:bg-indigo-600 dark:hover:bg-yellow-500"
className="inline-block px-8 py-4 bg-indigo-500 dark:bg-yellow-400 hover:text-white text-white dark:text-gray-900 rounded-full font-semibold transition hover:bg-indigo-600 dark:hover:bg-yellow-500"
>
Contribute on GitHub
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Homepage/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const HeroSection: React.FC = () => {
<div className="flex flex-col md:flex-row items-center justify-center space-y-4 md:space-y-0 md:space-x-6">
<Link
to="/algo/docs/"
className="flex items-center px-6 py-3 text-lg font-medium text-white bg-blue-600 hover:bg-blue-700 rounded-lg transition duration-300 ease-in-out shadow-lg transform hover:scale-105"
className="flex items-center px-6 py-3 text-lg font-medium hover:text-white text-white bg-blue-600 hover:bg-blue-700 rounded-lg transition duration-300 ease-in-out shadow-lg transform hover:scale-105"
>
Explore Algorithms <FaArrowRight className="ml-2" />
</Link>
Expand Down
Loading