mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
Add kinds to navbar
This commit is contained in:
parent
76ae4fe15c
commit
c61ecc9a79
1 changed files with 21 additions and 9 deletions
|
|
@ -43,7 +43,7 @@
|
||||||
<div class="flex-shrink-0 flex items-center text-4xl md:text-5xl py-3">
|
<div class="flex-shrink-0 flex items-center text-4xl md:text-5xl py-3">
|
||||||
<div>🦾</div>
|
<div>🦾</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="hidden md:ml-6 md:flex md:items-center">
|
<div class="hidden md:ml-6 md:flex md:items-center space-x-4">
|
||||||
<a
|
<a
|
||||||
v-for="(item, index) in items"
|
v-for="(item, index) in items"
|
||||||
:key="index"
|
:key="index"
|
||||||
|
|
@ -126,14 +126,26 @@ export default {
|
||||||
label: 'Home',
|
label: 'Home',
|
||||||
url: '/',
|
url: '/',
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// label: 'Categories',
|
label: 'Developer Tools',
|
||||||
// url: '/categories',
|
url: '/kind/developer-tools',
|
||||||
// },
|
},
|
||||||
// {
|
{
|
||||||
// label: 'Contact',
|
label: 'Music Tools',
|
||||||
// url: '/contact',
|
url: '/kind/music-and-audio-tools',
|
||||||
// },
|
},
|
||||||
|
{
|
||||||
|
label: 'Video and Motion Tools',
|
||||||
|
url: '/kind/video-and-motion-tools',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Photo Tools',
|
||||||
|
url: '/kind/photo-tools',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Entertainment',
|
||||||
|
url: '/kind/entertainment',
|
||||||
|
},
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue