12 lines
407 B
Vue
12 lines
407 B
Vue
<script setup lang="ts">
|
|
import { Head } from '@inertiajs/vue3';
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Verantwortungsbewusstes Spielen" />
|
|
<div class="min-h-screen bg-[#020617] text-white p-8 font-sans">
|
|
<h1 class="text-4xl font-black italic mb-4">Verantwortungsbewusstes Spielen</h1>
|
|
<p>Glücksspiel kann süchtig machen. Bitte spiele verantwortungsbewusst.</p>
|
|
</div>
|
|
</template>
|