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
6 changes: 3 additions & 3 deletions src/components/astro/Mentors.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ import { ENABLE_SESSIONS } from "@/utils/config";
{
MENTORS.map((mentor) => (
<div class="liquid-glass relative">
<div class="glass flex flex-row pl-4 py-4 pr-6 gap-4 items-start h-full">
<div class="glass flex flex-col sm:flex-row pl-4 py-4 pr-6 gap-4 items-start h-full">
<Image
src={`/LogisticsHackathon/mentors/${mentor.profilePath}`}
alt={`${mentor.name}' profile card`}
width={48}
height={48}
class="size-24 rounded-full self-start object-cover"
class="size-24 rounded-full self-center-safe sm:self-start object-cover"
/>
<div class="flex-1 flex flex-col">
<span class="font-semibold text-xl">
Expand All @@ -32,7 +32,7 @@ import { ENABLE_SESSIONS } from "@/utils/config";
<div class="flex flex-row gap-2 mt-4 flex-wrap">
{
mentor.skills.map((skill) => (
<span class="text-sm rounded-full bg-secondary/70 px-2 break-all">{skill}</span>
<span class="text-sm rounded-full bg-secondary/70 px-2">{skill}</span>
))
}
</div>
Expand Down
1 change: 0 additions & 1 deletion src/data/challenges.ts

This file was deleted.

6 changes: 3 additions & 3 deletions src/data/judges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const JUDGES: Judge[] = [
name: "Jocelyn Adonay Cerna Camacho ",
role: "Consultor @ LDM",
profilePath: "jocelyn_adonay.png",
className: "to-stone-300/30",
className: "to-stone-600/10",
},
{
name: "Iván Guerrero",
Expand All @@ -56,13 +56,13 @@ export const JUDGES: Judge[] = [
},
{
name: "Dr. Pedro Avelino Arenas",
role: "Jefe de Programa Académico de Ingeniería Industrial",
role: "Jefe de Programa Académico de Ingeniería Industrial @ UPIICSA",
profilePath: "pedro.png",
className: "to-yellow-900/40",
},
{
name: "Ing. Yventz Entzana Garduño",
role: "Jefe de Programa Académico de Ciencias de la Computación",
role: "Jefe de Programa Académico de Ciencias de la Computación @ UPIICSA",
profilePath: "yv.png",
className: "to-zinc-950/80",
},
Expand Down
6 changes: 3 additions & 3 deletions src/pages/challenges.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { RESOURCES } from "@/data/resources";
---
<BaseLayout title="Logistics Hackathon | Recursos">
<div
class="flex flex-col items-center justify-center min-h-[calc(100vh-14rem)] md:min-h-[calc(50vh-4rem)] gap-8"
class="flex flex-col items-center justify-center min-h-[calc(100vh-28rem)] md:min-h-[calc(50vh-2rem)] gap-8"
>
<h1 class="text-6xl font-bold text-white mb-8">Reto</h1>
<h1 class="text-6xl font-bold text-white mb-8">Retos</h1>
</div>

<section class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 grid grid-cols-1 lg:grid-cols-2 gap-8">
Expand Down Expand Up @@ -58,7 +58,7 @@ import { RESOURCES } from "@/data/resources";
</section>

<div
class="flex flex-col items-center justify-center min-h-[calc(100vh-14rem)] md:min-h-[calc(50vh-4rem)] gap-8"
class="flex flex-col items-center justify-center min-h-[calc(100vh-28rem)] md:min-h-[calc(50vh-2rem)] gap-8"
>
<h1 class="text-6xl font-bold text-white mb-8">Recursos</h1>
</div>
Expand Down