From d4f172ed203e6f3f6d1143f49c304cea8d45170e Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Thu, 22 Apr 2021 01:39:47 -0400 Subject: Changes --- gatsby-config.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'gatsby-config.js') diff --git a/gatsby-config.js b/gatsby-config.js index 8d57baf..ad3fc6d 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -1,15 +1,24 @@ module.exports = { siteMetadata: { title: "submelon.tech", + description: "The official website of Kevin Hoerr, the developer of websites.", + author: "Kevin J Hoerr", }, plugins: [ + "gatsby-plugin-typescript", "gatsby-plugin-styled-components", "gatsby-plugin-image", "gatsby-plugin-react-helmet", { - resolve: "gatsby-plugin-manifest", + resolve: `gatsby-plugin-manifest`, options: { - icon: "src/images/icon.png", + name: `Kevin J Hoerr`, + short_name: `kjhoerr`, + start_url: `/`, + background_color: `#e1e1e1`, + theme_color: `#e1e1e1`, + display: `browser`, + icon: `src/images/favicon-70x70.png`, }, }, "gatsby-plugin-mdx", -- cgit