Skip to content

Commit

Permalink
docs: #85 add legal links
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdan-shulha committed Aug 2, 2024
1 parent a82ec0e commit 9f9611c
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion resources/js/Components/LegalNotice.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<script setup>
import { Link } from "@inertiajs/vue3";
</script>

<template>
<div class="flex flex-col items-center">
<a
Expand Down Expand Up @@ -54,6 +58,23 @@
</div>
</div>
</div>

<div class="flex gap-8 text-xs">
<Link
:href="route('terms.show')"
class="underline hover:text-blue-500"
>Terms of Service</Link
>
<Link
:href="route('policy.show')"
class="underline hover:text-blue-500"
>Privacy Policy</Link
>
<Link
:href="route('refund-policy.show')"
class="underline hover:text-blue-500"
>Refund Policy</Link
>
</div>
</div>
</template>
<script setup lang="ts"></script>

0 comments on commit 9f9611c

Please sign in to comment.