We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a82ec0e commit 9f9611cCopy full SHA for 9f9611c
resources/js/Components/LegalNotice.vue
@@ -1,3 +1,7 @@
1
+<script setup>
2
+import { Link } from "@inertiajs/vue3";
3
+</script>
4
+
5
<template>
6
<div class="flex flex-col items-center">
7
<a
@@ -54,6 +58,23 @@
54
58
</div>
55
59
56
60
61
62
+ <div class="flex gap-8 text-xs">
63
+ <Link
64
+ :href="route('terms.show')"
65
+ class="underline hover:text-blue-500"
66
+ >Terms of Service</Link
67
+ >
68
69
+ :href="route('policy.show')"
70
71
+ >Privacy Policy</Link
72
73
74
+ :href="route('refund-policy.show')"
75
76
+ >Refund Policy</Link
77
78
+ </div>
57
79
80
</template>
-<script setup lang="ts"></script>
0 commit comments