Dominik Milacher 1b0ff8bec2
Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 2m5s
Unify style
2025-06-16 10:01:30 +02:00

22 lines
386 B
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.

<template>
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
</template>
<script setup>
const { add } = useToast()
onMounted(() => {
add({
title: 'Privacy Notice',
description: 'We dont use cookies or tracking. Enjoy your stay.',
timeout: 8000,
color: 'primary',
icon: 'i-heroicons-shield-check',
ui: {
position: "bottom-center"
}
})
})
</script>