diff --git a/components/lottery/rules/LotteryRulesSection.tsx b/components/lottery/rules/LotteryRulesSection.tsx new file mode 100644 index 0000000..c86c003 --- /dev/null +++ b/components/lottery/rules/LotteryRulesSection.tsx @@ -0,0 +1,40 @@ +const LotteryRulesSection = () => { + return ( +
+
+
+

Lotereýanyň duzgunleri:

+
+
+

Umumy düzgünler:

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

Üns beriň:

+
    + {Array(1) + .fill(' ') + .map((item, i) => ( +
  • + SMS = 1 manat +
  • + ))} +
+
+
+
+
+
+ ); +}; + +export default LotteryRulesSection;