import { Box, Text } from "@mantine/core";
import Header from "./header";
import SwipeableTabs from "@/components/swipeable-tabs";
import TournamentList from "@/features/tournaments/components/tournament-list";
import StatsOverview from "@/shared/components/stats-overview";
import { useTeam, useTeamMatches, useTeamStats } from "../../queries";
import MatchList from "@/features/matches/components/match-list";
interface ProfileProps {
id: string;
}
const TeamProfile = ({ id }: ProfileProps) => {
const { data: team } = useTeam(id);
const { data: matches } = useTeamMatches(id);
const { data: stats, isLoading: statsLoading, error: statsError } = useTeamStats(id);
if (!team) return Team not found;
const tabs = [
{
label: "Overview",
content: ,
},
{
label: "Matches",
content: ,
},
{
label: "Tournaments",
content: (
<>
>
),
},
];
return (
<>
>
);
};
export default TeamProfile;