Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor fight list #1249

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions src/assets/svg/boxingGlove.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
144 changes: 104 additions & 40 deletions src/pages/combates/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
import Layout from '@/layouts/Layout.astro'
import { COMBATS } from '@/consts/combats'
import { combates } from '@/consts/pageTitles'
import BoxingGlove from '@/assets/svg/boxingGlove.svg'

const MAIN_EVENT = COMBATS[6]
---

<Layout title={combates}>
Expand All @@ -21,57 +24,118 @@ import { combates } from '@/consts/pageTitles'
</h3>
</div>

<div
id="combats-container"
class="relative top-96 mx-auto mt-10 mb-72 grid max-w-7xl grid-cols-1 gap-4 p-6 md:grid-cols-2 md:gap-8"
>
{
COMBATS.map(({ id, number, fighters, title }) => (
<a
class="inline-block"
href={`combates/${id}`}
title={`Ir al combate ${number} de ${title}`}
<div id="combats-container" class="relative top-96 mx-auto mb-72 max-w-7xl p-6">
<div class="mx-auto mb-8 w-full max-w-3xl">
<h4
class="text-theme-seashell animate-fade-in animate-delay-300 mb-10 -skew-3 text-3xl leading-[100%] font-medium tracking-wider brightness-125 transition-all duration-300 [text-shadow:_5px_5px_10px_rgb(0_0_0_/_50%)]"
>
<BoxingGlove class="mr-2 inline-block" />
<strong> MAIN EVENT </strong>
</h4>

<a
class="inline-flex w-full"
href={`combates/${MAIN_EVENT.id}`}
title={`Ir al combate ${MAIN_EVENT.number} de ${MAIN_EVENT.title}`}
>
<div
class="group animate-fade-in animate-delay-200 relative flex h-[40vh] w-full sm:h-[50vh]"
>
<div class="group animate-fade-in animate-delay-200 relative flex h-[40vh] w-full sm:h-[50vh]">
{fighters.map((fighter, index) => (
{
MAIN_EVENT.fighters.map((fighter, index) => (
<img
src={`/images/fighters/big/${fighter}.webp`}
class={`z-20 h-full w-1/2 object-contain ${index === 0 ? 'ml-5 lg:ml-10' : '-ml-10 lg:-ml-20'} mask-fade-bottom size-96 transition-transform duration-300 group-hover:scale-110`}
alt={`Imagen de ${fighter}`}
loading="lazy"
decoding="async"
/>
))}
))
}

<div class="absolute bottom-0 z-30 flex h-auto w-full -skew-4 flex-col items-center justify-center p-8 transition-transform duration-300 group-hover:scale-90">
<img
src={`/images/fighters/text/${fighters[0]}.webp`}
loading="lazy"
decoding="async"
class="w-3/4"
alt=""
/>
<img
src="/images/versus.webp"
class="h-auto w-24"
loading="lazy"
decoding="async"
alt=""
/>
<img
src={`/images/fighters/text/${fighters[1]}.png`}
loading="lazy"
decoding="async"
class="w-3/4"
alt=""
/>
</div>
<div
class="absolute bottom-0 z-30 flex h-auto w-full -skew-4 flex-col items-center justify-center p-8 transition-transform duration-300 group-hover:scale-90"
>
<img
src={`/images/fighters/text/${MAIN_EVENT.fighters[0]}.webp`}
loading="lazy"
decoding="async"
class="w-3/4"
alt=""
/>
<img
src="/images/versus.webp"
class="h-auto w-24"
loading="lazy"
decoding="async"
alt=""
/>
<img
src={`/images/fighters/text/${MAIN_EVENT.fighters[1]}.png`}
loading="lazy"
decoding="async"
class="w-3/4"
alt=""
/>
</div>

<div class="absolute bottom-0 z-10 h-2/3 w-full bg-gradient-to-b from-pink-900/30 from-60% to-transparent transition-colors duration-300 group-hover:from-pink-900/20" />
<div
class="absolute bottom-0 z-10 h-2/3 w-full bg-gradient-to-b from-pink-900/30 from-60% to-transparent transition-colors duration-300 group-hover:from-pink-900/20"
>
</div>
</a>
))
}
</div>
</a>
</div>

<div class="grid grid-cols-1 gap-4 md:grid-cols-2 md:gap-8">
{
COMBATS.slice(0, 6).map(({ id, number, fighters, title }) => (
<a
class="inline-block"
href={`combates/${id}`}
title={`Ir al combate ${number} de ${title}`}
>
<div class="group animate-fade-in animate-delay-200 relative flex h-[40vh] w-full sm:h-[50vh]">
{fighters.map((fighter, index) => (
<img
src={`/images/fighters/big/${fighter}.webp`}
class={`z-20 h-full w-1/2 object-contain ${index === 0 ? 'ml-5 lg:ml-10' : '-ml-10 lg:-ml-20'} mask-fade-bottom size-96 transition-transform duration-300 group-hover:scale-110`}
alt={`Imagen de ${fighter}`}
loading="lazy"
decoding="async"
/>
))}

<div class="absolute bottom-0 z-30 flex h-auto w-full -skew-4 flex-col items-center justify-center p-8 transition-transform duration-300 group-hover:scale-90">
<img
src={`/images/fighters/text/${fighters[0]}.webp`}
loading="lazy"
decoding="async"
class="w-3/4"
alt=""
/>
<img
src="/images/versus.webp"
class="h-auto w-24"
loading="lazy"
decoding="async"
alt=""
/>
<img
src={`/images/fighters/text/${fighters[1]}.png`}
loading="lazy"
decoding="async"
class="w-3/4"
alt=""
/>
</div>

<div class="absolute bottom-0 z-10 h-2/3 w-full bg-gradient-to-b from-pink-900/30 from-60% to-transparent transition-colors duration-300 group-hover:from-pink-900/20" />
</div>
</a>
))
}
</div>
</div>
</div>
</section>
Expand Down