2026-04-10 15:43:07 +02:00
|
|
|
|
"use client";
|
|
|
|
|
|
|
2026-04-13 16:47:47 +02:00
|
|
|
|
import Image from "next/image";
|
2026-04-10 15:43:07 +02:00
|
|
|
|
import { useEffect, useState } from "react";
|
|
|
|
|
|
import { signOut } from "next-auth/react";
|
2026-04-13 16:47:47 +02:00
|
|
|
|
import { getBadge, getNextBadge } from "../../lib/badges";
|
2026-04-10 15:43:07 +02:00
|
|
|
|
|
|
|
|
|
|
type Game = {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
mode: string;
|
|
|
|
|
|
startArticle: string;
|
|
|
|
|
|
targetArticle: string;
|
|
|
|
|
|
path: string[];
|
|
|
|
|
|
clicks: number;
|
|
|
|
|
|
timeSeconds: number;
|
|
|
|
|
|
won: boolean;
|
|
|
|
|
|
playedAt: string;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
type Stats = {
|
|
|
|
|
|
total: number;
|
|
|
|
|
|
won: number;
|
|
|
|
|
|
avgClicks: number;
|
|
|
|
|
|
avgTime: number;
|
|
|
|
|
|
bestClicks: number;
|
|
|
|
|
|
bestTime: number;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function fmt(s: number): string {
|
|
|
|
|
|
const m = Math.floor(s / 60);
|
|
|
|
|
|
const sec = Math.floor(s % 60);
|
|
|
|
|
|
return `${m}:${String(sec).padStart(2, "0")}`;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function computeStats(games: Game[]): Stats {
|
|
|
|
|
|
const won = games.filter((g) => g.won);
|
|
|
|
|
|
return {
|
|
|
|
|
|
total: games.length,
|
|
|
|
|
|
won: won.length,
|
2026-04-11 22:25:34 +02:00
|
|
|
|
avgClicks: won.length
|
|
|
|
|
|
? Math.round(won.reduce((s, g) => s + g.clicks, 0) / won.length)
|
|
|
|
|
|
: 0,
|
|
|
|
|
|
avgTime: won.length
|
|
|
|
|
|
? won.reduce((s, g) => s + g.timeSeconds, 0) / won.length
|
|
|
|
|
|
: 0,
|
2026-04-10 15:43:07 +02:00
|
|
|
|
bestClicks: won.length ? Math.min(...won.map((g) => g.clicks)) : 0,
|
|
|
|
|
|
bestTime: won.length ? Math.min(...won.map((g) => g.timeSeconds)) : 0,
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-11 22:25:34 +02:00
|
|
|
|
export function ProfileScreen({
|
|
|
|
|
|
userName,
|
|
|
|
|
|
onBack,
|
|
|
|
|
|
}: {
|
|
|
|
|
|
userName: string;
|
|
|
|
|
|
onBack: () => void;
|
|
|
|
|
|
}) {
|
2026-04-10 15:43:07 +02:00
|
|
|
|
const [games, setGames] = useState<Game[]>([]);
|
|
|
|
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
|
|
const [filter, setFilter] = useState<"all" | "solo" | "multi">("all");
|
2026-04-10 19:24:12 +02:00
|
|
|
|
const [confirmDelete, setConfirmDelete] = useState(false);
|
|
|
|
|
|
const [deleting, setDeleting] = useState(false);
|
|
|
|
|
|
|
|
|
|
|
|
async function handleDeleteAccount() {
|
|
|
|
|
|
setDeleting(true);
|
|
|
|
|
|
await fetch("/api/account", { method: "DELETE" });
|
|
|
|
|
|
await signOut({ redirect: false });
|
|
|
|
|
|
onBack();
|
|
|
|
|
|
}
|
2026-04-10 15:43:07 +02:00
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
fetch("/api/games")
|
|
|
|
|
|
.then((r) => r.json())
|
|
|
|
|
|
.then((data) => setGames(data as Game[]))
|
|
|
|
|
|
.finally(() => setLoading(false));
|
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
2026-04-11 22:25:34 +02:00
|
|
|
|
const filtered =
|
|
|
|
|
|
filter === "all" ? games : games.filter((g) => g.mode === filter);
|
2026-04-10 15:43:07 +02:00
|
|
|
|
const stats = computeStats(filtered);
|
|
|
|
|
|
|
2026-04-13 16:47:47 +02:00
|
|
|
|
const allStats = computeStats(games);
|
|
|
|
|
|
const badge = getBadge(allStats.won);
|
|
|
|
|
|
const next = getNextBadge(allStats.won);
|
|
|
|
|
|
|
2026-04-11 22:25:34 +02:00
|
|
|
|
const statCard =
|
|
|
|
|
|
"bg-[#1a1a1a] border border-[#2e2e2e] rounded-xl p-3 sm:p-3.5 text-center flex flex-col gap-1";
|
|
|
|
|
|
const btnGhost =
|
|
|
|
|
|
"min-h-9 px-3 rounded-lg text-xs sm:text-sm font-semibold bg-[#242424] border border-[#2e2e2e] text-[#f0f0f0] hover:bg-[#1a1a1a] cursor-pointer transition-colors";
|
2026-04-10 18:58:41 +02:00
|
|
|
|
|
2026-04-10 15:43:07 +02:00
|
|
|
|
return (
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className="min-h-dvh w-full bg-[#0f0f0f] text-[#f0f0f0] animate-fade-in flex flex-col max-w-2xl mx-auto px-4 pb-10">
|
2026-04-10 18:58:41 +02:00
|
|
|
|
{/* Header */}
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className="flex items-center justify-between py-4 gap-2">
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<button className={btnGhost} onClick={onBack}>
|
|
|
|
|
|
← Retour
|
|
|
|
|
|
</button>
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
|
<span className="w-8 h-8 sm:w-10 sm:h-10 rounded-full bg-[#7c3aed] text-white flex items-center justify-center text-base sm:text-lg font-bold shrink-0">
|
2026-04-10 18:58:41 +02:00
|
|
|
|
{userName[0].toUpperCase()}
|
|
|
|
|
|
</span>
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<h2 className="text-base sm:text-xl font-bold truncate max-w-32 sm:max-w-none">
|
|
|
|
|
|
{userName}
|
|
|
|
|
|
</h2>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
2026-04-10 19:08:25 +02:00
|
|
|
|
<button
|
|
|
|
|
|
className="min-h-9 px-3 rounded-lg text-xs sm:text-sm font-semibold bg-red-950/40 border border-red-800 text-red-400 hover:bg-red-900/40 hover:text-red-300 cursor-pointer transition-colors"
|
|
|
|
|
|
onClick={() => signOut({ redirect: false }).then(onBack)}
|
|
|
|
|
|
>
|
|
|
|
|
|
Déconnexion
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-04-13 16:47:47 +02:00
|
|
|
|
{/* Badge */}
|
|
|
|
|
|
{!loading && (
|
|
|
|
|
|
<div className="flex flex-col items-center gap-2 py-4 mb-1">
|
|
|
|
|
|
<Image
|
|
|
|
|
|
src={`/badges/${badge.file}.Png`}
|
|
|
|
|
|
alt={badge.name}
|
|
|
|
|
|
width={80}
|
|
|
|
|
|
height={80}
|
|
|
|
|
|
className="drop-shadow-lg"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<span className="text-base font-black text-[#a78bfa]">{badge.name}</span>
|
|
|
|
|
|
{next && (
|
|
|
|
|
|
<span className="text-xs text-[#555]">
|
|
|
|
|
|
{next.threshold - allStats.won} victoire{next.threshold - allStats.won > 1 ? "s" : ""} avant {next.name}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
|
2026-04-10 18:58:41 +02:00
|
|
|
|
{/* Stats grid */}
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className="grid grid-cols-3 gap-2 sm:gap-2.5 my-3 sm:my-4">
|
|
|
|
|
|
<div className={statCard}>
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<span className="text-lg sm:text-[22px] font-black">
|
|
|
|
|
|
{stats.total}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span className="text-[9px] sm:text-[11px] uppercase tracking-wider text-[#888]">
|
|
|
|
|
|
Parties
|
|
|
|
|
|
</span>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className={statCard}>
|
|
|
|
|
|
<span className="text-lg sm:text-[22px] font-black">{stats.won}</span>
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<span className="text-[9px] sm:text-[11px] uppercase tracking-wider text-[#888]">
|
|
|
|
|
|
Victoires
|
|
|
|
|
|
</span>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className={statCard}>
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<span className="text-lg sm:text-[22px] font-black">
|
|
|
|
|
|
{stats.avgClicks > 0 ? stats.avgClicks : "-"}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span className="text-[9px] sm:text-[11px] uppercase tracking-wider text-[#888]">
|
|
|
|
|
|
Clics moy.
|
|
|
|
|
|
</span>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className={statCard}>
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<span className="text-lg sm:text-[22px] font-black">
|
|
|
|
|
|
{stats.avgTime > 0 ? fmt(stats.avgTime) : "-"}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span className="text-[9px] sm:text-[11px] uppercase tracking-wider text-[#888]">
|
|
|
|
|
|
Temps moy.
|
|
|
|
|
|
</span>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className={`${statCard} border-[#7c3aed]`}>
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<span className="text-lg sm:text-[22px] font-black text-[#7c3aed]">
|
|
|
|
|
|
{stats.bestClicks > 0 ? stats.bestClicks : "-"}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span className="text-[9px] sm:text-[11px] uppercase tracking-wider text-[#888]">
|
|
|
|
|
|
Meilleur clics
|
|
|
|
|
|
</span>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className={`${statCard} border-[#7c3aed]`}>
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<span className="text-lg sm:text-[22px] font-black text-[#7c3aed]">
|
|
|
|
|
|
{stats.bestTime > 0 ? fmt(stats.bestTime) : "-"}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span className="text-[9px] sm:text-[11px] uppercase tracking-wider text-[#888]">
|
|
|
|
|
|
Meilleur temps
|
|
|
|
|
|
</span>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-04-10 18:58:41 +02:00
|
|
|
|
{/* Filters */}
|
|
|
|
|
|
<div className="flex gap-2 mb-4">
|
2026-04-10 15:43:07 +02:00
|
|
|
|
{(["all", "solo", "multi"] as const).map((f) => (
|
|
|
|
|
|
<button
|
|
|
|
|
|
key={f}
|
2026-04-10 19:04:52 +02:00
|
|
|
|
className={`px-3 sm:px-4 py-1.5 rounded-full text-xs font-semibold border cursor-pointer transition-colors ${filter === f ? "bg-[#7c3aed] border-[#7c3aed] text-white" : "bg-[#242424] border-[#2e2e2e] text-[#888] hover:text-[#f0f0f0]"}`}
|
2026-04-10 15:43:07 +02:00
|
|
|
|
onClick={() => setFilter(f)}
|
|
|
|
|
|
>
|
|
|
|
|
|
{f === "all" ? "Tout" : f === "solo" ? "Solo" : "Multi"}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-04-10 18:58:41 +02:00
|
|
|
|
{/* Game list */}
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className="flex flex-col gap-2 sm:gap-2.5">
|
2026-04-10 18:58:41 +02:00
|
|
|
|
{loading && (
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<div className="flex items-center gap-3 py-10 text-[#888]">
|
|
|
|
|
|
<div className="spinner" /> Chargement...
|
|
|
|
|
|
</div>
|
2026-04-10 18:58:41 +02:00
|
|
|
|
)}
|
2026-04-10 15:43:07 +02:00
|
|
|
|
{!loading && filtered.length === 0 && (
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<p className="text-[#888] text-sm text-center py-10">
|
|
|
|
|
|
Aucune partie enregistrée.
|
|
|
|
|
|
</p>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
)}
|
|
|
|
|
|
{filtered.map((g) => (
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<div
|
|
|
|
|
|
key={g.id}
|
|
|
|
|
|
className={`bg-[#1a1a1a] rounded-xl px-3.5 sm:px-4 py-3 sm:py-3.5 flex flex-col gap-2 border-l-4 border-y border-r ${g.won ? "border-l-[#16a34a] border-[#2e2e2e]" : "border-l-[#2e2e2e] border-[#2e2e2e] opacity-70"}`}
|
|
|
|
|
|
>
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className="flex items-center gap-2 text-xs">
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<span className="bg-[#242424] rounded px-1.5 sm:px-2 py-0.5 font-semibold text-[#888] shrink-0">
|
|
|
|
|
|
{g.mode === "solo" ? "Solo" : "Multi"}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span className="text-[#888] ml-auto shrink-0">
|
|
|
|
|
|
{new Date(g.playedAt).toLocaleDateString("fr-FR")}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span
|
|
|
|
|
|
className={`font-bold shrink-0 ${g.won ? "text-[#16a34a]" : "text-[#888]"}`}
|
|
|
|
|
|
>
|
|
|
|
|
|
{g.won ? "Victoire" : "Abandon"}
|
|
|
|
|
|
</span>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className="flex items-center gap-1.5 sm:gap-2 text-xs sm:text-sm font-semibold flex-wrap">
|
|
|
|
|
|
<span className="truncate max-w-[40%]">{g.startArticle}</span>
|
|
|
|
|
|
<span className="text-[#888] shrink-0">→</span>
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<span className="text-[#7c3aed] truncate max-w-[40%]">
|
|
|
|
|
|
{g.targetArticle}
|
|
|
|
|
|
</span>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
{g.won && (
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className="flex flex-wrap gap-2 sm:gap-4 text-xs text-[#888]">
|
2026-04-10 15:43:07 +02:00
|
|
|
|
<span>{g.clicks} clics</span>
|
|
|
|
|
|
<span>{fmt(g.timeSeconds)}</span>
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<span>{g.path.length - 1} articles</span>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
{g.path.length > 0 && (
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<div className="flex flex-wrap gap-1 text-xs text-[#888] pt-1.5 border-t border-[#2e2e2e]">
|
2026-04-10 15:43:07 +02:00
|
|
|
|
{g.path.map((t, i) => (
|
2026-04-10 19:04:52 +02:00
|
|
|
|
<span key={i} className="flex items-center gap-0.5">
|
2026-04-10 18:58:41 +02:00
|
|
|
|
{i > 0 && <span className="text-[#555]">›</span>}
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<span
|
|
|
|
|
|
className={
|
|
|
|
|
|
i === g.path.length - 1 && g.won
|
|
|
|
|
|
? "text-[#16a34a] font-semibold"
|
|
|
|
|
|
: ""
|
|
|
|
|
|
}
|
|
|
|
|
|
>
|
|
|
|
|
|
{t}
|
|
|
|
|
|
</span>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</span>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
))}
|
|
|
|
|
|
</div>
|
2026-04-10 19:24:12 +02:00
|
|
|
|
|
2026-04-10 23:09:36 +02:00
|
|
|
|
{/* Mes données */}
|
|
|
|
|
|
<div className="mt-8 border border-[#2e2e2e] rounded-xl p-4 flex items-center justify-between gap-3 flex-wrap">
|
|
|
|
|
|
<div className="flex flex-col gap-0.5">
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<p className="text-xs font-bold text-[#f0f0f0] uppercase tracking-wider">
|
|
|
|
|
|
Mes données
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p className="text-xs text-[#888]">
|
|
|
|
|
|
Télécharge toutes tes données personnelles (RGPD).
|
|
|
|
|
|
</p>
|
2026-04-10 23:09:36 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
<a
|
|
|
|
|
|
href="/api/account"
|
|
|
|
|
|
download
|
|
|
|
|
|
className="min-h-9 px-3 rounded-lg text-xs sm:text-sm font-semibold bg-[#242424] border border-[#2e2e2e] text-[#f0f0f0] hover:bg-[#1a1a1a] transition-colors shrink-0 inline-flex items-center gap-1.5"
|
|
|
|
|
|
>
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<svg
|
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
|
className="w-3.5 h-3.5 fill-none stroke-current stroke-2"
|
|
|
|
|
|
aria-hidden
|
|
|
|
|
|
>
|
2026-04-10 23:09:36 +02:00
|
|
|
|
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" />
|
|
|
|
|
|
<polyline points="7 10 12 15 17 10" />
|
|
|
|
|
|
<line x1="12" y1="15" x2="12" y2="3" />
|
|
|
|
|
|
</svg>
|
|
|
|
|
|
Télécharger (.json)
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-04-10 19:24:12 +02:00
|
|
|
|
{/* Danger zone */}
|
|
|
|
|
|
<div className="mt-8 border border-red-900/50 rounded-xl p-4 flex flex-col gap-3">
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<h3 className="text-xs font-bold text-red-400 uppercase tracking-wider">
|
|
|
|
|
|
Zone dangereuse
|
|
|
|
|
|
</h3>
|
2026-04-10 19:24:12 +02:00
|
|
|
|
{!confirmDelete ? (
|
|
|
|
|
|
<div className="flex items-center justify-between gap-3 flex-wrap">
|
2026-04-11 22:25:34 +02:00
|
|
|
|
<p className="text-xs sm:text-sm text-[#888]">
|
|
|
|
|
|
Supprime définitivement ton compte et toutes tes parties.
|
|
|
|
|
|
</p>
|
2026-04-10 19:24:12 +02:00
|
|
|
|
<button
|
|
|
|
|
|
className="min-h-9 px-3 rounded-lg text-xs sm:text-sm font-semibold bg-transparent border border-red-800 text-red-400 hover:bg-red-950/40 cursor-pointer transition-colors shrink-0"
|
|
|
|
|
|
onClick={() => setConfirmDelete(true)}
|
|
|
|
|
|
>
|
|
|
|
|
|
Supprimer mon compte
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<div className="flex flex-col gap-3">
|
|
|
|
|
|
<p className="text-xs sm:text-sm text-red-300 font-semibold">
|
2026-04-11 22:25:34 +02:00
|
|
|
|
⚠ Cette action est irréversible. Toutes tes données seront
|
|
|
|
|
|
supprimées.
|
2026-04-10 19:24:12 +02:00
|
|
|
|
</p>
|
|
|
|
|
|
<div className="flex gap-2">
|
|
|
|
|
|
<button
|
|
|
|
|
|
className="flex-1 min-h-9 px-3 rounded-lg text-xs sm:text-sm font-semibold bg-red-700 hover:bg-red-600 text-white cursor-pointer disabled:opacity-50 transition-colors"
|
|
|
|
|
|
onClick={handleDeleteAccount}
|
|
|
|
|
|
disabled={deleting}
|
|
|
|
|
|
>
|
|
|
|
|
|
{deleting ? "Suppression..." : "Oui, supprimer"}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<button
|
|
|
|
|
|
className="flex-1 min-h-9 px-3 rounded-lg text-xs sm:text-sm font-semibold bg-[#242424] border border-[#2e2e2e] text-[#f0f0f0] hover:bg-[#1a1a1a] cursor-pointer transition-colors"
|
|
|
|
|
|
onClick={() => setConfirmDelete(false)}
|
|
|
|
|
|
disabled={deleting}
|
|
|
|
|
|
>
|
|
|
|
|
|
Annuler
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
2026-04-10 15:43:07 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|