cs2.tinysites.com/components/index/Resources.vue

29 lines
1.1 KiB
Vue
Raw Normal View History

2025-02-13 01:33:37 +00:00
<template>
<div class="resources" id="resources">
<h3>Get up and running fast</h3>
<p>Tinysites makes it easy to launch your website and has <br/>many resources for resolving any issues you face.</p>
<!-- Resource cards - docs, support, showcase -->
<div class="channels">
<NuxtLink to="/docs/get-started" class="resource">
<h4>Documentation</h4>
<p>Find resources and tutorials about setting up your website.</p>
<!-- <p>Check our docs for resources and tutorials on Tinysites.</p> -->
</NuxtLink>
<NuxtLink to="/support" class="resource">
<h4>Support</h4>
<p>Contact our support for fast and professional assistance.</p>
</NuxtLink>
<!--
<NuxtLink to="/showcase" class="resource">
<h4>Showcase</h4>
<p>See amazing websites others have built using Tinysites.</p>
</NuxtLink>
-->
<NuxtLink to="https://discuss.tinysites.com" target="_BLANK" class="resource">
<h4>Community</h4>
<p>Join our community for help and updates on new features.</p>
</NuxtLink>
</div>
</div>
</template>