Table of content
Page creation guide
February 20 , 2022
How to create a page?
npm run page
Add the following to user-meta-config
const pageMetadata = {
//menu - Please enter a menu link to add to the navbar.
//If you do not want to add a link to the navbar, you can leave it blank.
menu: [
{ path: '/', linkname: 'Home' },
{ path: '/projects', linkname: 'Projects' },
{ path: '/develop', linkname: 'Develop' },
{ path: '/life', linkname: 'Life' }, // add!!
],
//directorys - Enter the directory to be mapped with the page.
//That directory is automatically linked to the gatsby filesystem.
directorys: ['develop', 'projects', 'life'], // add life!!
}