Last active
November 4, 2020 05:55
-
-
Save gaurangrshah/19eb0ac1cb2bc42e8282bbf7e5b09088 to your computer and use it in GitHub Desktop.
#gatsby #config #default #starter
This file contains hidden or 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
module.exports = { | |
siteMetadata: { | |
title: `Gatsby Default Starter`, | |
tagline: `This is what we do!`, | |
description: `Lorem ipsum, dolor sit amet consectetur adipisicing elit. Ad amet ex et sed in. Nobis debitis earum ullam expedita harum?`, | |
siteUrl: `https://www.livewebsiteURL.com`, | |
author: `@thinkmechanic`, | |
language: `en`, | |
pages: [ | |
{ label: "home", path: "/" }, | |
{ label: "about us", path: "/about/" }, | |
{ label: "services", path: "/services/" }, | |
{ label: "policies", path: "/policies/" }, | |
{ label: "contact", path: "/contact/" }, | |
], | |
socialLinks: [ | |
{ label: "facebook", path: "https://www.facebook.com" }, | |
{ label: "twitter", path: "https://www.twitter.com" }, | |
{ label: "instagram", path: "https://www.instagram.com" }, | |
{ label: "linkedin", path: "https://www.linkedin.com" }, | |
], | |
brandColors: { | |
primary: "#1F7A8C", | |
secondary: "#67B26F", | |
}, | |
}, | |
plugins: [ | |
{ | |
resolve: `gatsby-plugin-chakra-ui`, | |
options: { | |
isResettingCSS: true, | |
isUsingColorMode: false, | |
}, | |
}, | |
{ | |
resolve: `gatsby-plugin-web-font-loader`, | |
options: { | |
google: { | |
families: ["Encode+Sans:400,500,600,700"], | |
}, | |
}, | |
}, | |
`gatsby-plugin-react-helmet`, | |
{ | |
resolve: `gatsby-source-filesystem`, | |
options: { | |
name: `images`, | |
path: `${__dirname}/src/images`, | |
}, | |
}, | |
`gatsby-transformer-sharp`, | |
`gatsby-plugin-sharp`, | |
{ | |
resolve: `gatsby-plugin-manifest`, | |
options: { | |
name: `gatsby-starter-default`, | |
short_name: `starter`, | |
start_url: `/`, | |
background_color: `#663399`, | |
theme_color: `#663399`, | |
display: `minimal-ui`, | |
icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site. | |
}, | |
}, | |
// this (optional) plugin enables Progressive Web App + Offline functionality | |
// To learn more, visit: https://gatsby.dev/offline | |
// `gatsby-plugin-offline`, | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment