Skip to content
Open
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
Binary file added public/Steam-Smith-Logo-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 36 additions & 3 deletions src/components/sections/Sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ export default function Sponsors() {
</h2>
</div>

{/* Gold Sponsor */}
{/* Gold Sponsors */}
<div className="text-center mb-12">
<h3 className="text-2xl font-bold text-yellow-400 mb-6">Gold Sponsor</h3>
<div className="flex justify-center">
<h3 className="text-2xl font-bold text-yellow-400 mb-6">Gold Sponsors</h3>
<div className="grid gap-8 md:grid-cols-3 place-items-center max-w-4xl mx-auto">
<div className="p-6 bg-gradient-to-br from-yellow-400/20 to-yellow-600/20 rounded-xl border border-yellow-400/30 backdrop-blur-sm">
<a href="https://devfolio.co/" target="_blank" rel="noopener noreferrer">
<img
Expand All @@ -21,6 +21,24 @@ export default function Sponsors() {
/>
</a>
</div>
<div className="p-6 bg-gradient-to-br from-yellow-400/20 to-yellow-600/20 rounded-xl border border-yellow-400/30 backdrop-blur-sm">
<a href="https://www.steamsmithsystems.com/" target="_blank" rel="noopener noreferrer">
<img
src="/Steam-Smith-Logo-1.png"
alt="PERPLEXITY LOGO"
className="w-auto h-32 rounded-lg shadow-lg bg-white p-4"
/>
</a>
</div>
<div className="p-6 bg-gradient-to-br from-yellow-400/20 to-yellow-600/20 rounded-xl border border-yellow-400/30 backdrop-blur-sm">
<a href="https://www.perplexity.ai/" target="_blank" rel="noopener noreferrer">
<img
src="/perplexity.png"
alt="PERPLEXITY LOGO"
className="w-auto h-32 rounded-lg shadow-lg bg-white p-4"
/>
</a>
</div>
</div>
</div>

Expand Down Expand Up @@ -49,6 +67,21 @@ export default function Sponsors() {
</div>
</div>
</div>

{/* Wanna sponsor us section */}
<div className="text-center mt-16">
<a
href="https://mail.google.com/mail/?view=cm&fs=1&to=opensourceprogrammingclub.vitc@gmail.com&su=Sponsorship Inquiry&body=Hello! I'm interested in sponsoring VOID hackathon. Please let me know more about the sponsorship opportunities."
className="inline-flex items-center space-x-3 px-8 py-4 rounded-2xl bg-gradient-to-r from-purple-500/20 to-blue-500/20 backdrop-blur-xl border border-white/30 group hover:scale-105 transition-all duration-300 cursor-pointer"
>
<span className="text-2xl group-hover:rotate-12 transition-transform duration-300">💰</span>
<div className="text-left">
<p className="text-white font-semibold">Want to sponsor us?</p>
<p className="text-white/70 text-sm">Join our mission to empower builders</p>
</div>
<span className="text-2xl group-hover:-rotate-12 transition-transform duration-300">✨</span>
</a>
</div>
</section>
);
}