-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
42 lines (42 loc) · 1.32 KB
/
app.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
export default defineAppConfig({
alpine: {
title: 'Igor Jacaúna',
description: 'Um blog',
image: {
src: '/social-card-preview.png',
alt: 'An image showcasing my project.',
width: 400,
height: 300
},
header: {
position: 'right', // possible value are : | 'left' | 'center' | 'right'
logo: {
path: '/logo.svg', // path of the logo
pathDark: '/logo-dark.svg', // path of the logo in dark mode, leave this empty if you want to use the same logo
alt: 'igor jacaúna' // alt of the logo
}
},
footer: {
credits: {
text: 'Igor Jacaúna',
enabled: true, // possible value are : true | false
repository: 'https://www.github.com/igorjacauna/blog' // our github repository
},
navigation: true, // possible value are : true | false
alignment: 'center', // possible value are : 'none' | 'left' | 'center' | 'right'
message: 'Redes sociais' // string that will be displayed in the footer (leave empty or delete to disable)
},
socials: {
twitter: '',
github: 'igorjacauna',
linkedin: {
icon: 'uil:linkedin',
label: 'LinkedIn',
href: 'https://www.linkedin.com/profile/igorjacauna'
}
},
form: {
successMessage: 'Message sent. Thank you!'
}
}
})