|
|
@ -11,8 +11,11 @@ |
|
|
|
'text-slate-500': selected !== 'Home', |
|
|
|
}" |
|
|
|
> |
|
|
|
<router-link :to="{ name: 'home' }" class="block text-center py-3 px-1"> |
|
|
|
<router-link :to="{ name: 'home' }" class="block text-center py-2 px-1"> |
|
|
|
<div class="flex flex-col items-center"> |
|
|
|
<fa icon="house-chimney" class="fa-fw" /> |
|
|
|
<span class="text-xs mt-1">feed</span> |
|
|
|
</div> |
|
|
|
</router-link> |
|
|
|
</li> |
|
|
|
<!-- Search --> |
|
|
@ -26,9 +29,12 @@ |
|
|
|
> |
|
|
|
<router-link |
|
|
|
:to="{ name: 'discover' }" |
|
|
|
class="block text-center py-3 px-1" |
|
|
|
class="block text-center py-2 px-1" |
|
|
|
> |
|
|
|
<div class="flex flex-col items-center"> |
|
|
|
<fa icon="magnifying-glass" class="fa-fw" /> |
|
|
|
<span class="text-xs mt-1">search</span> |
|
|
|
</div> |
|
|
|
</router-link> |
|
|
|
</li> |
|
|
|
<!-- Projects --> |
|
|
@ -42,9 +48,12 @@ |
|
|
|
> |
|
|
|
<router-link |
|
|
|
:to="{ name: 'projects' }" |
|
|
|
class="block text-center py-3 px-1" |
|
|
|
class="block text-center py-2 px-1" |
|
|
|
> |
|
|
|
<div class="flex flex-col items-center"> |
|
|
|
<fa icon="hand" class="fa-fw" /> |
|
|
|
<span class="text-xs mt-1">your work</span> |
|
|
|
</div> |
|
|
|
</router-link> |
|
|
|
</li> |
|
|
|
<!-- Contacts --> |
|
|
@ -58,9 +67,12 @@ |
|
|
|
> |
|
|
|
<router-link |
|
|
|
:to="{ name: 'contacts' }" |
|
|
|
class="block text-center py-3 px-1" |
|
|
|
class="block text-center py-2 px-1" |
|
|
|
> |
|
|
|
<div class="flex flex-col items-center"> |
|
|
|
<fa icon="users" class="fa-fw" /> |
|
|
|
<span class="text-xs mt-1">contacts</span> |
|
|
|
</div> |
|
|
|
</router-link> |
|
|
|
</li> |
|
|
|
<!-- Profile --> |
|
|
@ -74,9 +86,12 @@ |
|
|
|
> |
|
|
|
<router-link |
|
|
|
:to="{ name: 'account' }" |
|
|
|
class="block text-center py-3 px-1" |
|
|
|
class="block text-center py-2 px-1" |
|
|
|
> |
|
|
|
<div class="flex flex-col items-center"> |
|
|
|
<fa icon="circle-user" class="fa-fw" /> |
|
|
|
<span class="text-xs mt-1">profile</span> |
|
|
|
</div> |
|
|
|
</router-link> |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|