Polarcraft/webv2/components/body/Sidebar.vue

20 lines
912 B
Vue
Raw Normal View History

2023-06-12 15:56:09 +02:00
<template>
<div class="fixed left-0 top-0 z-50 flex h-screen w-56 flex-col gap-y-1 border-r border-gray-700 bg-gray-800 px-2">
2023-06-24 13:27:33 +02:00
<h1 class="text-primary-500 my-5 text-center text-2xl font-bold">
Polarcraft S5
</h1>
2023-06-24 13:27:33 +02:00
<NuxtLink to="/" class="flex w-full items-center rounded bg-black/0 p-2 text-lg hover:cursor-pointer hover:bg-black/20">
2023-06-12 15:56:09 +02:00
<Icon size="1.5em" name="heroicons:chart-pie" class="mr-2" />
Dashboard
</NuxtLink>
2023-06-24 13:27:33 +02:00
<NuxtLink to="/team" class="flex w-full items-center rounded bg-black/0 p-2 text-lg hover:cursor-pointer hover:bg-black/20">
2023-06-12 16:48:38 +02:00
<Icon size="1.5em" name="heroicons:users" class="mr-2" />
Team
</NuxtLink>
2023-06-25 17:48:22 +02:00
<NuxtLink to="/map" class="flex w-full items-center rounded bg-black/0 p-2 text-lg hover:cursor-pointer hover:bg-black/20">
2023-06-12 16:48:38 +02:00
<Icon size="1.5em" name="heroicons:map" class="mr-2" />
Map
2023-06-12 15:56:09 +02:00
</NuxtLink>
</div>
</template>