-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1df05d
commit e851e27
Showing
77 changed files
with
717 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,102 +1,105 @@ | ||
module.exports = { | ||
siteMetadata: { | ||
title: "Hello Tham", | ||
title: 'Hello Tham', | ||
author: { | ||
name: "Hello Tham", | ||
url: "https://hellotham.com", | ||
summary: "a boutique management and strategy consulting company", | ||
name: 'Chris Tham', | ||
url: 'https://christham.net', | ||
summary: 'Founder of Hello Tham', | ||
}, | ||
description: | ||
"Hello Tham is a boutique management consulting firm. We deliver consulting services to clients around the world. We specialise in Business and IT strategies, operating models, strategic roadmaps, enterprise architecture, analytics and business process design. We also assist our clients in implementing our recommendations, models and strategies.", | ||
siteUrl: "https://hellotham.com/", | ||
'Hello Tham is a boutique management consulting firm. We specialise in Business and IT strategies, operating models, strategic roadmaps, enterprise architecture, analytics and business process design.', | ||
siteUrl: 'https://hellotham.com/', | ||
location: 'Sydney, NSW, Australia', | ||
social: { | ||
facebook: "https://www.facebook.com/HelloThamCom", | ||
instagram: "https://www.instagram.com/HelloThamCom/", | ||
twitter: "https://twitter.com/HelloThamCom", | ||
linkedin: "https://www.linkedin.com/company/17950469", | ||
github: "https://github.com/hellotham", | ||
email: 'mailto:[email protected]', | ||
phone: 'tel:+61413008577', | ||
facebook: 'https://www.facebook.com/HelloThamCom', | ||
instagram: 'https://www.instagram.com/HelloThamCom/', | ||
twitter: 'https://twitter.com/HelloThamCom', | ||
linkedin: 'https://www.linkedin.com/company/17950469', | ||
github: 'https://github.com/hellotham', | ||
}, | ||
}, | ||
plugins: [ | ||
"gatsby-plugin-svgr-svgo", | ||
"gatsby-plugin-postcss", | ||
"gatsby-plugin-react-helmet", | ||
"gatsby-plugin-mdx-source-name", | ||
"gatsby-plugin-image", | ||
'gatsby-plugin-svgr-svgo', | ||
'gatsby-plugin-postcss', | ||
'gatsby-plugin-react-helmet', | ||
'gatsby-plugin-mdx-source-name', | ||
'gatsby-plugin-image', | ||
{ | ||
resolve: "gatsby-source-filesystem", | ||
resolve: 'gatsby-source-filesystem', | ||
options: { | ||
name: "images", | ||
name: 'images', | ||
path: `${__dirname}/src/images`, | ||
}, | ||
}, | ||
"gatsby-transformer-sharp", | ||
"gatsby-plugin-sharp", | ||
'gatsby-transformer-sharp', | ||
'gatsby-plugin-sharp', | ||
{ | ||
resolve: "gatsby-source-filesystem", | ||
resolve: 'gatsby-source-filesystem', | ||
options: { | ||
name: "pages", | ||
name: 'pages', | ||
path: `${__dirname}/src/pages/`, | ||
}, | ||
}, | ||
{ | ||
resolve: "gatsby-source-filesystem", | ||
resolve: 'gatsby-source-filesystem', | ||
options: { | ||
name: "posts", | ||
name: 'posts', | ||
path: `${__dirname}/src/posts/`, | ||
}, | ||
}, | ||
{ | ||
resolve: "gatsby-plugin-page-creator", | ||
resolve: 'gatsby-plugin-page-creator', | ||
options: { | ||
path: `${__dirname}/src/pages/`, | ||
ignore: ["__generated__/*"], | ||
ignore: ['__generated__/*'], | ||
}, | ||
}, | ||
{ | ||
resolve: "gatsby-plugin-page-creator", | ||
resolve: 'gatsby-plugin-page-creator', | ||
options: { | ||
path: `${__dirname}/src/posts`, | ||
}, | ||
}, | ||
{ | ||
resolve: "gatsby-plugin-mdx", | ||
resolve: 'gatsby-plugin-mdx', | ||
options: { | ||
// defaultLayouts: { | ||
// posts: require.resolve("./src/templates/mdx-template.tsx"), | ||
// default: require.resolve("./src/templates/mdx-template.tsx"), | ||
// }, | ||
extensions: [".mdx", ".md"], | ||
extensions: ['.mdx', '.md'], | ||
gatsbyRemarkPlugins: [ | ||
{ | ||
resolve: "gatsby-remark-images", | ||
resolve: 'gatsby-remark-images', | ||
options: { | ||
maxWidth: 2048, | ||
linkImagesToOriginal: false, | ||
}, | ||
}, | ||
{ resolve: "gatsby-remark-copy-linked-files" }, | ||
{ resolve: "gatsby-remark-smartypants" }, | ||
{ resolve: 'gatsby-remark-copy-linked-files' }, | ||
{ resolve: 'gatsby-remark-smartypants' }, | ||
], | ||
remarkPlugins: [{ resolve: "remark-slug" }, { resolve: "@mapbox/rehype-prism" }], | ||
remarkPlugins: [{ resolve: 'remark-slug' }, { resolve: '@mapbox/rehype-prism' }], | ||
}, | ||
}, | ||
{ | ||
resolve: "gatsby-plugin-manifest", | ||
resolve: 'gatsby-plugin-manifest', | ||
options: { | ||
name: "Hello Tham", | ||
short_name: "HelloTham", | ||
start_url: "/", | ||
background_color: "#ffffff", | ||
theme_color: "#660099", | ||
display: "minimal-ui", | ||
icon: "src/images/logo.png", // This path is relative to the root of the site. | ||
name: 'Hello Tham', | ||
short_name: 'HelloTham', | ||
start_url: '/', | ||
background_color: '#ffffff', | ||
theme_color: '#660099', | ||
display: 'minimal-ui', | ||
icon: 'src/images/logo.png', // This path is relative to the root of the site. | ||
}, | ||
}, | ||
"gatsby-plugin-robots-txt", | ||
"gatsby-plugin-sitemap", | ||
'gatsby-plugin-robots-txt', | ||
'gatsby-plugin-sitemap', | ||
{ | ||
resolve: "gatsby-plugin-feed-mdx", | ||
resolve: 'gatsby-plugin-feed-mdx', | ||
options: { | ||
query: ` | ||
{ | ||
|
@@ -116,9 +119,9 @@ module.exports = { | |
return Object.assign({}, edge.node.frontmatter, { | ||
description: edge.node.frontmatter.description, | ||
date: edge.node.frontmatter.date, | ||
url: site.siteMetadata.siteUrl + "/post" + edge.node.slug, | ||
guid: site.siteMetadata.siteUrl + "/post" + edge.node.slug, | ||
custom_elements: [{ "content:encoded": edge.node.html }], | ||
url: site.siteMetadata.siteUrl + '/post' + edge.node.slug, | ||
guid: site.siteMetadata.siteUrl + '/post' + edge.node.slug, | ||
custom_elements: [{ 'content:encoded': edge.node.html }], | ||
}) | ||
}) | ||
}, | ||
|
@@ -142,8 +145,8 @@ module.exports = { | |
} | ||
} | ||
`, | ||
output: "/rss.xml", | ||
title: "Hello Tham", | ||
output: '/rss.xml', | ||
title: 'Hello Tham', | ||
// optional configuration to insert feed reference in pages: | ||
// if `string` is used, it will be used to create RegExp and then test if pathname of | ||
// current page satisfied this regular expression; | ||
|
@@ -156,6 +159,6 @@ module.exports = { | |
// this (optional) plugin enables Progressive Web App + Offline functionality | ||
// To learn more, visit: https://gatsby.dev/offline | ||
// "gatsby-plugin-offline", | ||
"gatsby-plugin-gatsby-cloud", | ||
'gatsby-plugin-gatsby-cloud', | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.