16 lines
637 B
Vue
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">
|
|
© 2025 Atul Gunjal
|
|
</div>
|
|
</aside>
|
|
</template>
|
|
|