-
Notifications
You must be signed in to change notification settings - Fork 25
/
app.config.ts
179 lines (178 loc) · 4.21 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
export default defineAppConfig({
ui: {
primary: 'yellow',
gray: 'cool',
button: {
base: 'transition ease-in',
color: {
gray: {
solid: 'shadow-none bg-gray-300/20 hover:bg-gray-300/40 dark:bg-gray-700/40 dark:hover:bg-gray-700/50',
},
},
variant: {
solid: 'shadow-none',
},
},
select: {
base: 'transition ease-in',
color: {
gray: { outline: 'shadow-none bg-gray-300/20 hover:bg-gray-300/40 dark:bg-gray-700/40 dark:hover:bg-gray-700/50' },
},
},
buttonGroup: {
shadow: 'shadow-none',
},
card: {
base: 'transition ease-in duration-150',
},
input: {
base: 'transition ease-in',
color: {
gray: {
outline: 'shadow-none bg-gray-300/20 hover:bg-gray-300/40 dark:bg-gray-700/40 dark:hover:bg-gray-700/50',
},
},
},
selectMenu: {
option: {
base: 'cursor-pointer',
},
},
},
website: {
search: {
groups: [
/**
* End / is very important since we use startsWith
* Without, page /blog will be in the wrong group
*/
{
name: 'Articles',
path: '/resources/',
},
{
name: 'Blog',
path: '/blog/',
},
{
name: 'Packages',
path: '/packages/',
},
],
},
rss: {
webMaster: {
name: 'UnJS Team',
email: 'hi@unjs.io',
},
docs: 'https://validator.w3.org/feed/docs/rss2.html',
},
footer: {
quote: 'Unlock the potential of your web development journey with UnJS - where innovation meets simplicity, and possibilities become limitless.',
menu: [
{
title: 'Community',
items: [
{
title: 'Contribute',
url: 'https://github.com/unjs/governance',
rel: 'noopener',
target: '_blank',
},
{
title: 'Discussions',
url: 'https://github.com/unjs/community/discussions',
rel: 'noopener',
target: '_blank',
},
// {
// title: 'FAQ',
// url: '/faq',
// rel: null,
// target: null,
// },
{
title: 'Contact us',
url: 'mailto:hi@unjs.io',
rel: null,
target: null,
},
],
},
{
title: 'Content',
items: [
// {
// title: 'Learn',
// url: '/learn',
// rel: null,
// target: null,
// },
// {
// title: 'Build',
// url: '/build',
// rel: null,
// target: null,
// },
// {
// title: 'Explore',
// url: '/explore',
// rel: null,
// target: null,
// },
{
title: 'Search',
url: '/search',
rel: null,
target: null,
},
],
},
{
title: 'UnJS',
items: [
{
title: 'Website',
url: 'https://unjs.io',
rel: 'noopener',
target: '_blank',
},
{
title: 'Design Kit',
url: '/design-kit?utm_source=unjs&utm_medium=footer',
},
{
title: 'GitHub',
url: 'https://github.com/unjs',
rel: 'noopener',
target: '_blank',
},
],
},
],
},
socials: {
github: {
url: 'https://github.com/unjs',
rel: 'noopener',
target: '_blank',
icon: 'i-simple-icons-github',
name: 'GitHub',
},
x: {
url: 'https://x.com/unjsio',
icon: 'i-simple-icons-x',
rel: 'noopener',
target: '_blank',
name: 'X',
},
rss: {
url: '/rss',
icon: 'i-heroicons-rss',
name: 'RSS',
target: null,
rel: null,
},
},
},
})