-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
104 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<script setup lang="ts"> | ||
import { ExclamationTriangleIcon } from '@heroicons/vue/24/outline' | ||
</script> | ||
|
||
<template> | ||
<DialogPanel class=""> | ||
<div class="bg-white px-4 pb-4 pt-5 sm:p-6 sm:pb-4"> | ||
<div class="sm:flex sm:items-start"> | ||
<div | ||
class="mx-auto flex h-12 w-12 flex-shrink-0 items-center justify-center rounded-full bg-red-100 sm:mx-0 sm:h-10 sm:w-10" | ||
> | ||
<ExclamationTriangleIcon class="h-6 w-6 text-red-600" aria-hidden="true" /> | ||
</div> | ||
<div class="mt-3 text-center sm:ml-4 sm:mt-0 sm:text-left"> | ||
<DialogTitle as="h3" class="text-base font-semibold leading-6 text-gray-900" | ||
>Disclaimer | ||
</DialogTitle | ||
> | ||
<div class="mt-2"> | ||
<p class="text-sm text-gray-500"> | ||
Deze website is in ontwikkeling. Alle versies ontstaan op een open manier. | ||
</p> | ||
<p class="text-sm text-gray-500 underline"> | ||
<a underline href="https://github.com/MinBZK/ai-act-decisiontree">Iedereen mag opmerkingen of suggesties | ||
geven. | ||
</a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</DialogPanel> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters