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

feat: added button that link to blog post in ambassador page #2297

Merged
merged 2 commits into from
Jan 13, 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
11 changes: 10 additions & 1 deletion pages/community/ambassadors/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,12 +240,21 @@ function Index() {
community members all over the world, build the future of
Event-Driven APIs.
</Heading>
<div className="md:flex md:item-center w-full md:justify-between">
<Button
className="block md:inline-block focus:outline-none mt-10 text-center"
className="block md:inline-block focus:outline-none mt-5 md:mt-10 text-center md:w-[48%]"
text="Become an Ambassador now"
href="https://github.com/asyncapi/community/blob/master/AMBASSADOR_ORGANIZATION.md#are-you-interested-in-becoming-an-official-asyncapi-ambassador"
target="_blank"
/>
<Button
bgClassName="bg-transparent border border-primary-600 hover:bg-primary-400"
className="block md:inline-block focus:outline-none mt-5 md:mt-10 text-center md:w-[48%]"
text="Learn more"
href="https://www.asyncapi.com/blog/asyncapi-ambassador-program"
target="_blank"
/>
</div>
</div>
</div>
</div>
Expand Down