diff --git a/public/images/landing/main_supporter.jpg b/public/images/landing/main_supporter.jpg
new file mode 100644
index 0000000..990beac
Binary files /dev/null and b/public/images/landing/main_supporter.jpg differ
diff --git a/src/app/[locale]/piletid/page.tsx b/src/app/[locale]/piletid/page.tsx
index 422d505..7147178 100644
--- a/src/app/[locale]/piletid/page.tsx
+++ b/src/app/[locale]/piletid/page.tsx
@@ -2,6 +2,7 @@ import { vipnagorgialla } from "@/components/Vipnagorgialla";
import Link from "next/link";
import Image from "next/image";
import { getTranslations, setRequestLocale } from "next-intl/server";
+import SwitchableTicketCard from "@/components/SwitchableTicketCard";
interface TicketCardProps {
title: string;
@@ -12,6 +13,7 @@ interface TicketCardProps {
buttonHref: string;
backgroundImage?: string;
backgroundOpacity?: number;
+ blueTinge?: boolean;
className?: string;
}
@@ -24,6 +26,7 @@ function TicketCard({
buttonHref,
backgroundImage,
backgroundOpacity = 40,
+ blueTinge = false,
className = "",
}: TicketCardProps) {
return (
@@ -39,6 +42,9 @@ function TicketCard({
style={{ opacity: backgroundOpacity / 100 }}
/>
)}
+ {blueTinge && (
+
+ )}
-
+
{feature}
))}
-
+