friends-best/pages/index.vue
Louis Hollingworth b230abc48b
Added LinkCard
LinkCard is the component that deals with links on the homepage.
2022-05-21 22:10:00 +01:00

17 lines
374 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" description="Watch the series on Netflix" link="https://www.netflix.com/title/81210762" />
</div>
</div>
</template>