whois.tinysites.com/components/Products.vue

17 lines
525 B
Vue
Raw Normal View History

2024-08-12 05:03:55 +00:00
<script setup>
const host = hostname()
</script>
<template>
<div class="products">
<h2>Tinysites Products</h2>
2024-08-12 05:49:38 +00:00
<NuxtLink :to="host + 'new'" target="_BLANK">
2024-08-12 05:03:55 +00:00
<h3>Website Builder</h3>
<p>Sharing recipes or starting a business, we make it easy to launch your website.</p>
</NuxtLink>
2024-08-12 05:49:38 +00:00
<NuxtLink :to="host + 'pricing#domains'" target="_BLANK">
2024-08-12 05:03:55 +00:00
<h3>Domain Names</h3>
<p>Host your website using a domain name with one of our premium extensions.</p>
</NuxtLink>
</div>
</template>