Skip to content

[Add] Landing Page #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 36 commits into from
Apr 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
c0f03e0
[ADD] React Icons Package
carms-ng Mar 26, 2021
1cb6cf2
[UPD] Global Styles, Typography, Site border
carms-ng Mar 28, 2021
715c1d5
[ADD] Images for the landing section
carms-ng Mar 28, 2021
b728d8d
[ADD] components: Nav, hero, logo garden, button
carms-ng Mar 28, 2021
ea99fd2
[FIX] Header logo centering
carms-ng Mar 28, 2021
5900bf9
[ADD] Service section, scroll snap
carms-ng Mar 28, 2021
2bd8dac
[WIP] Fixed overflow x | scroll snap stopped working
carms-ng Mar 29, 2021
01868ea
[ADD] assets: images
carms-ng Mar 29, 2021
8cead44
[ADD] Background Image Component
carms-ng Mar 29, 2021
d0c350f
[WIP] Team Section
carms-ng Mar 29, 2021
219a7fc
[ADD] How it works Section
carms-ng Mar 29, 2021
ea78a34
[ADD] Join Section
carms-ng Mar 29, 2021
982ef1b
[WIP] Add Contact Section & Integrate footer
carms-ng Mar 29, 2021
ed06a49
[UPD] Prep assets for team section, incl. images & text
carms-ng Apr 1, 2021
30aa0f4
[ADD] Carousel for to showcase team members
carms-ng Apr 1, 2021
d518224
[WIP] Updating hero content
carms-ng Apr 1, 2021
410f5dd
[UPD] Team content from JS to JSON
carms-ng Apr 1, 2021
27f913d
[FIX] Scroll snap & background images
carms-ng Apr 1, 2021
9135035
[ADD] Stacked avatar + minor style adjustment
carms-ng Apr 1, 2021
891d691
[UPD] Language Switcher Toggle
carms-ng Apr 1, 2021
0bf6b5c
[ADD] PDF: placeholder for the retainer agreement & FR Call to action
carms-ng Apr 1, 2021
65114e1
[FIX] Unique Key Error with .map
carms-ng Apr 1, 2021
9e6b330
[UPD] Contact Section Styled and ready to be wird
carms-ng Apr 2, 2021
132ec51
[UPD] Fixed height for the carousel cards
carms-ng Apr 2, 2021
bbdea11
[UPD] minor styling & additional translation
carms-ng Apr 2, 2021
f7e80c7
[UPD] Contact form Netlify Setup
carms-ng Apr 2, 2021
7c8891f
[UPD] Break the form out of the contact section component
carms-ng Apr 2, 2021
4d6298e
[UPD] translation and minor styling
carms-ng Apr 2, 2021
06f916b
[UPD] 404 page basic styling + Translation wiring
carms-ng Apr 2, 2021
7119760
[WIP] Fix Android keyboard vh distortion
carms-ng Apr 3, 2021
a91b6c0
[FIX] android soft keyboard vh distortion + disable scroll snap on focus
carms-ng Apr 3, 2021
5ccb9ce
[UPD] Contact info
carms-ng Apr 3, 2021
f669455
[FIX] Nu Html Checker errors
carms-ng Apr 3, 2021
169e69c
[ADD] translation (minor)
carms-ng Apr 3, 2021
84fc1b7
[MIG] gatsby 3.2.1 & deprecated gatsby-image to gatsby-plugin-image
carms-ng Apr 4, 2021
d5283ab
[FIX] ADD depends to react-is + image optimize
carms-ng Apr 4, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion gatsby-browser.js
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
import "./src/styles/tailwind.css"
/**
* Implement Gatsby's Browser APIs in this file.
*
* See: https://www.gatsbyjs.com/docs/browser-apis/
*/
import './src/styles/global.css';
34 changes: 22 additions & 12 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,16 @@ module.exports = {
description: `Coderbunker Canada Website`,
},
plugins: [
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
`gatsby-plugin-react-helmet`,
`gatsby-plugin-postcss`,
`gatsby-plugin-styled-components`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/assets/images`,
},
__key: "images",
},
{
resolve: `gatsby-source-filesystem`,
Expand All @@ -26,6 +24,24 @@ module.exports = {
name: `locale`
}
},
`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/assets/images/coderbunker-icon.png`, // This path is relative to the root of the site.
},
},
`gatsby-plugin-gatsby-cloud`,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
{
resolve: `gatsby-plugin-react-i18next`,
options: {
Expand All @@ -35,21 +51,15 @@ module.exports = {
// if you are using Helmet, you must include siteUrl, and make sure you add http:https
siteUrl: `https://example.com/`,
// you can pass any i18next options
// pass following options to allow message content as a key
i18nextOptions: {
interpolation: {
escapeValue: false // not needed for react as it escapes by default
},
keySeparator: false,
nsSeparator: false
},
pages: [
{
matchPath: '/preview',
languages: ['en']
}
]
pages: []
}
}
],
};
}
7 changes: 7 additions & 0 deletions gatsby-node.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.com/docs/node-apis/
*/

