31 lines
1.4 KiB
Vue
31 lines
1.4 KiB
Vue
<script setup lang="ts">
|
||
import PolicyLayout from './_PolicyLayout.vue';
|
||
const updated = '2026-03-01T20:20:00Z';
|
||
const intro = 'Rules for bonuses, free spins, and promotions: eligibility, wagering, abuse prevention, and payout conditions.';
|
||
const metaDescription = 'BetiX Bonus Policy: eligibility, wagering requirements, bonus abuse rules, payout conditions, and bonus types.';
|
||
</script>
|
||
|
||
<template>
|
||
<PolicyLayout title="Bonus Policy" :updated="updated" :intro="intro" :metaDescription="metaDescription">
|
||
<p>This Bonus Policy sets out the rules for bonuses, free spins, and promotional offers on BetiX.</p>
|
||
|
||
<h2>1. Eligibility</h2>
|
||
<ul>
|
||
<li>Bonuses are limited to one per person, household, IP, device, or payment method unless stated otherwise.</li>
|
||
<li>We may require KYC verification before or after awarding a bonus.</li>
|
||
</ul>
|
||
|
||
<h2>2. Wagering</h2>
|
||
<ul>
|
||
<li>Unless otherwise stated, wagering requirements apply and must be completed within the specified time window.</li>
|
||
<li>Different games may contribute differently towards wagering.</li>
|
||
</ul>
|
||
|
||
<h2>3. Abuse</h2>
|
||
<p>Bonus abuse (e.g., hedging, multiple accounts, risk‑free bets) may lead to confiscation and account action.</p>
|
||
|
||
<h2>4. Changes</h2>
|
||
<p>We reserve the right to modify, suspend, or withdraw any offer at our discretion.</p>
|
||
</PolicyLayout>
|
||
</template>
|