19 lines
601 B
JavaScript
19 lines
601 B
JavaScript
/*
|
|
these are the global variables, make sure to change them for yours
|
|
you can add anything you like here, just import this file and
|
|
access any variable via object syntax global.yourVarName
|
|
*/
|
|
export default {
|
|
siteUrl: 'https://ehandytech.com',
|
|
siteName: 'ehandytech',
|
|
author: 'Huwng',
|
|
twitterHandle: '@kmacoders',
|
|
twitterURL: 'https://twitter.com/garethredfern',
|
|
githubURL: 'https://github.com/garethredfern',
|
|
siteTitle: 'Add Your Main Site Title Here',
|
|
siteDesc:
|
|
'A description for your site here, this will show on the home page.',
|
|
mainImage: '',
|
|
siteType: 'website'
|
|
}
|