-
Notifications
You must be signed in to change notification settings - Fork 58
/
app.config.ts
45 lines (45 loc) · 950 Bytes
/
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
43
44
45
export default defineAppConfig({
alpine: {
title: 'Alpine',
description: 'The minimalist blog theme',
image: {
src: '/social-card-preview.png',
alt: 'An image showcasing my project.',
width: 400,
height: 300
},
header: {
position: 'right',
logo: {
path: '/logo.svg',
pathDark: '/logo-dark.svg',
alt: 'alpine'
}
},
footer: {
credits: {
enabled: true,
text: 'Alpine',
repository: 'https://www.github.com/nuxt-themes/alpine'
},
navigation: true,
alignment: 'center',
message: 'Follow me on'
},
socials: {
twitter: '',
instagram: '',
github: '',
facebook: '',
medium: '',
youtube: ''
},
form: {
successMessage: 'Message sent. Thank you!'
},
backToTop: {
text: 'Back to top',
icon: 'material-symbols:arrow-upward'
}
}
})