-
- {
- partners.map((partner) => (
-
-
-
- ))
- }
+
+ {goldPartners.length > 0 && (
+
+ )}
+
+
+
+
+
Bronze
+
+
+
+ {
+ bronzePartners.map((partner) => (
+
+
+
+ ))
+ }
+
+
-
+
+
diff --git a/src/data/competitions.ts b/src/data/competitions.ts
index 60f3d1a..38e2d67 100644
--- a/src/data/competitions.ts
+++ b/src/data/competitions.ts
@@ -1,7 +1,7 @@
export const competitions = [
{
name: 'Creative Jam',
- image: '/img/competitions/CreativeJam.png',
+ image: '/img/competitions/CreativeJam.webp',
},
{
name: 'Concours Universitaire Ubisoft',
@@ -16,11 +16,15 @@ export const competitions = [
image: '/img/competitions/McGameJam.png',
},
{
- name: 'Pixel Challenge Québec',
- image: '/img/competitions/PixelChallenge.png',
- },
- {
- name: 'Game Jam Battle',
- image: '/img/competitions/GameJamBattle.png',
- },
+ name: 'GMTK Game Jam',
+ image: '/img/competitions/GMTK.png',
+ }
+ // {
+ // name: 'Pixel Challenge Québec',
+ // image: '/img/competitions/PixelChallenge.png',
+ // },
+ // {
+ // name: 'Game Jam Battle',
+ // image: '/img/competitions/GameJamBattle.png',
+ // },
];
diff --git a/src/data/partners.ts b/src/data/partners.ts
index d501164..af899e4 100644
--- a/src/data/partners.ts
+++ b/src/data/partners.ts
@@ -1,17 +1,35 @@
-export const partners = [
+export const goldPartners = [
+ {
+ name: 'Ubisoft',
+ logo: '/img/sponsors/Ubisoft-black.png',
+ url: 'https://www.ubisoft.com',
+ description: 'Ubisoft est un leader mondial du divertissement vidéoludique. En nous supportant, ils nous font profiter de leur expertise incomparable et nous permettent d\'organiser nos événements chaque année. Grâce à leur soutien, nous créons un environnement où les développeurs et créatifs peuvent explorer leurs idées et donner vie à leurs visions.',
+ },
+];
+
+export const silverPartners = [];
+
+export const bronzePartners = [
+ {
+ name: 'Zero One',
+ logo: '/img/sponsors/pixel_butter_logo.jpeg',
+ url: 'https://pixelbutter.fr/',
+ },
{
name: 'École de technologie supérieure',
logo: '/img/sponsors/ETS-color.png',
url: 'https://www.etsmtl.ca',
},
- {
- name: 'LanETS',
- logo: '/img/sponsors/LanETS-black.png',
- url: 'https://lanets.ca',
- },
{
name: 'AEETS',
logo: '/img/sponsors/AEETS-color.png',
url: 'https://www.aeets.com/',
},
+ {
+ name: 'LanETS',
+ logo: '/img/sponsors/LanETS-black.png',
+ url: 'https://lanets.ca',
+ },
];
+
+export const partners = [...goldPartners, ...silverPartners, ...bronzePartners];