Skip to content

Commit

Permalink
ui: added project position titles
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexJSully committed Jan 25, 2024
1 parent f23a932 commit d9b1843
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
11 changes: 10 additions & 1 deletion src/components/projects/ProjectsGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,23 @@ export default function ProjectsGrid(): ReactElement {
<Typography
sx={{
fontSize: 'clamp(1rem, 1.5vw, 1.5rem)',
marginBottom: '1rem',
marginTop: '1rem',
fontWeight: 700,
}}
>
{project.name}
</Typography>
</Link>

<Typography
sx={{
fontSize: 'clamp(1rem, 1.25vw, 1.25rem)',
marginBottom: '1rem',
}}
>
{project.title}
</Typography>

{project.urls && (
<Grid alignItems='center' container direction='row' justifyContent='center' spacing={2}>
{project.urls.map((url) => (
Expand Down
16 changes: 8 additions & 8 deletions src/data/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const projects = [
id: 'mpx',
description: 'Update, maintain and create new features for web and back-end systems',
employer: 'Brinx Software Inc',
'most-recent-title': 'Full Stack Developer',
title: 'Full Stack Developer',
type: 'Employment',
url: 'https://app.masterpiecex.com/',
urls: [
Expand Down Expand Up @@ -46,7 +46,7 @@ const projects = [
id: 'impact-depth',
description: 'Visualize citation flow for a publication of interest',
employer: 'Personal Project',
'most-recent-title': 'Creator',
title: 'Creator',
type: 'Personal Project',
url: 'https://impactdepth.com/',
urls: [
Expand All @@ -69,7 +69,7 @@ const projects = [
id: 'eplant-plant-efp',
description: 'Designed the updated widget version of the eFP tissue expression viewer for ePlant',
employer: 'University of Toronto - BAR/Provart Lab',
'most-recent-title': 'Data Visualization Programmer',
title: 'Software Engineer',
publication: 'https://doi.org/10.1101/2021.04.28.441805',
type: 'Employment',
url: 'https://github.com/BioAnalyticResource/ePlant_Plant_eFP',
Expand Down Expand Up @@ -99,7 +99,7 @@ const projects = [
id: 'gaia',
description: 'Generates a summary or answers a question regarding a gene',
employer: 'University of Toronto - BAR/Provart Lab',
'most-recent-title': 'Project Lead',
title: 'Bioinformatician',
type: 'School (MSc)',
url: 'https://bar.utoronto.ca/gaia/',
urls: [
Expand All @@ -122,7 +122,7 @@ const projects = [
id: 'scigrade',
description: 'Teach CRISPR gRNA design',
employer: 'University of Toronto - Human Biology Department',
'most-recent-title': 'Full-Stack Developer',
title: 'Full Stack Developer',
type: 'School (Volunteer)',
url: 'https://scigrade.com/',
urls: [
Expand Down Expand Up @@ -151,7 +151,7 @@ const projects = [
id: 'efp-seq-browser',
description: 'An RNA-Seq based gene expression visualizer web-tool',
employer: 'University of Toronto - BAR/Provart Lab',
'most-recent-title': 'Data Visualization Programmer',
title: 'Data Visualization Programmer',
publication: 'https://doi.org/10.1111/tpj.14468',
type: 'Employment',
url: 'https://bar.utoronto.ca/eFP-Seq_Browser/',
Expand Down Expand Up @@ -187,7 +187,7 @@ const projects = [
id: 'biosensing',
description: 'Developed a synthetic gene using GolS/GolB to detect aqueous gold',
employer: 'University of Toronto - iGEM Toronto',
'most-recent-title': 'Laboratory Research Lead',
title: 'Laboratory Research Lead',
type: 'School (Club)',
url: 'http://2016.igem.org/Team:Toronto',
urls: [
Expand All @@ -210,7 +210,7 @@ const projects = [
id: 'smalldevtalk',
description: 'News, interviews and showcases of the latest in the indie scene',
employer: 'Small Dev Talk',
'most-recent-title': 'Co-creator & Journalist',
title: 'Co-creator & Journalist',
type: 'Personal Project',
url: 'https://smalldevtalk.net/',
urls: [
Expand Down

0 comments on commit d9b1843

Please sign in to comment.