Skip to content

Commit 07ad877

Browse files
add Jacques Dainat (#354)
* add Jacques Dainat * Add support to Bluesky in Ambassador Card * Fix linting * reduce Jacques bio * Fix linting --------- Co-authored-by: Marcel Ribeiro-Dantas <mribeirodantas@seqera.io> Co-authored-by: Marcel Ribeiro-Dantas <marcel.ribeirodantas@seqera.io>
1 parent 6d09827 commit 07ad877

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

public/img/jacques-dainat.jpg

54 KB
Loading

src/components/AmbassadorCard.astro

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ export interface Props {
77
linkedin?: string;
88
twitter?: string;
99
mastodon?: string;
10+
bluesky?: string;
1011
}
1112
12-
const { name, img, country, github, linkedin, twitter, mastodon } = Astro.props;
13+
const { name, img, country, github, linkedin, twitter, mastodon, bluesky } = Astro.props;
1314
---
1415

1516
<div class="feature">
@@ -45,6 +46,13 @@ const { name, img, country, github, linkedin, twitter, mastodon } = Astro.props;
4546
</a>
4647
)
4748
}
49+
{
50+
bluesky && (
51+
<a href={bluesky} target="_blank">
52+
<i class="fa fa-rss fa-lg fa-lg" />
53+
</a>
54+
)
55+
}
4856
<br />
4957
</p>
5058
</div>

src/pages/our_ambassadors.astro

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,21 @@ import AmbassadorCard from "@components/AmbassadorCard.astro";
398398
<a href="https://github.com/LiuzLab/AI_MARRVEL" target="_blank">AI-MARRVEL</a>.
399399
</AmbassadorCard>
400400

401+
<AmbassadorCard
402+
name="Jacques Dainat"
403+
img="jacques-dainat.jpg"
404+
country="fr"
405+
github="Juke34"
406+
linkedin="jacques-dainat-02257376"
407+
mastodon="https://genomic.social/@jacquesdainat"
408+
bluesky="https://bsky.app/profile/jacquesdainat.bsky.social"
409+
>
410+
Currently Bioinformatician at <a href="https://en.ird.fr" target="_blank"> IRD </a> and part of the
411+
<a href="https://bioinfo.ird.fr" target="_blank"> i-Trop platform</a>, Jacques enjoys simplifying complex
412+
analyses through automation, minimizing technical barriers and enabling biologists to make the most of the power
413+
of bioinformatics.
414+
</AmbassadorCard>
415+
401416
<AmbassadorCard
402417
name="James Fellows Yates"
403418
img="james.jpeg"

0 commit comments

Comments
 (0)