Louis Hollingworth
0304bf763c
Description of LinkCards is no longer displayed. This should make things simpler
36 lines
713 B
Vue
36 lines
713 B
Vue
<script>
|
|
import '@/assets/styles/index.scss';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="container">
|
|
<h1>Vanner Basta</h1>
|
|
<p>
|
|
A Young Royals fan website with links to different discussion
|
|
spaces.
|
|
</p>
|
|
<div class="grid">
|
|
<LinkCard
|
|
title="Watch →"
|
|
link="https://www.netflix.com/title/81210762"
|
|
/>
|
|
<LinkCard
|
|
title="Discord →"
|
|
link="https://discord.gg/hyKVDeRJ8Y"
|
|
/>
|
|
<LinkCard
|
|
title="Reddit →"
|
|
link="https://www.reddit.com/r/YoungRoyals/"
|
|
/>
|
|
<LinkCard
|
|
title="Babbel (ref) →"
|
|
link="https://www.talkable.com/x/IchxFl"
|
|
/>
|
|
<LinkCard
|
|
title="Matrix →"
|
|
link="https://matrix.to/#/#young-royals:matrix.org"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|