https://github.com/devfolioco/devfolio-gatsby-starter
Kickstart landing page development with GatsbyJS
https://github.com/devfolioco/devfolio-gatsby-starter
gatsby
Last synced: 1 day ago
JSON representation
Kickstart landing page development with GatsbyJS
- Host: GitHub
- URL: https://github.com/devfolioco/devfolio-gatsby-starter
- Owner: devfolioco
- License: mit
- Created: 2019-07-03T14:42:27.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-01-26T16:14:10.000Z (about 3 years ago)
- Last Synced: 2025-10-27T21:41:25.506Z (3 months ago)
- Topics: gatsby
- Language: JavaScript
- Homepage:
- Size: 4.6 MB
- Stars: 26
- Watchers: 3
- Forks: 97
- Open Issues: 56
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Devfolio gatsby-starter-landing
Kickstart landing page development with GatsbyJS
[Live Demo](http://devfolio-gatsby-starter.surge.sh)
## Installation
Install the dependencies:
```
yarn install
```
Run the development server:
```
yarn dev
```
Production build to `/public`:
```
yarn build
```
Cleanup cache (often fixes miscellaneous errors when run before `yarn dev`):
```
yarn clean
```
## Content
Each of the sections in the site are placed in `src/components/sections` directory. Data is usually separated out into objects/arrays to be rendered by the component.
## SEO
The component `src/components/common/SEO.js` handles all metadata and SEO content. Modify the `SEO_DATA` variable to add the data automatically. For application manifest data and favicon, modify the `gatsby-plugin-manifest` configuration in `gatsby-config.js`.
## License
[](https://github.com/devfolioco/devfolio-gatsby-starter/blob/master/LICENSE)