-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathsite.ts
More file actions
65 lines (64 loc) · 1.83 KB
/
Copy pathsite.ts
File metadata and controls
65 lines (64 loc) · 1.83 KB
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
export const siteConfig = {
url: 'https://dotui.org',
name: 'dotUI',
title: 'dotUI',
tagline: 'The Design System Studio for the Web',
description:
'The design system studio for the web. Every design decision is yours — build on real components, then install with the shadcn CLI or export to v0.',
keywords: [
'dotUI',
'React',
'Tailwind CSS',
'React components',
'React Aria',
'Accessible components',
],
authors: [
{
name: 'mehdibha',
url: 'https://www.mehdibha.com',
},
],
creator: 'mehdibha',
thumbnail: '/images/thumbnail.png',
twitter: {
creator: '@mehdibha',
},
og: {
title: 'The Design System Studio for the Web',
description:
'Every design decision is yours — build on real components, then install with the shadcn CLI or export to v0.',
},
links: {
github: 'https://github.com/mehdibha/dotUI',
twitter: 'https://x.com/mehdibha',
discord: 'https://discord.gg/DXpj5V2fU8',
creatorGithub: 'https://github.com/mehdibha',
},
} as const
export const navItems: {
name: string
/** Pathname prefix used for active-state highlighting. */
match: string
/** Router link target. Docs entries target the splat route (`/docs/$`) rather
* than the bare `/docs` layout route: linking the layout route generates a
* path that re-matches to its splat child, tripping TanStack's
* `params.stringify` dev warning on every render. */
to: string
params?: { _splat: string }
}[] = [
{ name: 'Docs', match: '/docs', to: '/docs/$', params: { _splat: '' } },
{
name: 'Components',
match: '/docs/components',
to: '/docs/$',
params: { _splat: 'components' },
},
{
name: 'Charts',
match: '/docs/charts',
to: '/docs/$',
params: { _splat: 'charts' },
},
{ name: 'Create', match: '/create', to: '/create' },
]