20 lines
383 B
Vue

<template>
<div>
<div class="p-24 text-center">
<div class="text-xl text-gray-800">
Send us an email at
<span>support@jingrow.com</span>
</div>
<Button class="mt-6" appearance="primary">
<a href="mailto:support@jingrow.com"> Send Email </a>
</Button>
</div>
</div>
</template>
<script>
export default {
name: 'Support'
};
</script>