25 lines
1.1 KiB
Vue
25 lines
1.1 KiB
Vue
<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; short‑term 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>
|