Fix youtube

This commit is contained in:
2024-10-14 18:04:37 +02:00
parent 9e0758bc24
commit 11bde099bf
4 changed files with 41 additions and 679 deletions

712
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -28,8 +28,10 @@ export const Footer: React.FC = () => {
{[
{ text: 'Accueil', link: '/' },
{ text: 'Projets', link: '/projets/' },
/*
{ text: 'Matériels', link: '/materiels/' },
{ text: 'Photos', link: '/photos/' },
*/
{ text: 'Partenaires', link: '/partenaires/' },
{ text: 'Nous contacter', link: '/contact/' },
].map((link) => <FooterLink key={link.text} {...link} />)}
@@ -40,7 +42,7 @@ export const Footer: React.FC = () => {
<div className={'footer-links'}>
{[
{ text: 'Instagram', link: 'https://www.instagram.com/modelec_isen', target: '_blank' },
{ text: 'Youtube', link: 'https://youtube.com/modelec', target: '_blank' },
{ text: 'Youtube', link: 'https://youtube.com/@modelec2165', target: '_blank' },
{ text: 'Github', link: 'https://www.github.com/modelec', target: '_blank' },
{ text: 'Mail', link: 'mailto:contact@modelec.club', target: '_blank' },
].map((link) => <FooterLink key={link.text} {...link} />)}

View File

@@ -35,8 +35,10 @@ export const Navbar = () => {
const links = [
{ text: 'Accueil', link: '/' },
{ text: 'Projets', link: '/projets/' },
/*
{ text: 'Matériels', link: '/materiels/' },
{ text: 'Photos', link: '/photos/' },
*/
{ text: 'Partenaires', link: '/partenaires/' },
{ text: 'Nous contacter', link: '/contact/' },
]

View File

@@ -44,7 +44,7 @@ const Contact: React.FC = () => {
<SocialNetworkList
networks={[
{ Icon: Instagram, name: 'modelec_isen', link: 'https://www.instagram.com/modelec_isen' },
{ Icon: Youtube, name: 'modelec', link: 'https://youtube.com/modelec' },
{ Icon: Youtube, name: 'modelec', link: 'https://youtube.com/@modelec2165' },
{ Icon: Github, name: 'modelec', link: 'https://www.github.com/modelec' },
]}
/>