46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
export default defineAppConfig({
|
|
global: {
|
|
picture: {
|
|
dark: 'https://cbu01.alicdn.com/img/ibank/O1CN01uZ3fTP1Bs31lE2Mlf_!!0-0-cib.jpg',
|
|
light: 'https://cbu01.alicdn.com/img/ibank/O1CN01uZ3fTP1Bs31lE2Mlf_!!0-0-cib.jpg',
|
|
alt: 'My profile picture'
|
|
},
|
|
meetingLink: 'https://chuangtewulian.1688.com/page/index.html',
|
|
email: 'ui-pro@nuxt.com',
|
|
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 • © ${new Date().getFullYear()}`,
|
|
colorMode: false,
|
|
links: [{
|
|
'icon': 'i-simple-icons-discord',
|
|
'to': 'https://www.douyin.com/user/MS4wLjABAAAAdPkGyADnJFLrZBwDM9U7faUJs-wmmyEU9L34SS0CKhs',
|
|
'target': '_blank',
|
|
'aria-label': 'Nuxt on Discord'
|
|
}, {
|
|
'icon': 'i-simple-icons-x',
|
|
'to': 'https://chuangtewulian.1688.com/page/index.html',
|
|
'target': '_blank',
|
|
'aria-label': 'Nuxt on X'
|
|
}, {
|
|
'icon': 'i-simple-icons-github',
|
|
'to': 'https://chuangtewulian.1688.com/page/index.html',
|
|
'target': '_blank',
|
|
'aria-label': 'Nuxt UI on GitHub'
|
|
}]
|
|
}
|
|
})
|