-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy path_meta.tsx
More file actions
69 lines (65 loc) · 1.2 KB
/
_meta.tsx
File metadata and controls
69 lines (65 loc) · 1.2 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
66
67
68
69
import type { MetaRecord } from 'nextra'
// examples list
const examplesList = {
// "Basic" : {
// type: 'separator',
// },
'hello-world': {
title: 'Hello World',
href: '/examples/hello-world'
},
'load-a-3D-model' : {
title : 'Load a 3D model',
href: '/examples/load-a-3D-model'
},
'primitives' : {
title: 'Primitives',
href: '/examples/primitives'
},
'pointer-events' : {
title: 'Pointer Events',
href: '/examples/pointer-events'
},
// "Advanced" : {
// type: 'separator',
// },
'model-viewer' : {
title: "Model Viewer",
href: '/examples/model-viewer'
},
'splats' : {
title: "Splat Viewer",
href: '/examples/splats'
},
'physics' : {
title: "Physics",
href: '/examples/physics'
},
'motion' : {
title: "Motion",
href: '/examples/motion'
},
}
const meta: MetaRecord = {
docs: {
title: 'Docs',
type: 'page',
theme: {
sidebar: true,
}
},
examples: {
title: 'Examples',
type: 'menu',
items: examplesList
},
'': {
type: 'separator',
},
faq: {},
github_link: {
title: 'PlayCanvas Docs',
href: 'https://developer.playcanvas.com'
},
}
export default meta;