Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/assets/competitions/cards/indie-fest.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/competitions/cards/juego-libre.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/competitions/cards/paella.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/competitions/cards/ping-pong.jpg
Binary file not shown.
Binary file added public/assets/competitions/cards/street-pass.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/competitions/cards/tcg.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/competitions/cards/watch-party.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/competitions/logos/indie-fest.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/competitions/logos/paella.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/competitions/logos/street-pass.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/competitions/logos/tcg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/competitions/logos/tcg.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/competitions/logos/watch-party.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/participan/Logos/osl.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/ActividadesSection.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import { darkStyles } from '../utils/all';
import { Competitions } from '../data/competitions-data.ts';
const allTags = [...new Set(Competitions.flatMap((game) => game.tags))];
const allTags = [...new Set(Competitions.flatMap((game) => game.tag))];
---

<head>
Expand Down Expand Up @@ -402,7 +402,7 @@ const allTags = [...new Set(Competitions.flatMap((game) => game.tags))];
Competitions.map((game) => (
<button
class="game"
data-tags={game.tags}
data-tags={game.tag}
data-name={game.name}
data-place={game.place}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/CompetitionTimePlace.astro
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ const hasSchedule = time && time.length > 0;
<ul class="schedule-list">
{time.map((item) => (
<li class="schedule-item">
<span class="schedule-round">{item.round}</span>
<span class="schedule-time">{item.time}</span>
<span class="schedule-round">{item.round}</span>
</li>
))}
</ul>
Expand Down
Loading
Loading