Add tailwindcss, add first page
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
parent
db9fa44439
commit
2e98cb39f4
8 changed files with 1265 additions and 8 deletions
|
|
@ -1,5 +1,43 @@
|
|||
<template>
|
||||
<div>
|
||||
<h1>Index</h1>
|
||||
<div class="grid h-screen place-items-center">
|
||||
<div class="grid place-items-center">
|
||||
<h1 class="text-3xl font-bold underline">Vänner Bästa</h1>
|
||||
<div class="mt-10 place-items-center">
|
||||
<p>A Young Royals fan website with links to different discussion spaces.</p>
|
||||
<strong class="pt-5">Season 2 is out now!</strong>
|
||||
</div>
|
||||
<div class="grid grid-cols-2 lg:grid-cols-3 mt-10">
|
||||
<LLink v-for="link in links" :to="link.href" :title="link.title" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const links: Array<{href: string, title: string}> = [
|
||||
{
|
||||
href: "https://netflix.com",
|
||||
title: "Netflix"
|
||||
},
|
||||
{
|
||||
href: "https://discord.gg/youngroyals",
|
||||
title: "Discord"
|
||||
},
|
||||
{
|
||||
href: "https://reddit.com/r/youngroyals",
|
||||
title: "Reddit"
|
||||
},
|
||||
{
|
||||
href: "https://www.talkable.com/x/IchxFl",
|
||||
title: "Babbel (ref)"
|
||||
},
|
||||
{
|
||||
href: "https://masto.nu/yrdiscord",
|
||||
title: "Mastodon"
|
||||
},
|
||||
{
|
||||
href: "/utilities",
|
||||
title: "Discord Utilities"
|
||||
}
|
||||
]
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue