-
Notifications
You must be signed in to change notification settings - Fork 2
/
siteConfig.js
157 lines (153 loc) · 4.7 KB
/
siteConfig.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
module.exports = {
siteUrl: `https://ghost-attila-preview.draftbox.co`, // Site domain. Do not include a trailing slash!
postsPerPage: 12, // Number of posts shown on paginated pages (changes this requires sometimes to delete the cache)
siteTitleMeta: `Built with Draftbox`, // This allows an alternative site title for meta data for pages.
siteDescriptionMeta: `Lightning fast, secure front-end for your WordPress or Ghost blog, without coding.`, // This allows an alternative site description for meta data for pages.
shareImageWidth: 1000, // Change to the width of your default share image
shareImageHeight: 523, // Change to the height of your default share image
shortTitle: `Built with Draftbox`, // Used for App manifest e.g. Mobile Home Screen
siteIcon: `favicon.png`, // Logo in /static dir used for SEO, RSS, and App manifest
backgroundColor: `#e9e9e9`, // Used for Offline Manifest
themeColor: `#15171A`, // Used for Offline Manifest
apiUrl: `https://ghost.theasdfghjkl.com`,
subscribeWidget: {
visible: true,
title: "Subscribe to Draftbox",
helpText: "Get the latest posts delivered right to your inbox.",
successMessage: "Thanks for subscribing to Built with Draftbox.",
},
header: {
navigation: [
{
label: "Home",
url: "https://ghost-attila-preview.draftbox.co/",
},
{
label: "Contact",
url: "https://ghost-attila-preview.draftbox.co/contact",
},
],
},
footer: {
copyright: "Built with Draftbox",
navigation: [
{
label: "Home",
url: "https://ghost-attila-preview.draftbox.co/",
},
{
label: "Sitemap",
url: "https://ghost-attila-preview.draftbox.co/sitemap.xml",
},
{
label: "RSS",
url: "https://ghost-attila-preview.draftbox.co/rss.xml",
},
{
label: "Contact",
url: "https://ghost-attila-preview.draftbox.co/contact",
},
{
label: "External Link",
url: "https://spectrum.chat/gatsby-js/themes?tab=posts",
},
],
},
socialLinks: {
twitter: "https://twitter.com/draftboxhq",
facebook: "https://facebook.com/draftboxhq",
instagram: "https://www.instagram.com/draftboxhq_uploads",
linkedin: "https://linkedin.com/",
github: "https://github.com/draftbox-co",
whatsapp: "",
pinterest: "",
youtube: "",
dribbble: "",
behance: "",
externalLink: "",
},
contactWidget: {
title: "Contact Built with Draftbox",
successMessage: "We’ll get in touch with you soon.",
},
metadata: {
title: "Built with Draftbox",
description:
"Lightning fast, secure front-end for your WordPress or Ghost blog, without coding. Draftbox is a new-age blogging platform for everyone, built on Gatsby.",
},
twitterCard: {
title: "Built with Draftbox",
description:
"Lightning fast, secure front-end for your WordPress or Ghost blog, without coding. Draftbox is a new-age blogging platform for everyone, built on Gatsby.",
imageUrl: "twitterImage.png",
username: "@DraftboxHQ",
},
facebookCard: {
title: "Built with Draftbox",
description:
"Lightning fast, secure front-end for your WordPress or Ghost blog, without coding. Draftbox is a new-age blogging platform for everyone, built on Gatsby.",
imageUrl: "facebookImage.png",
appId: "",
width: 1000,
height: 523,
},
siteTitle: "Built with Draftbox",
siteDescription:
"Lightning fast, secure front-end for your WordPress or Ghost blog, without coding.",
language: "en",
logoUrl: "logo.svg",
iconUrl:
"https://ghost.theasdfghjkl.com/content/images/2020/05/draftbox-colored-icon.png",
coverUrl: "cover.png",
alternateLogoUrl: "alternateLogo.svg",
themeConfig: {
variables: [
{
varName: "--primary-color",
value: "#e05431",
},
{
varName: "--primary-color-active",
value: "#d13f21",
},
{
varName: "--cardo-font",
value: "Cardo",
},
{
varName: "--cardo-font-normal",
value: "400",
},
{
varName: "--fira-sans-font",
value: "Fira Sans",
},
{
varName: "--fira-sans-font-normal",
value: "400",
},
{
varName: "--fira-sans-font-semibold",
value: "600",
},
{
varName: "--fira-sans-font-bold",
value: "700",
},
],
fonts: [
{
family: "Cardo",
variants: ["400", "400i", "700"],
fontDisplay: "swap",
strategy: "selfHosted",
},
{
family: "Fira Sans",
variants: ["400", "500", "700"],
fontDisplay: "swap",
strategy: "selfHosted",
},
],
},
};