From 52d773ebeba93e0eab5f540dfc4db0ffa6dcc063 Mon Sep 17 00:00:00 2001 From: Rene Arumetsa Date: Thu, 9 Oct 2025 22:34:08 +0300 Subject: [PATCH] Fix prices for certain minitournaments. --- src/app/[locale]/turniirid/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/[locale]/turniirid/page.tsx b/src/app/[locale]/turniirid/page.tsx index 5bb282c..4fb0d63 100644 --- a/src/app/[locale]/turniirid/page.tsx +++ b/src/app/[locale]/turniirid/page.tsx @@ -22,7 +22,7 @@ export default async function Tourney({ }[] = [ { name: "Tekken 8", - prize: "350€", + prize: "200€", image: "/images/miniturniirid/tekken8.jpg", objectPosition: "object-center", }, @@ -34,7 +34,7 @@ export default async function Tourney({ }, { name: "Street Fighter 6", - prize: "200€", + prize: "150€", image: "/images/miniturniirid/street_fighter.jpg", objectPosition: "object-center", }, @@ -66,13 +66,13 @@ export default async function Tourney({ }, { name: "2XKO", - prize: "50€", + prize: "100€", image: "/images/miniturniirid/2xko.png", objectPosition: "object-top", }, { name: "Super Smash Bros. Ultimate", - prize: "50€", + prize: "100€", image: "/images/miniturniirid/super_smash_bros.jpg", objectPosition: "object-top", },