Files
BetiX/resources/js/pages/policies/BonusPolicy.vue
Dolo 0280278978
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
Initialer Laravel Commit für BetiX
2026-04-04 18:01:50 +02:00

31 lines
1.4 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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, riskfree 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>