Skip to content

Commit 344c0fe

Browse files
committed
added functionality and links for speaker bios
1 parent 802823d commit 344c0fe

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/components/Educationals/EduCard.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
import React from "react";
22
import { BsGithub } from "react-icons/bs";
33
import { PiCursorClickBold } from "react-icons/pi";
4+
import { BsPersonBadge } from "react-icons/bs";
5+
46

57

68
const EduCard = ({
79
videoUrl,
810
title,
911
description,
1012
githubUrl,
13+
personalUrl,
1114
isResource = false,
1215
imageUrl,
1316
visitUrl
@@ -59,6 +62,11 @@ const EduCard = ({
5962
<a href={githubUrl} className="btn btn-primary">
6063
<BsGithub /> &nbsp; GitHub
6164
</a>
65+
)},
66+
{personalUrl && (
67+
<a href={personalUrl} className="btn btn-primary">
68+
<BsPersonBadge /> &nbsp; Speaker
69+
</a>
6270
)}
6371
</>
6472
);

src/components/Educationals/eduData.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ export const videoData = [
1212
{
1313
videoUrl: "https://www.youtube.com/embed/ojnV7mWlQD8?list=PLYyjtw9w4UUAik7EvdeHKDDmVyBNOxh5s",
1414
title: "Open Science Best Practices | Remi Gau @ BHVU 2024",
15+
personalUrl: "https://remi-gau.github.io/"
1516
},
1617
{
1718
videoUrl: "https://www.youtube.com/embed/pONB6xAO9v0?list=PLYyjtw9w4UUAik7EvdeHKDDmVyBNOxh5s",
1819
title: "To build a home: 12 years of brainhack | Pierre Bellec @ BHVU 2024",
20+
personalUrl: "https://www.linkedin.com/in/pierre-lune-bellec-6831b9b/"
1921
}
2022
];
2123

0 commit comments

Comments
 (0)