-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.config.ts
93 lines (93 loc) · 1.7 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
export default defineAppConfig({
ui: {
primary: "neutral",
},
header: {
menu: {
font: {
type: 'Arial, sans-serif',
size: '22px',
}
}
},
main: {
font: {
type: 'Arial',
size: '23px',
},
h1: {
font: {
type: 'DM Sans',
size: '2em',
},
},
h2: {
font: {
type: 'DM Sans',
size: '1.5em',
},
},
h3: {
font: {
type: 'DM Sans',
size: '1.17em',
},
},
h4: {
font: {
type: 'DM Sans',
size: '1em',
},
},
h5: {
font: {
type: 'DM Sans',
size: '0.83em',
},
},
h6: {
font: {
type: 'DM Sans',
size: '0.67em',
},
},
h7: {
font: {
type: 'DM Sans',
size: '0.44em',
},
},
},
socialLinks: {
linkedIn: {
title: "LinkedIn",
logo: "i-fa6-brands-linkedin",
url: "http://www.linkedin.com/company/52819?trk=tyah",
},
facebook: {
title: "Facebook",
logo: "i-fa6-brands-square-facebook",
url: "https://www.facebook.com/OMASpecWorks",
},
youtube: {
title: "YouTube",
logo: "i-fa6-brands-square-youtube",
url: "https://www.youtube.com/c/OMASpecWorks",
},
x: {
title: "X",
logo: "i-fa6-brands-square-x-twitter",
url: "https://twitter.com/OMASpecWorks",
},
github: {
title: "GitHub",
logo: "i-fa6-brands-square-github",
url: "https://github.com/OpenMobileAlliance",
},
// rss: {
// title: "RSS",
// logo: "i-heroicons-solid-rss",
// url: "http://openmobilealliance.org/rss/",
// },
},
});