- Gatsby v2
styled-system
: styled component enhancements and theming- React Reveal
- Dynamic content from Contentful
- Offline support
- PWA ready
- SEO`
- Responsive design
- Icons from font-awesome
- Developer tools:
- eslint
- prettier
At this point you have the repository download with all the dependencies installed, but if you try to start by running yarn develop
you are going to received this message in the console:
TypeError: Expected parameter accessToken
This is because you didn't specify from which Contentful
space the portfolio will take the information. So the next step is create an empty space in Contentful!
After the space is created, run the following command:
yarn setup
This CLI will request 3 values:
Space ID
Content Delivery API - access token
Personal Access Token
These 3 values are inside the Settings section --> API keys.
After you provide them the CLI will automatically starts copying all the Content models
and Contents
from mate-demo-contentful
to your space ✨
If everything went smooth you should see something like this in your terminal:
Writing config file...
Config file /Users/my-user/Git/test/mate-portofolio/.env written
┌──────────────────────────────────────────────────┐
│ The following entities are going to be imported: │
├─────────────────────────────────┬────────────────┤
│ Content Types │ 3 │
├─────────────────────────────────┼────────────────┤
│ Editor Interfaces │ 3 │
├─────────────────────────────────┼────────────────┤
│ Entries │ 8 │
├─────────────────────────────────┼────────────────┤
│ Assets │ 6 │
├─────────────────────────────────┼────────────────┤
│ Locales │ 1 │
├─────────────────────────────────┼────────────────┤
│ Webhooks │ 0 │
└─────────────────────────────────┴────────────────┘
✔ Validating content-file
✔ Initialize client (1s)
✔ Checking if destination space already has any content and retrieving it (2s)
✔ Apply transformations to source data (1s)
✔ Push content to destination space
✔ Connecting to space (1s)
✔ Importing Locales (1s)
✔ Importing Content Types (4s)
✔ Publishing Content Types (3s)
✔ Importing Editor Interfaces (3s)
✔ Importing Assets (7s)
✔ Publishing Assets (3s)
✔ Archiving Assets (1s)
✔ Importing Content Entries (1s)
✔ Publishing Content Entries (5s)
✔ Archiving Entries (1s)
✔ Creating Web Hooks (0s)
Finished importing all data
After this step we can finally run the project and see the result in http://localhost:8000/ 😃
yarn start
As the starter is a SPA it only has two routes:
/
: main page with the sections ofHome
,About me
,Projects
andWriting
./404
: error page for unexpected route.
Section | Screenshot |
---|---|
Home | |
About me | |
Projects | |
Writing | |
/404 |
As we are dealing with environment variables, the .env
file is excluded from .gitignore
file. Therefore, in order to deploy the website you have to send SPACE_ID
and ACCESS_TOKEN
with the build
command.
SPACE_ID=xxxxx ACCESS_TOKEN=yyyyy yarn build
The result will be stored inside the public
folder, so you can upload to your webhost. I highly suggest using this starter with Netlify when you can define which command will build the project and also send the environment variables inside the website configuration.
All the text of this starter live inside Contentful, more spefically inside the Content of About
. In order to change it, just go to Content
section and change the entity of About with the information you want.
Regarding the projects and social links the process is the same! Contentful is really easy to learn so don't be afraid of breaking everything, remember that you can restore to the start point by running yarn setup
😄
This starter has the analytics plugin inside the gatsby-config
, so the only need to do in order to enable it is to provide the Tracking Id
for your site (starts with UA-
). Just set a new variable inside your .env
file called ANALYTICS_ID
and analytics wil be turn on automatically 😄
In case you cloned this repository before and you want all the latest changes of it, you can execute the following command to update the code in your repository with the one in this repository:
# Add repository remote entry
$ git remote add mate https://github.com/EmaSuriano/gatsby-starter-mate
# Get changes from master branch of gatsby-starter-mate
$ git pull mate master --allow-unrelated-histories
# Reset changes in unnecesary folder/files
$ git reset media/ bin/ README.md manifest-config.js
# Remove files affected by the reset
$ git checkout .
# In this step you migth need to fix a lot of conflicts, you can do fix manually or use just accept all the changes from mate
$ git checkout --theirs .
# WATCH OUT that some configuration can be overwritten in this last step, like package.json, colors, etc. I highly recommend to do an overall look up at the end of fixing the conflicts.
# Install in case there is any new dependency added to the starter
$ yarn
# Build the project to see if everything is working as expected
$ yarn build
Mate starter is a SPA (Single Page Application), so basically you have only two pages:
- Main.js (portfolio itself)
- 404.js (nice 404 error page that match the style)
The structure for the main page is the following:
<Layout>
<Landing />
<About />
<Projects />
<Writing />
</Layout>
Layout
is the core of the application, it manages the theme for the application, the navigation between sections, also it defines the header
.
All the components inside Layout
are Section
components. A section can have a link inside the Header
or not, in order to add you need to wrapped the exported Section
with withNavigation
HOC and it will be automatically registered (Context magic ✨).
MIT.
Based on Ema Suriano's excellent Gatsby starter
Forked and heavily inspired by my good friend Zyclotrop-j's website at Zyclotrop-j/websites.mingram.net