Initial Commit
ci / ci (22, ubuntu-latest) (push) Failing after 8m9s

This commit is contained in:
2026-03-30 02:18:38 +01:00
commit 1bfc6fbaa8
63 changed files with 15756 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
export function copyToClipboard(toCopy: string, message: string = 'Copied to clipboard') {
const toast = useToast()
navigator.clipboard.writeText(toCopy).then(() => {
toast.add({ title: message, color: 'success', icon: 'i-lucide-check-circle' })
})
}
+23
View File
@@ -0,0 +1,23 @@
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'
}]