-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
60 lines (59 loc) · 1.6 KB
/
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
module.exports = {
lang: "en-UK",
title: "AirGrid Docs",
description: "AirGrid platform documentation site.",
head: [["link", { rel: "icon", type: "image/png", href: "/favicon.png" }]],
cleanUrls: true,
appearance: false,
themeConfig: {
logo: "/logo.png",
search: {
provider: "local",
},
siteTitle: false,
sidebar: [
{
text: "General",
collapsed: false,
items: [
{ text: "Introduction", link: "/" },
{ text: "Platform Privacy", link: "/privacy" },
{ text: "Case studies", link: "/case-studies" },
],
},
{
text: "Advertisers",
collapsed: false,
items: [
{
text: "Privacy Sandbox",
collapsed: false,
items: [
{ text: "Introduction", link: "/advertisers/sandbox/" },
{ text: "Setup", link: "/advertisers/sandbox/setup" },
{ text: "Pixels", link: "/advertisers/sandbox/pixels" },
{ text: "FAQ", link: "/advertisers/sandbox/faq" },
],
},
],
},
{
text: "Publishers",
collapsed: false,
items: [
{ text: "Integration", link: "/publishers/integration" },
{ text: "Performance", link: "/publishers/performance" },
{ text: "FAQ", link: "/publishers/faq" },
],
},
{
text: "Labs",
collapsed: false,
items: [
{ text: "WTF is Labs?", link: "/labs/" },
{ text: "Synthetic panel", link: "/labs/synthetic-panel" },
],
},
],
},
};