Skip to content

Commit fc77674

Browse files
author
Carms Ng
authored
Merge pull request #32 from coderbunker/revamp-translation
Simplify the bilingual team member info update process
2 parents fec92ae + 7df9512 commit fc77674

22 files changed

+302
-393
lines changed

gatsby-config.js

+17-13
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@ module.exports = {
22
pathPrefix: "/coderbunker.ca",
33
siteMetadata: {
44
title: `Coderbunker Canada`,
5-
author: `Carms Ng`,
6-
description: `Coderbunker Canada Website`,
5+
author: `@Carms-dev`,
6+
description: `Coderbunker est une communauté internationale de passionnés de développement logiciel. Nous fonctionnons sur une base de budget d'ingénierie mensuels prépayés sur lesquels nous recrutons des équipes formées de talents flexibles qui participent activement dans la construction d'une communauté qui les rends heureux.`,
77
},
88
plugins: [
9+
`gatsby-transformer-json`,
10+
{
11+
resolve: `gatsby-source-filesystem`,
12+
options: {
13+
path: `${__dirname}/src/assets/content`,
14+
},
15+
},
916
`gatsby-plugin-postcss`,
1017
`gatsby-plugin-styled-components`,
1118
`gatsby-plugin-react-helmet`,
@@ -17,6 +24,13 @@ module.exports = {
1724
path: `${__dirname}/src/assets/images`,
1825
},
1926
},
27+
{
28+
resolve: `gatsby-source-filesystem`,
29+
options: {
30+
name: `assets`,
31+
path: `${__dirname}/src/assets`,
32+
},
33+
},
2034
{
2135
resolve: `gatsby-source-filesystem`,
2236
options: {
@@ -29,19 +43,9 @@ module.exports = {
2943
{
3044
resolve: `gatsby-plugin-manifest`,
3145
options: {
32-
name: `gatsby-starter-default`,
33-
short_name: `starter`,
34-
start_url: `/`,
35-
background_color: `#663399`,
36-
theme_color: `#663399`,
37-
display: `minimal-ui`,
38-
icon: `src/assets/images/coderbunker-icon.png`, // This path is relative to the root of the site.
46+
icon: `${__dirname}/src/assets/images/coderbunker-icon.png`, // This path is relative to the root of the site.
3947
},
4048
},
41-
`gatsby-plugin-gatsby-cloud`,
42-
// this (optional) plugin enables Progressive Web App + Offline functionality
43-
// To learn more, visit: https://gatsby.dev/offline
44-
// `gatsby-plugin-offline`,
4549
{
4650
resolve: `gatsby-plugin-react-i18next`,
4751
options: {

gatsby-node.js

-7
This file was deleted.

gatsby-ssr.js

-7
This file was deleted.

locales/fr/team.fr.json

-30
This file was deleted.

0 commit comments

Comments
 (0)