Files
BetiX/resources/js/pages/policies/ResponsibleGaming.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

28 lines
1.2 KiB
Vue
Raw 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 = 'Our commitment to safe play: tools, guidance, and resources to help you stay in control.';
const metaDescription = 'BetiX Responsible Gaming: tools like limits/timeouts/self-exclusion, support resources, and protection of minors.';
</script>
<template>
<PolicyLayout title="Responsible Gaming" :updated="updated" :intro="intro" :metaDescription="metaDescription">
<p>BetiX is committed to responsible gaming. We provide tools and guidance to help you stay in control.</p>
<h2>1. Tools</h2>
<ul>
<li>Deposit, loss, and session limits.</li>
<li>Timeouts and selfexclusion.</li>
<li>Reality checks and session reminders.</li>
</ul>
<h2>2. Selfassessment</h2>
<p>If you feel your gaming is getting out of control, consider taking a break and seeking help from independent organizations.</p>
<h2>3. Support</h2>
<p>Contact our Support to enable limits or selfexclusion. We may require ID verification to process certain requests.</p>
<div class="callout">Help resources: BeGambleAware.org, GamCare.org.uk, and local hotlines in your country.</div>
</PolicyLayout>
</template>