Files
client.digisnaxx/src2/components/Sections/Footer.vue

22 lines
475 B
Vue
Raw Normal View History

2025-11-29 12:10:23 -05:00
<script setup>
defineProps({
lead: {
type: String,
required: true
}
})
</script>
<template>
<div class="">
<a class="green text-2xl flex justify-center" href="https://www.dreamfreely.org" target="_blank">
{{ lead }}
</a>
<br/>
Privacy Policy: This website uses <a href="https://umami.is/" target="_blank">Umami</a> for analytics.
</div>
</template>