-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathclient-config.js
45 lines (43 loc) · 1.45 KB
/
client-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
const config = {
siteURL: 'https://codeytek.com/headless-cms',
headerMenuLocation: 'hcms-menu-header',
footerMenuLocation: 'hcms-menu-footer',
siteTitle: 'React WordPress Theme', // Will be used if we don't set site title from WordPress customizer.
siteDescription: 'Awesome theme', // Will be used if we don't set site description from WordPress customizer.
copyrightText: '© 2020 CODEYTEK ACADEMY.',
footerMenuTitle: 'About the site',
homePagePostType: 'post', // Will be used to display 3 latest post on home page of given post type
homePageTaxonomy: 'category', // // Will be used to display 3 taxonomies on home page of given post type,
heroSection: {
heroTitle: 'Amazing world.',
heroDescription: 'Discover more than just common Landscapes. Try to live inside of the wild nature. Create your own story. Unforgettable and nonrepeating by nobody.',
heroImgURL: '/images/mountain-illustration.png',
heroBtnTxt: 'Explore My World',
},
searchSection: {
searchBackURL: '/images/search-background.png',
searchPlaceholderTxt: '',
images: [
{
src: '/images/bag.png',
name: 'Solo'
},
{
src: '/images/airplane.png',
name: 'Flight'
},
{
src: '/images/group.png',
name: 'Group'
},
]
},
featuredPostsSection: {
featuredPostHeading: 'Featured Posts'
},
latestPostsSection: {
latestPostHeading: 'Latest Posts'
},
defaultPostImage: '/images/default.jpg', // Used for default post or pages.
};
export default config;