-
Notifications
You must be signed in to change notification settings - Fork 14
/
siteConfig.js
162 lines (162 loc) · 4.51 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
158
159
160
161
162
module.exports = {
siteUrl: "https://ghost-novela-preview.draftbox.co",
postsPerPage: 12,
siteTitleMeta: "Built with Draftbox",
siteDescriptionMeta:
"Lightning fast, secure front-end for your WordPress or Ghost blog, without coding.",
shareImageWidth: 1000,
shareImageHeight: 523,
shortTitle: "Built with Draftbox",
siteIcon: "favicon.png",
backgroundColor: "#e9e9e9",
themeColor: "#15171A",
apiUrl: "https://ghost.theasdfghjkl.com",
header: {
navigation: [
{
label: "Home",
url: "https://ghost-novela-preview.draftbox.co/",
},
{
label: "Contact",
url: "https://ghost-novela-preview.draftbox.co/contact",
},
],
},
footer: {
copyright: "Built with Draftbox",
navigation: [
{
label: "Home",
url: "https://ghost-novela-preview.draftbox.co/",
},
{
label: "Sitemap",
url: "https://ghost-novela-preview.draftbox.co/sitemap.xml",
},
{
label: "RSS",
url: "https://ghost-novela-preview.draftbox.co/rss.xml",
},
{
label: "Contact",
url: "https://ghost-novela-preview.draftbox.co/contact",
},
{
label: "External Link",
url: "https://spectrum.chat/gatsby-js/themes?tab=posts",
},
],
},
subscribeWidget: {
visible: true,
title: "Subscribe to Built with Draftbox",
helpText: "Get the latest posts delivered right to your inbox.",
successMessage: "Thanks for subscribing to Built with Draftbox.",
},
socialLinks: {
twitter: "https://twitter.com/draftboxhq",
facebook: "https://facebook.com/",
instagram: "https://www.instagram.com/",
linkedin: "https://linkedin.com",
github: "https://github.com/draftbox-co",
pinterest: "",
youtube: "",
dribbble: "",
behance: "",
externalLink: "",
whatsapp: "",
},
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.jpg",
alternateLogoUrl: "alternateLogo.svg",
themeConfig: {
variables: [
{ varName: "--accent-color", value: "#6166DC" },
{ varName: "--accent-color-dark", value: "#E9DAAC" },
{ varName: "--success-color", value: "#46B17B" },
{ varName: "--success-color-dark", value: "#46B17B" },
{
varName: "--merriweather-font",
value: `Merriweather`,
},
{
varName: "--merriweather-font-bold",
value: `700`,
},
{
varName: "--system-font",
value: `system-ui`,
},
{
varName: "--system-font-normal",
value: `400`,
},
{
varName: "--system-font-semibold",
value: `600`,
},
{
varName: "--system-font-bold",
value: `700`,
},
{
varName: "--monospace-font",
value: `Source Code Pro`,
},
{
varName: "--monospace-font-normal",
value: `400`,
},
],
fonts: [
{
family: "Merriweather",
variants: ["700"],
//subsets: ['latin']
//text: 'Hello'
fontDisplay: "swap",
strategy: "selfHosted", // 'base64' || 'cdn'
},
{
family: "Source Code Pro",
variants: ["400"],
//subsets: ['latin']
//text: 'Hello'
fontDisplay: "swap",
strategy: "selfHosted", // 'base64' || 'cdn'
},
],
},
};