Skip to content

Commit

Permalink
update-next-event
Browse files Browse the repository at this point in the history
  • Loading branch information
clararodriguezacevedo committed Sep 1, 2024
1 parent 2f26802 commit caee30c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/components/sections/upcoming_events.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import i18n from "../../i18n/index.js";

import upcomingEvents from "../../data/upcoming_events.json";

import hackitba from "../../images/Hackitba.png";
import gamejam from "../../images/GameJam.png";

// Components
const Section = React.lazy(() => import("../section"));
Expand Down Expand Up @@ -33,22 +33,22 @@ function UpcomingEvents() {
</h3>

<img
className="h-62 w-46 object-contain"
src={hackitba}
alt="hackitba"
className="h-62 mb-6 w-46 object-contain"
src={gamejam}
alt="gamejam-logo-banner"
/>

<p className="font-light mb-4">{i18n.t(event.date)}</p>
<p className="text-left mb-2">{i18n.t(event.description)}</p>
{event.link && (
{/* {event.link && (
<LinkButton
className="text-xl mt-3 self-end"
href={event.link}
type="full-primary"
external={true}
text={i18n.t("upcoming_events.sign_up")}
/>
)}
)} */}
</div>
);
})}
Expand Down
6 changes: 3 additions & 3 deletions src/i18n/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ const i18n_en = {
sign_up: 'Learn More!',
events: {
hackit: {
title: 'HackIT-BA CS!',
date: '05/04/24',
title: 'CS Game Jam Society!',
date: 'TBA (2024)',
description:
'HackIT-BA CS is an annual event held at ITBA, in which 15-25 teams of 4 people live 36 hours together, programming a practical project that can improve the quality of life of their peers in Argentina and the world, with innovative and unique ideas.',
'"Game Jam Society" is a virtual programming competition, consisting of 48 hours of pure creativity and adrenaline. Participants will work in teams to design, code, create graphics and sounds for, and ultimately, produce, a fully working game.',
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions src/i18n/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ const i18n_es = {
sign_up: 'Descubre Más!',
events: {
hackit: {
title: 'HackIT-BA CS!',
date: '05/04/24',
title: 'CS Game Jam Society!',
date: 'TBA (2024)',
description:
'HackIT-BA CS es un hackathon anual que se realiza en el ITBA, en el que 15-25 equipos de 4 personas viven 36 horas de pura intensidad, programando un proyecto práctico que pueda mejorar la calidad de vida de sus pares en la Argentina y en el mundo, con ideas innovadoras y únicas.',
'"Game Jam Society" es una competencia de programación virtual, que consiste en 48 hs de creatividad y adrenalina. Los participantes trabajarán en equipos para diseñar, programar, crear gráficos y sonido, y finalmente producir un juego funcional.',
},
},
},
Expand Down
Binary file added src/images/GameJam.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit caee30c

Please sign in to comment.