forked from contentful/template-marketing-webapp-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontentful.config.js
25 lines (24 loc) · 1.03 KB
/
contentful.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
const url = process.env.NEXT_PUBLIC_BASE_URL;
module.exports = {
contentful: {
space_id: process.env.CONTENTFUL_SPACE_ID || '',
cda_token: process.env.CONTENTFUL_ACCESS_TOKEN || '',
cpa_token: process.env.CONTENTFUL_PREVIEW_ACCESS_TOKEN || '',
},
meta: {
title: 'Digital banking for the new generation | Colorful Coin',
description: `Enjoy premium banking services wherever you go: instant transfers and best exchange rates, exclusive offers and priority customer support. Apply online at ${url
.replace('https://', '')
.replace('http://', '')}`,
url,
image:
'https://images.ctfassets.net/w8vf7dk7f259/4bucno7z1xAyVI5MOkU6Pu/ded83d0ec1eb732ae3a81ddab7a18877/fallback-image-03.jpg',
},
icon: {
light:
'https://images.ctfassets.net/w8vf7dk7f259/llZXwDCnl9NqdyuVvjn1n/d20cea90225e7f53dfbf8a18a46e972d/gocoin-icon-light.svg',
dark: 'https://images.ctfassets.net/w8vf7dk7f259/i9iu6GU6dFWQJJwJzwxCT/952cc3bab415e28f521c22933072a09c/gocoin-icon.svg',
width: 66,
height: 64,
},
};