-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.config.ts
58 lines (58 loc) · 1.43 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
export default defineAppConfig({
ui: {
primary: 'blue',
gray: 'slate',
footer: {
bottom: {
left: 'text-sm text-gray-500 dark:text-gray-400',
wrapper: 'border-t border-gray-200 dark:border-gray-800'
}
}
},
seo: {
siteName: 'Orion for Laravel - The simplest way to create REST API with Laravel'
},
header: {
logo: {
alt: '',
light: '',
dark: ''
},
search: true,
colorMode: true,
links: [{
'icon': 'i-simple-icons-github',
'to': 'https://github.com/tailflow/laravel-orion',
'target': '_blank',
'aria-label': 'Orion for Laravel on GitHub'
}]
},
footer: {
credits: 'Copyright © 2019-2024 Aleksei Zarubin',
colorMode: false,
links: [{
'icon': 'i-simple-icons-x',
'to': 'http://x.com/alexzarbn',
'target': '_blank',
'aria-label': 'Orion for Laravel creator on X'
}, {
'icon': 'i-simple-icons-github',
'to': 'https://github.com/tailflow/laravel-orion',
'target': '_blank',
'aria-label': 'Orion for Laravel on GitHub'
}]
},
toc: {
title: 'Table of Contents',
bottom: {
title: 'Community',
edit: 'https://github.com/tailflow/laravel-orion-docs-new/edit/main/content',
links: [{
icon: 'i-heroicons-star',
label: 'Star on GitHub',
to: 'https://github.com/tailflow/laravel-orion',
target: '_blank'
}]
}
}
})