Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove STAR Ventures and iRODS links for summer 2025 #86

Merged
merged 3 commits into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/program-tabs/program-tabs-section.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export const ProgramTab = styled(Tab)((({backgroundcolor, color, ...props}) => (
borderBottom: 'none'
})))

export const ProgramPanel = styled(TabPanel)(({backgroundcolor, ...props})=> ({
export const ProgramPanel = styled(TabPanel)(({backgroundcolor, bottomBorder, ...props})=> ({
backgroundColor: backgroundcolor,
borderBottom: `1px solid ${bottomBorder}`,
paddingBottom: '2rem'
}))
2 changes: 2 additions & 0 deletions src/components/sections/programs-overview.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export const ProgramsOverview = ({ content }) => {
program_id: 'starventures',
content: content.starVenturesContent,
backgroundcolor: '#1A1B2F',
bottomBorder: '#ffffff50',
color: '#fff',
...content.programs[1]
},
Expand Down Expand Up @@ -92,6 +93,7 @@ export const ProgramsOverview = ({ content }) => {
value={i}
key={`${program.program_id}-panel`}
backgroundcolor={program.backgroundcolor}
bottomBorder={program.bottomBorder}
>
{
program.program_id === 'starship' ?
Expand Down
4 changes: 2 additions & 2 deletions src/components/sections/programs/irodsPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ export const IrodsPanel = ({title, content}) => {
))
}
</PanelContentGridContainer>
<MainPanelButton
{/* <MainPanelButton
title="Learn More"
to={content.learnMoreLink}
external
color="#1A1B2F"
/>
/> */}
</Container>
)
}
6 changes: 3 additions & 3 deletions src/components/sections/programs/starVenturesPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const StarVenturesPanel = ({title, content}) => {
const image = getImage(content.starVenturesImg)

return (
<Container maxWidth="md" sx={{margin: '1.5rem auto', color: '#fff'}}>
<Container maxWidth="md" sx={{margin: '1.5rem auto', color: '#fff' }}>
<Typography level="h3" textAlign="center" gutterBottom sx={{ color: '#fff'}}>{title}</Typography>
<Typography sx={{ color: '#fff', marginBottom: '1rem'}}>{content.description}</Typography>

Expand All @@ -32,11 +32,11 @@ export const StarVenturesPanel = ({title, content}) => {

{/* hide application button (below) when application is closed */}

<MainPanelButton
{/* <MainPanelButton
title="Apply Now"
to={content.applicationLink}
external
/>
/> */}

<Typography sx={{color: '#fff', py: '1rem'}}>{content.minorsNote}</Typography>
</Container>
Expand Down
5 changes: 3 additions & 2 deletions src/content/sections/programs-overview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ starVenturesContent:
contentType: "ul"
content:
- title: "This program runs for 3 weeks during the summer."
- title: "Summer 2025 Dates: July 14, 2025 - July 31, 2025."
- title: "Applications close April 11, 2025, 11:59pm EST."
- title: "Summer 2025: STAR will not be hosting STAR Ventures this summer and hopes to resume this program for future summers."
- title: "Stay connected to the STARverse by signing up for our mailing list below."
- heading: "Requirements"
contentType: "ul"
content:
Expand All @@ -82,6 +82,7 @@ irodsContent:
content:
- title: "3 months during the summer"
- title: "Approximately June - August"
- title: "Applications for Summer 2025 are currently closed."
- heading: "Requirements"
contentType: "ul"
content:
Expand Down