import NewsList from "@/components/NewsList"; import RoundsTable from "@/components/RoundsTable"; import { useUserStore } from "@/stores/userStore"; import { useTranslation } from "react-i18next"; export default function ContestsIndexPage() { const user = useUserStore((s) => s.user); const { t } = useTranslation("common"); const showTests = !!user; return ( <> ) }