Initialer Laravel Commit für BetiX
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

This commit is contained in:
2026-04-04 18:01:50 +02:00
commit 0280278978
374 changed files with 65210 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<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>