2020-09-16 18:40:52 +00:00
module . exports = {
siteMetadata : {
2020-09-17 20:02:28 +00:00
title : ` Matúš Námešný ` ,
2020-09-16 18:40:52 +00:00
description : ` Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need. ` ,
2020-09-17 20:02:28 +00:00
author : ` Matúš Námešný ` ,
email : "matus@namesny.com" ,
social : {
names : [ "github" , "codepen" , "linkedin" ] ,
links : [
"https://github.com/LordMathis" ,
"https://codepen.io/LordMathis/" ,
"https://www.linkedin.com/in/mat%C3%BA%C5%A1-n%C3%A1me%C5%A1n%C3%BD-3903b6128/" ,
]
} ,
2020-09-16 18:40:52 +00:00
} ,
plugins : [
` 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.
} ,
} ,
` gatsby-plugin-sass ` ,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
] ,
}