feat: add utils | page

This commit is contained in:
kmacoders
2021-07-01 00:06:02 +07:00
parent e843aa1d7f
commit 5036d3602f
6 changed files with 174 additions and 0 deletions

18
utils/global.js Normal file
View File

@@ -0,0 +1,18 @@
/*
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://example.com',
siteName: 'Starter Blog',
author: 'Joe Blogs',
twitterHandle: '@joeblogs',
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',
};