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: added navigation links to expense breakdown and also added a hover effect #2653

Closed
Closed
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
32 changes: 22 additions & 10 deletions components/FinancialSummary/ExpenseBreakdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ export default function ExpenseBreakdown() {
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-10 mt-8 mx-3">

<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center">
<a href='https://www.asyncapi.com/blog/beyond-boundaries' target='_blank'>
<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center transform transition-transform hover:scale-110 active:scale-90">
<div className="text-darkGunMetal">
<div className="flex flex-col items-center">
<img src="/img/illustrations/MentorshipProgram.webp" alt="Mentorship Program" className="w-1/5 h-auto object-cover rounded-md m-1" />
Expand All @@ -27,8 +28,10 @@ export default function ExpenseBreakdown() {
<p className="text-base text-center text-darkGunMetal">Our AsyncAPI Mentorship program offers paid guidance to develop valuable features, investing in tools and motivated individuals for community benefit.</p>
</div>
</div>
</a>

<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center">
<a href='https://github.com/orgs/asyncapi/discussions/963' target='_blank'>
<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center transform transition-transform hover:scale-110 active:scale-90">
<div className="text-darkGunMetal">
<div className="flex flex-col items-center">
<img src="/img/illustrations/BountyProgram.webp" alt="Bounty Program" className="w-1/5 h-auto object-cover rounded-md m-1" />
Expand All @@ -37,8 +40,10 @@ export default function ExpenseBreakdown() {
<p className="text-base text-center text-darkGunMetal">Rewarding contributors regardless of affiliation or volunteer status. Free mentoring and support for newcomers to build portfolios and unlock tech prospects.</p>
</div>
</div>

<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center">
</a>

<a href='https://github.com/orgs/asyncapi/discussions/categories/asyncapi-conf-2022-organization' target='_blank'>
<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center transform transition-transform hover:scale-110 active:scale-90">
<div className="text-darkGunMetal">
<div className="flex flex-col items-center">
<img src="/img/illustrations/Events.webp" alt="Events" className="w-1/5 h-auto object-cover rounded-md m-1" />
Expand All @@ -47,8 +52,10 @@ export default function ExpenseBreakdown() {
<p className="text-base text-center text-darkGunMetal">Supporting AsyncAPI conferences incurs costs for services and travel arrangements. Your contributions facilitate event hosting and community growth.</p>
</div>
</div>

<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center">
</a>

<a href='https://www.store.asyncapi.com/' target='_blank'>
<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center transform transition-transform hover:scale-110 active:scale-90">
<div className="text-darkGunMetal">
<div className="flex flex-col items-center">
<img src="/img/illustrations/SwagStore.webp" alt="Swag Store" className="w-1/5 h-auto object-cover rounded-md m-1" />
Expand All @@ -57,18 +64,22 @@ export default function ExpenseBreakdown() {
<p className="text-base text-center text-darkGunMetal">Creating a swag store for seamless distribution to contributors, mentees, ambassadors, and community members. Store profits can fund complimentary swag expenses.</p>
</div>
</div>
</a>

<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center">
<a href='https://github.com/orgs/asyncapi/discussions/515' target='_blank'>
<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center transform transition-transform hover:scale-110 active:scale-90">
<div className="text-darkGunMetal">
<div className="flex flex-col items-center">
<img src="/img/illustrations/Hiring.webp" alt="Hiring" className="w-1/5 h-auto object-cover rounded-md m-1" />
<h2 className="text-2xl font-semibold my-2 text-center text-darkGunMetal">Hiring</h2>
</div>
<p className="text-base text-center text-darkGunMetal">To support our community, we require full time commitment. Open Collective helps us hire for AsyncAPI. <a style={{ textDecoration: "underline" }} href="https://www.linkedin.com/in/v-thulisile-sibanda/" target='_blank'>Thulie</a> joined us as a community manager, with plans to expand our team.</p>
<p className="text-base text-center text-darkGunMetal">To support our community, we require full time commitment. Open Collective helps us hire for AsyncAPI. <a style={{ textDecoration: "underline" }} href="https://www.linkedin.com/in/v-thulisile-sibanda/" target='_blank'>Thulie</a> has joined us as a community manager, with plans to expand our team.</p>
</div>
</div>

<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center">
</a>

<a href='https://github.com/orgs/asyncapi/discussions/295' target='_blank'>
<div className="bg-white rounded-md shadow-md p-4 flex flex-col items-center transform transition-transform hover:scale-110 active:scale-90" >
<div className="text-darkGunMetal">
<div className="flex flex-col items-center">
<img src="/img/illustrations/Services.webp" alt="Services" className="w-1/5 h-auto object-cover rounded-md m-1" />
Expand All @@ -77,6 +88,7 @@ export default function ExpenseBreakdown() {
<p className="text-base text-center text-darkGunMetal">Occasionally, we must pay for services such as Zoom or Descript, as they are not available through specific Open Source support programs.</p>
</div>
</div>
</a>

</div>
</div>
Expand Down
Loading