Skip to content

Commit 9f9611c

Browse files
committed
docs: #85 add legal links
1 parent a82ec0e commit 9f9611c

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

Diff for: resources/js/Components/LegalNotice.vue

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<script setup>
2+
import { Link } from "@inertiajs/vue3";
3+
</script>
4+
15
<template>
26
<div class="flex flex-col items-center">
37
<a
@@ -54,6 +58,23 @@
5458
</div>
5559
</div>
5660
</div>
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+
<Link
69+
:href="route('policy.show')"
70+
class="underline hover:text-blue-500"
71+
>Privacy Policy</Link
72+
>
73+
<Link
74+
:href="route('refund-policy.show')"
75+
class="underline hover:text-blue-500"
76+
>Refund Policy</Link
77+
>
78+
</div>
5779
</div>
5880
</template>
59-
<script setup lang="ts"></script>

0 commit comments

Comments
 (0)