forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the team data to include the avatarUrl and the BioComponent in…
… the objects describing members of teams. Remove unused pages and components. Keep on fixing style.
- Loading branch information
1 parent
0fad20a
commit 046026c
Showing
72 changed files
with
535 additions
and
1,097 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,22 +1,18 @@ | ||
import styles from "./styles.module.css"; | ||
import Link from "@docusaurus/Link"; | ||
|
||
export default function Avatar({ person }) { | ||
return ( | ||
return ( | ||
<div className="flex-full-centered"> | ||
<div className={styles.avatar}> | ||
<img | ||
src={require(person.avatarRoute).default} | ||
width={"160px"} | ||
height={"160px"} | ||
alt={ | ||
"Avatar of " + | ||
person.completeName + | ||
"working at QuantStack as a " + | ||
person.position | ||
} | ||
></img> | ||
<img | ||
src={person.avatarUrl} | ||
className={styles.avatar} | ||
alt={ | ||
"Avatar of " + | ||
person.completeName + | ||
"working at QuantStack as a " + | ||
person.position | ||
} | ||
/> | ||
</div> | ||
</div> | ||
); | ||
} | ||
); | ||
} |
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 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 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 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 |
---|---|---|
@@ -1,24 +1,22 @@ | ||
import styles from "./styles.module.css"; | ||
import Link from "@docusaurus/Link"; | ||
import GHPicture from "@site/static/img/socialmedias/GH.svg"; | ||
import LinkedInPicture from "@site/static/img/socialmedias/LinkedIn.svg" | ||
import LinkedInPicture from "@site/static/img/socialmedias/LinkedIn.svg"; | ||
import XPicture from "@site/static/img/socialmedias/X.svg"; | ||
|
||
|
||
export default function SocialMediaContacts({ person }) { | ||
return ( | ||
<> | ||
<div className = "flex-full-centered"> | ||
<Link href={person.githubLink}>{<GHPicture/>}</Link> | ||
<Link href={person.LinkedInLink}> | ||
{<LinkedInPicture/>} | ||
<div className="flex-full-centered"> | ||
<Link href={person.githubLink}>{<GHPicture />}</Link> | ||
<Link href={person.LinkedInLink}>{<LinkedInPicture />}</Link> | ||
<Link href={person.XLink}>{<XPicture />}</Link> | ||
</div> | ||
<div className="flex-full-centered"> | ||
<Link href={person.githubLink} className={styles.githubname}> | ||
{person.githubName} | ||
</Link> | ||
<Link href={person.XLink}>{<XPicture/>}</Link> | ||
</div> | ||
<Link href={person.githubLink} className={styles.githubname}> | ||
{" "} | ||
{person.githubName} | ||
</Link> | ||
</> | ||
); | ||
} |
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 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
Oops, something went wrong.