Skip to content

Commit

Permalink
update partners and new workshop (#16)
Browse files Browse the repository at this point in the history
Co-authored-by: axelcasareale <[email protected]>
  • Loading branch information
axelcasa and axelcasareale authored Oct 17, 2024
1 parent a96c96b commit 9933c87
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 3 deletions.
Binary file added public/alp_ict.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 13 additions & 1 deletion public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@
"You can distribute promotional materials and giveaways.",
"Badges will identify you as a partner of the event."
]
}
},
"press": "Press Partner"
}
},
"workshops": {
Expand Down Expand Up @@ -359,6 +360,17 @@
"Deploying the model to the cloud.",
"Automating model redeployment when changes are made."
]
},
{
"title": "Workshop 5 : AI for Local Energy Communities",
"description": "To be announced.",
"schedule": {
"time": "15h30-17h30",
"equipment": "To be announced."
},
"activities": [
"To be announced."
]
}
]
},
Expand Down
14 changes: 13 additions & 1 deletion public/locales/fr/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@
"Vous pourrez distribuer des documents promotionnels et des goodies.",
"Des badges permettront de vous identifier comme partenaire de l’évènement."
]
}
},
"press": "Partenaire Presse"
}
},
"workshops": {
Expand Down Expand Up @@ -359,6 +360,17 @@
"Déploiement du modèle sur le cloud.",
"Redéploiement automatique du modèle en cas de modifications."
]
},
{
"title": "Workshop 5 : IA pour les communautés énergétiques locales",
"description": "Détails prochainement disponibles.",
"schedule": {
"time": "15h30-17h30",
"equipment": "Détails prochainement disponibles."
},
"activities": [
"Détails prochainement disponibles."
]
}
]
},
Expand Down
Binary file added public/swissdevjobs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 26 additions & 1 deletion src/pages/Partners/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@ const Partners: React.FC = () => {
style={{height: '200px', width: 'auto'}}/>
</a>
</Card>
<Card>
<a href={t(`years.${selectedYearIndex(year)}.footer.partner-3`)} target="_blank"
rel="noopener noreferrer">
<img src="/hes-so.png" alt="HES-SO Logo"
style={{height: '200px', width: 'auto', border: '1px'}}/>
</a>
</Card>
</Box>

<Box sx={{display: 'flex', flexDirection: 'column', textAlign: 'left', p: 2}}>
Expand Down Expand Up @@ -148,7 +155,7 @@ const Partners: React.FC = () => {
<Card>
<a href={t(`years.${selectedYearIndex(year)}.footer.partner-3`)} target="_blank"
rel="noopener noreferrer">
<img src="/hes-so.png" alt="HES-SO Logo"
<img src="/alp_ict.png" alt="ALP ICT Logo"
style={{height: '200px', width: 'auto', border: '1px'}}/>
</a>
</Card>
Expand Down Expand Up @@ -226,6 +233,24 @@ const Partners: React.FC = () => {
))}
</List>
</Box>

{/* Partenaire presse */}
<Box sx={{display: 'flex', flexDirection: 'column', textAlign: 'left', p: 2, pt: 4}}>
<Typography variant={"h4"} sx={{fontWeight: 'bold'}}>
{t(`years.${selectedYearIndex(year)}.partners.partnerships.press`)}
</Typography>
</Box>

{/* Logos Partenaire Presse */}
<Box sx={{display: 'flex', justifyContent: 'center', alignItems: 'center', gap: 4, py: 4}}>
<Card>
<a href={t(`years.${selectedYearIndex(year)}.footer.partner-3`)} target="_blank"
rel="noopener noreferrer">
<img src="/swissdevjobs.png" alt="ALP ICT Logo"
style={{height: '200px', width: 'auto', border: '1px'}}/>
</a>
</Card>
</Box>
</Paper>

{/* Footer */}
Expand Down

0 comments on commit 9933c87

Please sign in to comment.