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

βœ… Fix proper redirect profile link #795

Closed
Closed
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
10 changes: 5 additions & 5 deletions ml-nexus/src/components/ContributeSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import Btn from './Btn';

const ContributeSection = () => {
return (
<section className="py-16 px-4 bg-[#EDF7F6] dark:bg-[#253341] text-[#28333F] dark:text-[#AFC2CB]">
<div className="max-w-3xl mx-auto bg-white dark:bg-[#324655] rounded-lg p-8 text-center shadow-md">
<h2 className="text-2xl md:text-3xl font-semibold mb-4">
<section className="py-20 px-6 bg-[#EDF7F6] dark:bg-[#253341] text-[#28333F] dark:text-[#AFC2CB] animate-fadeIn">
<div className="max-w-4xl mx-auto bg-white dark:bg-[#324655] rounded-xl p-12 text-center shadow-lg transition-shadow duration-300 hover:shadow-2xl border-2 border-transparent border-animated">
<h2 className="text-3xl md:text-4xl font-bold mb-6 animate-slideIn">
Each and Every Contribution Matters
</h2>
<p className="text-base md:text-lg mb-8">
<p className="text-lg md:text-xl mb-10 animate-fadeInDelay">
Join us in building something great. Your unique skills and knowledge can make a difference!
</p>
<Btn className='mx-auto md:w-1/4 w-32 flex items-center justify-center hover:bg-red-200 hover:text-yellow-500' value={{name:"Contribute Now", ref: "https://github.com/UppuluriKalyani/ML-Nexus/issues"}} />
<Btn className='mx-auto md:w-1/3 w-40 flex items-center justify-center bg-blue-500 text-white rounded-lg shadow hover:bg-blue-600 hover:scale-110 transition-all duration-300 animate-bounceOnHover' value={{name:"Contribute Now", ref: "https://github.com/UppuluriKalyani/ML-Nexus/issues"}} />
</div>
</section>
);
Expand Down
18 changes: 11 additions & 7 deletions ml-nexus/src/components/Contributors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ function Contributors() {
return (
<>
<div className="p-10 ">
<h1 className='text-4xl font-bold'>Our Contributors</h1>
<div className="px-20 mt-6 flex flex-wrap gap-6">
{contributors.map((c, i) => <div key={i} className="md:h-48 w-48 bg-[#324655] rounded-lg flex flex-col items-center justify-between">
<div className="h-2/3 w-2/3 rounded-full overflow-hidden bg-gray-700 mt-2">
<img className='h-full w-full object-cover' src={c.avatar_url} alt={c.avatar_url} />
<h1 className='text-4xl font-bold text-center mb-6'>Our Contributors</h1>
<div className="px-4 mt-6 grid grid-cols-9 sm:grid-cols-6 md:grid-cols-4 lg:grid-cols-5 gap-3 justify-items-center">
{contributors.map((c, i) => (
<div key={i} className="relative md:h-48 w-48 bg-[#324655] rounded-lg flex flex-col items-center justify-between shadow-lg transition-transform transform hover:scale-105 border-2 border-transparent hover:border-blue-500">
<div className="h-2/3 w-2/3 rounded-full overflow-hidden bg-gray-700 mt-2">
<img className='h-full w-full object-cover' src={c.avatar_url} alt={c.login} />
</div>
<a href={c.html_url} target="_blank" rel="noopener noreferrer" className='md:text-base text-xs mb-2 bg-teal-800 px-4 py-2 rounded-full text-center'>
{c.login}
</a>
</div>
<h1 className='md:text-base text-xs mb-2 bg-teal-800 px-4 py-2 rounded-full'>{c.login}</h1>
</div>)}
))}
</div>
</div>
</>
Expand Down
Loading