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

add Jacques Dainat #354

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
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/img/jacques-dainat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 9 additions & 1 deletion src/components/AmbassadorCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ export interface Props {
linkedin?: string;
twitter?: string;
mastodon?: string;
bluesky?: string;
}

const { name, img, country, github, linkedin, twitter, mastodon } = Astro.props;
const { name, img, country, github, linkedin, twitter, mastodon, bluesky } = Astro.props;
---

<div class="feature">
Expand Down Expand Up @@ -45,6 +46,13 @@ const { name, img, country, github, linkedin, twitter, mastodon } = Astro.props;
</a>
)
}
{
bluesky && (
<a href={bluesky} target="_blank">
<i class="fa fa-rss fa-lg fa-lg" />
</a>
)
}
<br />
</p>
</div>
Expand Down
17 changes: 17 additions & 0 deletions src/pages/our_ambassadors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,23 @@ import AmbassadorCard from "@components/AmbassadorCard.astro";
<a href="https://github.com/LiuzLab/AI_MARRVEL" target="_blank">AI-MARRVEL</a>.
</AmbassadorCard>

<AmbassadorCard
name="Jacques Dainat"
img="jacques-dainat.jpg"
country="fr"
github="Juke34"
linkedin="jacques-dainat-02257376"
mastodon="https://genomic.social/@jacquesdainat"
bluesky="https://bsky.app/profile/jacquesdainat.bsky.social"
>
Holding a PhD in Bioinformatics from <a href="https://www.univ-amu.fr/en" target="_blank"
>Aix Marseille University</a
>, Jacques is currently Bioinformatician at <a href="https://en.ird.fr" target="_blank"> IRD </a> and part of the
<a href="https://bioinfo.ird.fr" target="_blank"> i-Trop platform</a>. He focuses on simplifying complex
analyses through automation, ensuring that biologists can harness the power of bioinformatics without technical
barriers.
</AmbassadorCard>

<AmbassadorCard
name="James Fellows Yates"
img="james.jpeg"
Expand Down
Loading