diff --git a/app/(main)/lottery/page.tsx b/app/(main)/lottery/page.tsx index b3f088d..85a4629 100644 --- a/app/(main)/lottery/page.tsx +++ b/app/(main)/lottery/page.tsx @@ -11,6 +11,7 @@ import LotteryCountDown from '@/components/lottery/countDown/LotteryCountDown'; import LotteryCountDownAllert from '@/components/lottery/countDown/countDownAllert/LotteryCountDownAllert'; import { LotteryWinnerDataSimplified } from '@/typings/lottery/lottery.types'; import { Queries } from '@/api/queries'; +import Link from 'next/link'; const LotteryPage = () => { const { lotteryData, setAuth } = useLotteryAuth(); @@ -60,9 +61,20 @@ const LotteryPage = () => { - {lotteryData && (status === 'ended' || status === 'started') && ( - - )} +
+ {lotteryData && (status === 'ended' || status === 'started') && ( + + )} +
+
+ + Täzeden girmek + +
+
+
);