-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHankoStarterInfo.vue
24 lines (23 loc) · 1.29 KB
/
HankoStarterInfo.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script setup lang="ts">
import "../../style/hanko-starter-style.css"
</script>
<template>
<div className="starterInfo">
<h1>Hanko Vue starter.</h1>
<h2>
This repository is an example of an implementation of <span>Hanko</span> with <span>Vue</span> as frontend.
</h2>
<h2>
Trough the use of the <span><Hanko-Auth></span> and <span><Hanko-Profile></span> components you can quickly and effectively set up a Sign-In page or a User Profile page for your application.
</h2>
<h2>To create a <span>Hanko Project</span> please visit<br />
<a href="https://cloud.hanko.io/" rel="noreferrer" target='_blank'><span className='starterLink'>[ Hanko cloud console ]</span></a>
</h2>
<h2>To learn how to <span>set up an application like this</span> for yourself or just for more Information, please <br />
<a href="https://docs.hanko.io/" rel="noreferrer" target='_blank'><span className='starterLink'>[ Refer to our docs ]</span></a>
</h2>
<h2> <span>For more questions</span>, or if you want to join the Hanko community, please <br />
<a href="https://www.hanko.io/community" rel="noreferrer" target='_blank'><span className='starterLink'>[ Join our discord ]</span></a>
</h2>
</div>
</template>