-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
549 additions
and
73 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { Grid } from "@mui/material"; | ||
import React from "react"; | ||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; | ||
import { faCode } from "@fortawesome/free-solid-svg-icons"; | ||
import { faTwitter, faLinkedin } from "@fortawesome/free-brands-svg-icons"; | ||
|
||
const TeamCard = ({ x }) => { | ||
return ( | ||
<Grid item xs={12} sm={12} md={6}> | ||
<div className="team-card"> | ||
<img src={x.image} alt=""></img> | ||
<div className="team-content"> | ||
<h3>{x.name}</h3> | ||
<p>{x.about}</p> | ||
<Grid container> | ||
<a href="/"> | ||
<FontAwesomeIcon icon={faCode} /> | ||
</a> | ||
<a href="/"> | ||
<FontAwesomeIcon icon={faLinkedin} /> | ||
</a> | ||
<a href="/"> | ||
<FontAwesomeIcon icon={faTwitter} /> | ||
</a> | ||
</Grid> | ||
</div> | ||
</div> | ||
</Grid> | ||
); | ||
}; | ||
|
||
export default TeamCard; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import oskar from "../Assets/oskar_elek.jpg"; | ||
import joseph from "../Assets/joseph.jpeg"; | ||
import carlos from "../Assets/carlos.jfif"; | ||
import angus from "../Assets/angus.jfif"; | ||
|
||
export const team = [ | ||
{ | ||
name: "Oskar Elek", | ||
about: "Primary author, computational media researcher at Creative Coding lab, UC Santa Cruz", | ||
image: oskar | ||
}, | ||
{ | ||
name: "Joseph N. Burchett", | ||
about: "Astronomer at UC Santa Cruz, expert in galactic ecosystems", | ||
image: joseph | ||
}, | ||
|
||
{ | ||
name: "Carlos Maltzahn", | ||
about: "Founder and Director of the UC Santa Cruz Center for Research in Open Source Software (CROSS)", | ||
image: carlos | ||
}, | ||
{ | ||
name: "Angus G. Forbes", | ||
about: "Director of Creative Coding lab, UC Santa Cruz", | ||
image: angus | ||
}, | ||
] | ||
|
||
export const sig_contri = [ | ||
{name: "J. Xavier Prochaska"}, | ||
{name: "Jan Ivanecky"}, | ||
{name: "Sage Jenson"}, | ||
{name: "Daisuke Nagai"}, | ||
{name: "Sebastian Herholz"}, | ||
{name: "Jaroslav Křivánek"}, | ||
{name: "Drew Ehrlich"}, | ||
] |
Oops, something went wrong.