46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
export default defineAppConfig({
|
|
global: {
|
|
picture: {
|
|
dark: 'https://media.licdn.com/dms/image/v2/D4E03AQFH5BVMre2e1A/profile-displayphoto-crop_800_800/B4EZplNLbYGYAM-/0/1762634545622?e=1766016000&v=beta&t=_jK5TKTJ8agI3add11w-IRaISiFUfhtVlhaCG_Jwidw',
|
|
light: 'https://media.licdn.com/dms/image/v2/D4E03AQFH5BVMre2e1A/profile-displayphoto-crop_800_800/B4EZplNLbYGYAM-/0/1762634545622?e=1766016000&v=beta&t=_jK5TKTJ8agI3add11w-IRaISiFUfhtVlhaCG_Jwidw',
|
|
alt: 'My profile picture'
|
|
},
|
|
meetingLink: 'https://calendar.google.com/calendar/appointments/schedules/AcZssZ0BRGpbzvnsdqUpiWdhL5qiagpKYh9UF1UG3yfC_1Ga385_5-ajCy8JOnsBZJCFwd-R_si5BeT2',
|
|
email: 'nick@kalar.codes',
|
|
available: true
|
|
},
|
|
ui: {
|
|
colors: {
|
|
primary: 'blue',
|
|
neutral: 'neutral'
|
|
},
|
|
pageHero: {
|
|
slots: {
|
|
container: 'py-18 sm:py-24 lg:py-32',
|
|
title: 'mx-auto max-w-xl text-pretty text-3xl sm:text-4xl lg:text-5xl',
|
|
description: 'mt-2 text-md mx-auto max-w-2xl text-pretty sm:text-md text-muted'
|
|
}
|
|
}
|
|
},
|
|
footer: {
|
|
credits: `Built with Nuxt UI • © Nick Kalar ${new Date().getFullYear()}`,
|
|
colorMode: false,
|
|
links: [{
|
|
'icon': 'i-simple-icons-linkedin',
|
|
'to': 'https://www.linkedin.com/in/nickkalar/',
|
|
'target': '_blank',
|
|
'aria-label': 'Nick on LinkedIn'
|
|
}, {
|
|
'icon': 'i-simple-icons-twitter',
|
|
'to': 'https://www.x.com/nickkalar',
|
|
'target': '_blank',
|
|
'aria-label': 'Nick on Twitter'
|
|
}, {
|
|
'icon': 'i-simple-icons-gitea',
|
|
'to': 'https://git.kalar.codes/NickKalar',
|
|
'target': '_blank',
|
|
'aria-label': 'Nick on Gitea'
|
|
}]
|
|
}
|
|
})
|