Skip to content
This repository has been archived by the owner on Jan 22, 2022. It is now read-only.

Commit

Permalink
feat(list): remove conferences detail page and load conferences from … (
Browse files Browse the repository at this point in the history
#1)

* feat(list): remove conferences detail page and load conferences from json endpoint

* Remove console log
  • Loading branch information
luisFilipePT authored Mar 17, 2020
1 parent 586d393 commit 6f763c1
Show file tree
Hide file tree
Showing 34 changed files with 1,639 additions and 2,608 deletions.
47 changes: 30 additions & 17 deletions gatsby-config.js
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,37 +1,47 @@
module.exports = {
siteMetadata: {
title: 'Homeferences',
description: 'Homeferences are Conferences which happen virtually, so you can attend from your home.',
url: 'https://homeferences.netlify.com/',
author: '@homeferences',
image: 'https://gatsby-starter-amsterdam.netlify.com/og-image.jpg',
intro: 'Conferences, but in your home.',
title: "Homeferences",
description:
"Homeferences are Conferences which happen virtually, so you can attend from your home.",
url: "https://homeferences.netlify.com/",
author: "@homeferences",
image: `${__dirname}/src/images/homeferences.jpeg`,
intro: "Conferences, but in your home.",
menuLinks: [
{
name: 'Homeferences',
slug: '/',
name: "Homeferences",
slug: "/",
},
{
name: 'About',
slug: '/about/',
name: "About",
slug: "/about/",
},
],
footerLinks: [
{
name: 'GitHub',
url: 'https://github.com/homeferences/website',
name: "GitHub",
url: "https://github.com/homeferences/website",
},
{
name: 'Twitter',
url: 'https://twitter.com/homeferences',
name: "Twitter",
url: "https://twitter.com/homeferences",
},
],
},
plugins: [
`gatsby-plugin-theme-ui`,
`gatsby-plugin-theme-ui`,
`gatsby-plugin-emotion`,
`gatsby-plugin-react-helmet`,
{
resolve: 'gatsby-theme-amsterdam',
options: {},
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
Expand All @@ -41,8 +51,11 @@ module.exports = {
theme_color: `#f5f0eb`,
start_url: `/`,
display: `standalone`,
icon: require.resolve('./src/images/favicon.png'),
icon: `src/images/homeferences-icon.jpg`, // 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`,
],
}
Loading

0 comments on commit 6f763c1

Please sign in to comment.