22 lines
475 B
Vue
22 lines
475 B
Vue
<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>
|
|
|