-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsite.config.js
92 lines (88 loc) · 3.82 KB
/
site.config.js
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
export const siteConfig = {
title: `Airview`,
company: `airwalkreply.com`,
tagline: `technology, done right`,
etherpad: {
url: "https://pad.airview.airwalkconsulting.io",
},
content: {
services: {
source: "github", // The source of the content
repo: "airwalk_patterns", // The name of the repo
owner: "airwalk-digital", // The owner of the repo
branch: "main",
path: "services", // the base path for the content
reference: "service", // how the collection is referred to in frontmatter links
collections: ["knowledge", "designs"],
menu: {component: "FullHeaderMenu", collection: "providers" } // the menu to use on the left and the baseline for the menu
},
providers: {
source: "github", // The source of the content
repo: "airwalk_patterns", // The name of the repo
owner: "airwalk-digital", // The owner of the repo
branch: "main",
path: "providers", // the base path for the content
reference: "provider", // how the collection is referred to in frontmatter links
collections: ["services"],
},
solutions: {
source: "github", // The source of the content
repo: "airwalk_patterns", // The name of the repo
owner: "airwalk-digital", // The owner of the repo
branch: "main",
path: "solutions", // the base path for the content
reference: "solution", // how the collection is referred to in frontmatter links
collections: ["knowledge", "designs"],
menu: {component: "ListMenu", collection: "solutions" } // the menu to use on the left and the baseline for the menu
},
knowledge: {
source: "github", // The source of the content
repo: "airwalk_patterns", // The name of the repo
owner: "airwalk-digital", // The owner of the repo
branch: "main",
path: "knowledge", // the base path for the content
reference: "knowledge", // how the collection is referred to in frontmatter links
menu: {component: "DummyMenu", collection: null } // the menu to use on the left
},
designs: {
source: "github", // The source of the content
repo: "airwalk_patterns", // The name of the repo
owner: "airwalk-digital", // The owner of the repo
branch: "main",
path: "designs", // the base path for the content
reference: "design", // how the collection is referred to in frontmatter links
collections: ["knowledge"],
},
customers: {
source: "github", // The source of the content
repo: "airwalk_patterns", // The name of the repo
owner: "airwalk-digital", // The owner of the repo
branch: "main",
path: "customers", // the base path for the content
reference: "customer", // how the collection is referred to in frontmatter links
collections: ["knowledge", "projects"],
},
projects: {
source: "github", // The source of the content
repo: "airwalk_patterns", // The name of the repo
owner: "airwalk-digital", // The owner of the repo
branch: "main",
path: "projects", // the base path for the content
reference: "project", // how the collection is referred to in frontmatter links
collections: ["knowledge"],
menu: {component: "FullHeaderMenu", collection: "customers" } // the menu to use on the left and the baseline for the menu
},
products: {
source: 'github', // The source of the content
repo: 'airwalk_patterns', // The name of the repo
owner: 'airwalk-digital', // The owner of the repo
branch: 'main',
path: 'products', // the base path for the content
reference: 'product', // how the collection is referred to in frontmatter links
collections: ['knowledge', 'designs']
},
// applications: { source: 'static'},
// frameworks: { source: 'static'}
}
}
export default siteConfig;