Files
nuxt-portfolio/app/utils/links.ts
T
FernandoJVideira 1bfc6fbaa8
ci / ci (22, ubuntu-latest) (push) Failing after 8m9s
Initial Commit
2026-03-30 02:18:38 +01:00

24 lines
424 B
TypeScript

import type { NavigationMenuItem } from '@nuxt/ui'
export const navLinks: NavigationMenuItem[] = [{
label: 'Home',
icon: 'i-lucide-home',
to: '/'
}, {
label: 'Projects',
icon: 'i-lucide-folder',
to: '/projects'
}, {
label: 'Blog',
icon: 'i-lucide-file-text',
to: '/blog'
}, {
label: 'Speaking',
icon: 'i-lucide-mic',
to: '/speaking'
}, {
label: 'About',
icon: 'i-lucide-user',
to: '/about'
}]