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

25 lines
1.1 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 = 'Important information about risks when participating in online gaming and using crypto assets.';
const metaDescription = 'BetiX Risk Warnings: financial loss risk, volatility, responsible play guidance, and legal considerations.';
</script>
<template>
<PolicyLayout title="Risk Warnings" :updated="updated" :intro="intro" :metaDescription="metaDescription">
<p>Online gaming involves financial risk. Please read and understand the following warnings before participating.</p>
<h2>1. Loss risk</h2>
<p>You can lose money. Do not gamble funds you cannot afford to lose.</p>
<h2>2. Volatility</h2>
<p>Outcomes are random; shortterm results can vary widely. Past results do not predict future performance.</p>
<h2>3. Responsible play</h2>
<p>Set limits, take breaks, and seek help if needed. See Responsible Gaming for resources.</p>
<h2>4. Legal</h2>
<p>Make sure participation is legal in your jurisdiction. You are responsible for compliance with local laws.</p>
</PolicyLayout>
</template>