Skip to content

Commit c2b3ac6

Browse files
committed
Update challenge history with 2025 edition
1 parent 433a613 commit c2b3ac6

File tree

6 files changed

+42
-16
lines changed

6 files changed

+42
-16
lines changed

src/assets/img/challenge/2022.webp

406 Bytes
Loading

src/assets/img/challenge/2023.webp

-2.93 KB
Loading

src/assets/img/challenge/2024.webp

-7.86 KB
Loading

src/assets/img/challenge/2025.webp

27.6 KB
Loading

src/components/challenge/ChallengeHistory.vue

Lines changed: 39 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import PinIcon from "@/assets/icons/pin.svg";
1111
<img
1212
src="@/assets/img/challenge/2022.webp"
1313
alt="Challenge 2022"
14-
width="384"
14+
width="296"
1515
/>
1616
<div class="info">
1717
<h3>2-3 juin 2022</h3>
@@ -21,7 +21,7 @@ import PinIcon from "@/assets/icons/pin.svg";
2121
<img
2222
src="@/assets/img/challenge/2023.webp"
2323
alt="Challenge 2023"
24-
width="384"
24+
width="296"
2525
/>
2626
<div class="info">
2727
<h3>5-6 avril 2023</h3>
@@ -35,17 +35,17 @@ import PinIcon from "@/assets/icons/pin.svg";
3535
<a
3636
href="https://presse.credit-agricole.com/actualites/succes-confirme-pour-la-seconde-edition-d-ecocode-challenge-le-hackathon-green-it-du-credit-agricole-b8bf-9ed05.html"
3737
target="_blank"
38-
>Article de presse <ExternalLinkIcon width="16" height="16"
38+
>Article de presse <ExternalLinkIcon width="14" height="14"
3939
/></a>
4040
<a
4141
href="https://www.davidson.fr/blog/davidson-accueille-la-deuxieme-edition-du-challenge-ecocode-dans-ses-locaux"
4242
target="_blank"
43-
>Davidson <ExternalLinkIcon width="16" height="16"
43+
>Davidson <ExternalLinkIcon width="14" height="14"
4444
/></a>
4545
<a
4646
href="https://glalloue.medium.com/ecocode-challenge-2023-ce-qui-sest-vraiment-passé-ff76df1ad557"
4747
target="_blank"
48-
>Blog <ExternalLinkIcon width="16" height="16"
48+
>Blog <ExternalLinkIcon width="14" height="14"
4949
/></a>
5050
</div>
5151
</div>
@@ -54,7 +54,7 @@ import PinIcon from "@/assets/icons/pin.svg";
5454
<img
5555
src="@/assets/img/challenge/2024.webp"
5656
alt="Challenge 2024"
57-
width="384"
57+
width="296"
5858
/>
5959
<div class="info">
6060
<h3>29-30 mai 2024</h3>
@@ -64,14 +64,30 @@ import PinIcon from "@/assets/icons/pin.svg";
6464
</div>
6565
<div class="links">
6666
<a
67-
href="https://presse.credit-agricole.com/actualites/3eme-edition-fructueuse-de-lecocode-challenge-2cb9-9ed05.html"
67+
href="https://photos.app.goo.gl/HprjHfReKZVKU6sYA"
6868
target="_blank"
69-
>Article de presse <ExternalLinkIcon width="16" height="16"
69+
>Galerie photo <ExternalLinkIcon width="14" height="14"
7070
/></a>
71+
</div>
72+
</div>
73+
</div>
74+
<div class="event">
75+
<img
76+
src="@/assets/img/challenge/2025.webp"
77+
alt="Challenge 2025"
78+
width="296"
79+
/>
80+
<div class="info">
81+
<h3>20-21 mai 2025</h3>
82+
<div class="location">
83+
<PinIcon width="18" height="18" />
84+
<span>La Belleviloise, 19-21 rue Boyer<br />75020 Paris</span>
85+
</div>
86+
<div class="links">
7187
<a
72-
href="https://photos.app.goo.gl/HprjHfReKZVKU6sYA"
88+
href="https://photos.app.goo.gl/uMnY9iRW2HJ3GZN38"
7389
target="_blank"
74-
>Galerie photo <ExternalLinkIcon width="16" height="16"
90+
>Galerie photo <ExternalLinkIcon width="14" height="14"
7591
/></a>
7692
</div>
7793
</div>
@@ -94,8 +110,17 @@ import PinIcon from "@/assets/icons/pin.svg";
94110
95111
.events {
96112
display: grid;
97-
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
98-
gap: 4rem;
113+
grid-template-columns: repeat(4, 296px);
114+
justify-content: center;
115+
gap: 2rem;
116+
117+
@media (max-width: 1300px) {
118+
grid-template-columns: repeat(2, 296px);
119+
}
120+
121+
@media (max-width: 680px) {
122+
grid-template-columns: 296px;
123+
}
99124
100125
.event {
101126
display: flex;
@@ -133,8 +158,9 @@ import PinIcon from "@/assets/icons/pin.svg";
133158
.links {
134159
display: flex;
135160
flex-wrap: wrap;
136-
gap: 0.5rem 2rem;
161+
gap: 0.5rem 1rem;
137162
font-weight: 700;
163+
font-size: 0.9rem;
138164
139165
a {
140166
display: flex;

src/views/ChallengeView.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import ChallengeContact from "@/components/challenge/ChallengeContact.vue";
44
import ChallengeGoals from "@/components/challenge/ChallengeGoals.vue";
55
import ChallengeHero from "@/components/challenge/ChallengeHero.vue";
6-
// import ChallengeHistory from "@/components/challenge/ChallengeHistory.vue";
6+
import ChallengeHistory from "@/components/challenge/ChallengeHistory.vue";
77
import ChallengeSponsors from "@/components/challenge/ChallengeSponsors.vue";
88
import { useHead } from "@unhead/vue";
99
@@ -46,9 +46,9 @@ useHead({
4646
<section class="neutral">
4747
<ChallengeSponsors />
4848
</section>
49-
<!-- <section>
49+
<section>
5050
<ChallengeHistory />
51-
</section> -->
51+
</section>
5252
<section>
5353
<ChallengeContact />
5454
</section>

0 commit comments

Comments
 (0)