// You can delete this file if you're not using it
7 changes: 7 additions & 0 deletions gatsby-ssr.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* Implement Gatsby's SSR (Server Side Rendering) APIs in this file.
*
* See: https://www.gatsbyjs.com/docs/ssr-apis/
*/

// You can delete this file if you're not using it
20 changes: 18 additions & 2 deletions locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,21 @@
"Page two": "Page two",
"Hi from the second page": "Hi from the second page",
"Welcome to page 2": "Welcome to page 2",
"Go back to the homepage": "Go back to the homepage"
}
"Introducing Coderbunker in the ": "Introducing Coderbunker in the ",
"North": "North",
"Go back to the homepage": "Go back to the homepage",
"Trusted by these partners and clients": "Trusted by these partners and clients",
"Retain Us": "Retain Us",
"Customize": "Customize",
" Your Dev Team": " Your Dev Team",
"Consult": "Personnalisez",
" Your Tech Lead": " votre équipe de dév",
"Let's Get To ": "Let's Get To ",
"Work": "Work",
"Join": "Join",
" Our Community": " Our Community",
"Connect": "Connect",
" With Us": " With Us",
"We fuel your tech capability with our network of freelancers.": "We fuel your tech capability with our network of freelancers.",
"25 years experience in software development": "25 years experience in software development"
}
23 changes: 20 additions & 3 deletions locales/fr/translation.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
{
"Home": "Maison",
"Home": "Accueil",
"Hi people": "Salut peeps",
"Welcome to your new Gatsby site.": "Bienvenue a your new Gatsby site.",
"Now go build something great.": "Maintenent go build something great.",
"Go to page 2": "Allez a page 2",
"Page two": "Page deux",
"Hi from the second page": "Salut de page deux",
"Welcome to page 2": "Bienvenue a page deux",
"Go back to the homepage": "Retour a Maison"
}
"Go back to the homepage": "Retour a Maison",
"Introducing Coderbunker in the ": "Présentation de Coderbunker dans le ",
"North": "Nord",
"We empower freelancer community to excel in long term projects.": "Nous permettons à la communauté des pigistes d'exceller dans les projets à long terme.",
"Trusted by these partners and clients": "Reconnu par ces partenaires et clients",
"Retain Us": "Embauchez-nous",
"Customize": "Personnalisez",
" Your Dev Team": " votre équipe de dév",
"Consult": "Consultez",
" Your Tech Lead": " votre responsable tech",
"Let's Get To ": "Mettons-nous au ",
"Work": "travail",
"Join": "Rejoignez",
" Our Community": " notre communauté",
"Connect": "Connectez-vous",
" With Us": " avec nous",
"We fuel your tech capability with our network of freelancers.": "Nous alimentons votre capacité technologique avec notre réseau de pigistes.",
"25 years experience in software development": "25 ans d'expérience dans le développement de logiciels"
}
Loading