import CountDown from "@/components/lottery/countDown/CountDown"; import SpinWheel from "@/components/lottery/spinWheel/SpinWheel"; import Image from "next/image"; import React from "react"; const page = () => { return (

Bije

banner
{/* Winners */}

Results

The results after each stage will be shown here.

{[...Array(5)].map((item, index) => (

The winner of the {index + 1} stage:

8 XX XX-XX-XX

))}
{/* Sping the wheel */}

Lotereýanyň duzgunleri:

Umumy düzgünler:

    {Array(5) .fill(" ") .map((item) => (
  • Ilkinji we dogry jogap beren sanawda ilkinji ýeri eýelýär
  • ))}

Üns beriň:

    {Array(1) .fill(" ") .map((item) => (
  • SMS = 1 manat
  • ))}
); }; export default page;