File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
src/components/Educationals Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 11import React from "react" ;
22import { BsGithub } from "react-icons/bs" ;
33import { PiCursorClickBold } from "react-icons/pi" ;
4+ import { BsPersonBadge } from "react-icons/bs" ;
5+
46
57
68const 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 /> GitHub
6164 </ a >
65+ ) } ,
66+ { personalUrl && (
67+ < a href = { personalUrl } className = "btn btn-primary" >
68+ < BsPersonBadge /> Speaker
69+ </ a >
6270 ) }
6371 </ >
6472 ) ;
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments