NuxtAuthDashboardRepository/frontend/app/components/Sidebar.vue
2025-04-21 08:50:19 +05:30

16 lines
637 B
Vue

<template>
<aside class="w-64 h-screen fixed bg-gray-900 text-white">
<div class="p-4 text-xl font-bold border-b border-gray-700">
🎓 StudentMS
</div>
<nav class="flex flex-col p-4 space-y-2">
<NuxtLink to="/" class="p-2 rounded hover:bg-gray-800">Dashboard</NuxtLink>
<NuxtLink to="/students" class="p-2 rounded hover:bg-gray-800">Students</NuxtLink>
<NuxtLink to="/about" class="p-2 rounded hover:bg-gray-800">About</NuxtLink>
</nav>
<div class="p-4 border-t border-gray-700 text-sm mt-auto">
&copy; 2025 Atul Gunjal
</div>
</aside>
</template>