sensor management page
This commit is contained in:
@@ -5,14 +5,22 @@
|
||||
<!-- Navigation bar -->
|
||||
<nav class="absolute bottom-0 left-0 right-0 transform-none md:transform md:translate-y-full md:group-hover:translate-y-0 md:transition-transform md:duration-300 md:ease-in-out bg-white md:bg-transparent border-t md:border-t-0 border-gray-200 md:shadow-none shadow-lg">
|
||||
<div class="flex justify-center md:pb-4 pb-2">
|
||||
<ul class="flex space-x-8 md:bg-white md:rounded-lg md:shadow-md px-6 py-3 w-full md:w-auto justify-around md:justify-center">
|
||||
<ul class="flex space-x-4 md:space-x-8 md:bg-white md:rounded-lg md:shadow-md px-6 py-3 w-full md:w-auto justify-around md:justify-center">
|
||||
<li>
|
||||
<a class="flex flex-col items-center text-blue-600 font-medium" aria-current="page" href="#">
|
||||
<router-link to="/" class="flex flex-col items-center font-medium" :class="$route.name === 'home' ? 'text-blue-600' : 'text-gray-600 hover:text-blue-600'">
|
||||
<svg class="w-6 h-6 mb-1" fill="currentColor" viewBox="0 0 24 24">
|
||||
<path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/>
|
||||
</svg>
|
||||
<span class="text-xs">Home</span>
|
||||
</a>
|
||||
<span class="text-xs">Dashboard</span>
|
||||
</router-link>
|
||||
</li>
|
||||
<li>
|
||||
<router-link to="/sensors" class="flex flex-col items-center font-medium" :class="$route.name === 'sensors' ? 'text-blue-600' : 'text-gray-600 hover:text-blue-600'">
|
||||
<svg class="w-6 h-6 mb-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z"/>
|
||||
</svg>
|
||||
<span class="text-xs">Sensors</span>
|
||||
</router-link>
|
||||
</li>
|
||||
<li>
|
||||
<a class="flex flex-col items-center text-gray-600 hover:text-blue-600" href="#">
|
||||
@@ -22,14 +30,6 @@
|
||||
<span class="text-xs">Analytics</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="flex flex-col items-center text-gray-600 hover:text-blue-600" href="#">
|
||||
<svg class="w-6 h-6 mb-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"/>
|
||||
</svg>
|
||||
<span class="text-xs">Users</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="flex flex-col items-center text-gray-400 cursor-not-allowed" aria-disabled="true">
|
||||
<svg class="w-6 h-6 mb-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
|
||||
Reference in New Issue
Block a user