Skip to content

Commit

Permalink
feat: add more prizes and creative competitions (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
niccofyren authored Oct 24, 2024
1 parent 4f00926 commit 47364f4
Showing 1 changed file with 55 additions and 3 deletions.
58 changes: 55 additions & 3 deletions src/pages/competitions/creative.astro
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,17 @@ const boxStyles = "p-6 rounded-3xl sm:mx-auto sm:rounded-2xl";
<CreativeBox
title="AI musikk"
class={boxStyles}
prizes={[{}, {}, {}]}
prizes={[
{
price: 1500,
},
{
price: 1000,
},
{
price: 500,
},
]}
category="musikk"
>
<p>Lag musikk ved bruk av AI verktøy, flere detaljer kommer.</p>
Expand Down Expand Up @@ -307,9 +317,19 @@ const boxStyles = "p-6 rounded-3xl sm:mx-auto sm:rounded-2xl";
</p>
</CreativeBox>
<CreativeBox
title="TGHACK"
title="TG:HACK"
class={`${boxStyles} sm:col-span-2`}
prizes={[{}, {}, {}]}
prizes={[
{
price: 5000,
},
{
price: 3000,
},
{
price: 2000,
},
]}
category="diverse"
>
<p>
Expand All @@ -318,6 +338,38 @@ const boxStyles = "p-6 rounded-3xl sm:mx-auto sm:rounded-2xl";
beste hackeren vinne!
</p>
</CreativeBox>
<CreativeBox
title="GameJam"
class={`${boxStyles}`}
prizes={[{}, {}, {}]}
category="utvikling"
>
<p>
Lag det beste spillet i løpet av 48 timer. Få med deg noen venner og
utfordre dere selv til å jobbe hardt for å lage et råkult spill!
</p>
</CreativeBox>
<CreativeBox
title="Roblox GameJam"
class={`${boxStyles}`}
prizes={[
{
price: 2000,
},
{
price: 1000,
},
{
price: 500,
},
]}
category="utvikling"
>
<p>
Lag det beste Roblox spillet i løpet av 36 timer, alene eller med
venner. Jobb hardt for å lage det mest imponerende spillet!
</p>
</CreativeBox>
</div>
</ContentContainer>
</Main>
Expand Down

0 comments on commit 47364f4

Please sign in to comment.