Add new sponsors and modify timetable logic

This commit is contained in:
2026-08-29 16:48:31 +03:00
parent 9c0015cca1
commit 085ee294e2
7 changed files with 76 additions and 17 deletions

View File

@@ -145,11 +145,11 @@ export default function Timetable() {
<button
onClick={() => {
const url = new URL(window.location.href);
url.searchParams.set('filter', 'lobby');
url.searchParams.set('filter', 'fuajee');
window.history.pushState({}, '', url.toString());
}}
className={`${vipnagorgialla.className} font-bold italic leading-none text-lg uppercase px-4 py-2 border-4 border-[#00A3E0] transition cursor-pointer ${
filter === 'lobby'
filter === 'fuajee'
? "bg-[#00A3E0] text-black cursor-default pointer-events-none"
: "bg-[#1F5673] text-[#EEE5E5] hover:bg-[#00A3E0] hover:text-black"
}`}

View File

@@ -54,23 +54,23 @@ const sponsors: Sponsor[] = [
href: "https://k-space.ee/",
src: "/sponsors/k-space_ee-white.png",
alt: "K-Space",
width: 200,
height: 200,
width: 244,
height: 244,
className: "not-dark:invert",
},
{
href: "https://globalproductions.ee/",
src: "/sponsors/Global-productions.svg",
alt: "Global Productions",
width: 200,
height: 200,
width: 244,
height: 244,
},
{
href: "https://www.linkedin.com/company/gamedev-guild/",
src: "/sponsors/estonian_gamedev_guild.png",
alt: "Estonian Gamedev Guild",
width: 200,
height: 200,
width: 244,
height: 244,
className: "not-dark:invert",
},
{
@@ -84,15 +84,15 @@ const sponsors: Sponsor[] = [
href: "https://ingame.ee/",
src: "/sponsors/ingame.png",
alt: "iNGAME",
width: 200,
height: 200,
width: 164,
height: 164,
},
{
href: "https://www.tallinn.ee/et/haridusamet",
src: "/sponsors/Tallinna_Haridusamet_logo_RGB.svg",
alt: "Tallinna Haridusamet",
width: 200,
height: 200,
width: 244,
height: 244,
},
{
href: "https://parkminigolf.ee/",
@@ -105,15 +105,15 @@ const sponsors: Sponsor[] = [
href: "https://www.lemongym.ee/",
src: "/sponsors/lemongym.png",
alt: "Lemongym",
width: 200,
height: 200,
width: 144,
height: 144,
},
{
href: "https://www.elamusgolf.eu/",
src: "/sponsors/elamusgolf.png",
alt: "Elamusgolf",
width: 200,
height: 200,
width: 164,
height: 164,
},
{
href: "https://www.egda.ee/",
@@ -121,7 +121,42 @@ const sponsors: Sponsor[] = [
alt: "Estonian Game Developers Association",
width: 344,
height: 344,
}
},
{
href: "https://www.teamspeak.com/",
src: "/sponsors/TS_InLine_BlueLight.svg",
alt: "TeamSpeak",
width: 344,
height: 344,
},
{
href: "https://arvutitark.ee/",
src: "/sponsors/arvutitark.svg",
alt: "Arvutitark",
width: 344,
height: 344,
},
{
href: "https://www.kino.ee/",
src: "/sponsors/Artis_logo_white_text.png",
alt: "Artis Kino",
width: 344,
height: 344,
},
{
href: "https://www.tallinn.ee/et/mank",
src: "/sponsors/MANK.png",
alt: "Mustamäe Avatud Noortekeskus",
width: 200,
height: 244,
},
{
href: "https://2fast.ee/",
src: "/sponsors/2fast.png",
alt: "2FAST",
width: 244,
height: 244,
},
];
interface SponsorsProps {