26 lines
1.4 KiB
Vue
26 lines
1.4 KiB
Vue
<template>
|
|
<div class="w-full h-16 bg-neutral-200 dark:bg-neutral-800 flex justify-center items-center shadow">
|
|
<div class="flex justify-evenly items-center gap-1 w-full max-w-lg dark:text-gray-300 text-gray-900">
|
|
<NuxtLink to="/" class="flex flex-col items-center hover:cursor-pointer drop-shadow" :class="route.path === '/' ? 'text-primary' : ''">
|
|
<Icon size="1.5em" name="ion:home-outline" />
|
|
<span>Home</span>
|
|
</NuxtLink>
|
|
<NuxtLink to="/news" class="flex flex-col items-center hover:cursor-pointer drop-shadow" :class="route.path === '/news' ? 'text-primary' : ''">
|
|
<Icon size="1.5em" name="ion:newspaper-outline" />
|
|
<span>News</span>
|
|
</NuxtLink>
|
|
<NuxtLink to="/calendar" class="flex flex-col items-center hover:cursor-pointer drop-shadow" :class="route.path === '/calendar' ? 'text-primary' : ''">
|
|
<Icon size="1.5em" name="ion:calendar-outline" />
|
|
<span>Calendar</span>
|
|
</NuxtLink>
|
|
<NuxtLink to="/settings" class="flex flex-col items-center hover:cursor-pointer drop-shadow" :class="route.path.startsWith('/settings') ? 'text-primary' : ''">
|
|
<Icon size="1.5em" name="ion:settings-sharp" />
|
|
<span>Settings</span>
|
|
</NuxtLink>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const route = useRoute()
|
|
</script> |