-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
app.config.ts
180 lines (180 loc) · 4.76 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
180
export default defineAppConfig({
shadcnDocs: {
site: {
name: "Inspira UI",
description: "Build beautiful websites using Vue & Nuxt.",
ogImage: "https://inspira-ui.com/og-image.png",
},
theme: {
customizable: true,
color: "zinc",
radius: 0.75,
},
header: {
title: "Inspira UI",
showTitle: true,
darkModeToggle: true,
logo: {
light: "/logo.svg",
dark: "/logo-dark.svg",
},
nav: [
{
title: "Docs",
links: [
{
title: "Getting Started",
to: "/getting-started/introduction",
description: "Introduction to Inspira UI and its core concepts.",
},
{
title: "Installation",
to: "/getting-started/installation",
description: "Follow the step-by-step guide to install Inspira UI in your project.",
},
{
title: "Components",
to: "/components",
description: "Explore all available components and their usage.",
target: "_self",
},
],
},
{
title: "Credits",
links: [
{
title: "Aceternity UI",
to: "https://ui.aceternity.com/",
description:
"For providing the inspiration and permission to adapt the original designs.",
target: "_blank",
},
{
title: "Magic UI",
to: "https://magicui.design/",
description: "For providing the inspiration for designs.",
target: "_blank",
},
{
title: "shadcn-vue",
to: "https://www.shadcn-vue.com/",
description: "For the Vue port of shadcn-ui and contributions to some components",
target: "_blank",
},
{
title: "shadcn-docs-nuxt",
to: "https://github.com/ZTL-UwU/shadcn-docs-nuxt",
description: "For the beautifully crafted Nuxt documentation site.",
target: "_blank",
},
],
},
{
title: "Community",
links: [
{
title: "GitHub",
to: "https://github.com/unovue/inspira-ui",
description: "Source code for Inspira UI.",
target: "_blank",
},
{
title: "Discord",
to: "https://discord.gg/Xbh5DwJRc9",
description: "Connect with community on Discord",
target: "_blank",
},
{
title: "Forum",
to: "https://github.com/unovue/inspira-ui/discussions",
target: "_blank",
description: "Join the forum",
},
],
},
],
links: [
{
icon: "lucide:github",
to: "https://github.com/unovue/inspira-ui",
target: "_blank",
},
{
icon: "lucide:x",
to: "https://x.com/rahulv_dev",
target: "_blank",
},
{
icon: "lucide:bot",
to: "https://discord.gg/Xbh5DwJRc9",
target: "_blank",
},
],
},
aside: {
useLevel: true,
collapse: true,
},
main: {
breadCrumb: true,
showTitle: true,
},
footer: {
credits: "Copyright © 2024 - 2025",
links: [
{
icon: "lucide:globe",
to: "https://rahulv.dev",
title: "Maintained by rahulv.dev",
target: "_blank",
},
{
icon: "lucide:github",
title: "Github",
to: "https://github.com/unovue/inspira-ui",
target: "_blank",
},
],
},
toc: {
enable: true,
title: "On This Page",
carbonAds: {
enable: true,
code: "CW7DEK37",
placement: "inspira-uicom",
},
links: [
{
title: "Star on GitHub",
icon: "lucide:star",
to: "https://github.com/unovue/inspira-ui",
target: "_blank",
},
{
title: "Create Issues",
icon: "lucide:circle-dot",
to: "https://github.com/unovue/inspira-ui/issues",
target: "_blank",
},
{
title: "Join Discord",
icon: "lucide:bot",
to: "https://discord.gg/Xbh5DwJRc9",
target: "_blank",
},
{
title: "Forum",
icon: "lucide:newspaper",
to: "https://github.com/unovue/inspira-ui/discussions",
target: "_blank",
},
],
},
search: {
enable: true,
inAside: true,
},
},
});