-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtenant.config.ts
128 lines (127 loc) · 3.89 KB
/
tenant.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
import { Tenant } from '@planet-sdk/common/build/types/tenant';
export const defaultTenant: Tenant = {
id: 'ten_NxJq55pm',
config: {
appDomain: 'https://www1.plant-for-the-planet.org',
slug: 'planet',
tenantURL: 'www.plant-for-the-planet.org',
tenantGoal: null,
showUNEPLogo: true,
showUNDecadeLogo: true,
showRedeemHint: true,
enableGuestSepa: false,
darkModeEnabled: false,
font: {
primaryFontFamily:
'-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"',
secondaryFontFamily:
'-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"',
},
languages: ['en', 'de', 'es', 'fr', 'it', 'pt-BR', 'cs'],
header: {
isSecondaryTenant: false,
tenantLogoURL: 'https://cdn.plant-for-the-planet.org/logo/svg/planet.svg',
tenantLogoLink: '/',
items: {
home: {
title: 'home',
onclick: '/',
visible: true,
},
about: {
title: 'aboutUs',
onclick: 'https://www.plant-for-the-planet.org/',
visible: true,
subMenu: [
{
title: 'overview',
onclick: 'https://www.plant-for-the-planet.org/',
visible: true,
},
{
title: 'childrenAndYouth',
onclick: 'https://www.plant-for-the-planet.org/children-youth/',
visible: true,
},
{
title: 'trillionTrees',
onclick: 'https://www.plant-for-the-planet.org/trillion-trees/',
visible: true,
},
{
title: 'yucatan',
onclick: 'https://www.plant-for-the-planet.org/yucatan/',
visible: true,
},
{
title: 'partners',
onclick: 'https://www.plant-for-the-planet.org/partners/',
visible: true,
},
{
title: 'changeChocolate',
onclick: 'https://www.plant-for-the-planet.org/chocolate/',
visible: true,
},
{
title: 'stopTalkingStartPlanting',
onclick:
'https://www.plant-for-the-planet.org/stop-talking-start-planting/',
visible: true,
},
],
},
leaderboard: {
title: 'leaders',
onclick: '/all',
visible: true,
},
me: {
title: 'signIn',
loggedInTitle: 'me',
onclick: '/me',
visible: true,
},
shop: {
title: 'shop',
onclick: 'https://thegoodshop.org',
visible: true,
},
},
},
meta: {
title: 'Plant trees around the world - Plant-for-the-Planet',
appTitle: 'Plant for the Planet',
description:
"We are children and youth on a mission: bring back a trillion trees! No matter where you are, it's never been easier to plant trees and become part of the fight against climate crisis.",
image:
'https://cdn.plant-for-the-planet.org/media/images/app/bg_layer.jpg',
twitterHandle: '',
locale: 'en_US',
},
footerLinks: [
'shop',
'privacy',
'terms',
'imprint',
'contact',
'downloads',
'annualReports',
'team',
'jobs',
'supportUs',
'blogs',
'faqs',
],
manifest: '/tenants/planet/manifest.json',
},
images: {
featuredImage: null,
bannerImage: null,
},
name: 'Plant-for-the-Planet',
description:
'This Tenant is used for Beta version of the Plant-for-the-Planet Web App. At the end of the beta period, all donations will be re-associated to the main Plant-for-the-Planet Tenant',
image: null,
tenantGoal: null,
};