-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4272d37
Showing
64 changed files
with
18,116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Project dependencies | ||
.cache | ||
node_modules | ||
yarn-error.log | ||
package-lock.json | ||
yarn.lock | ||
|
||
# Build directory | ||
/public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"semi": false, | ||
"singleQuote": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Creative Commons Attribution 3.0 | ||
|
||
https://html5up.net/license | ||
|
||
All of the site templates I create for HTML5 UP are licensed under the Creative Commons Attribution 3.0 License, which means you can: | ||
|
||
Use them for personal stuff | ||
Use them for commercial stuff | ||
Change them however you like | ||
... all for free, yo. In exchange, just give HTML5 UP credit for the design and tell your friends about it :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# gatsby-starter-landed | ||
|
||
**This is a starter for Gatsby.js V2.** | ||
|
||
Gatsby.js V2 starter based on the Landed site template, designed by HTML5 UP. | ||
|
||
## Preview | ||
|
||
https://gatsby-starter-landed.netlify.com | ||
|
||
## Installation | ||
|
||
Install this starter : | ||
<br/> | ||
`gatsby new gatsby-starter-landed https://github.com/vasrush/gatsby-starter-landed` | ||
|
||
Run `gatsby develop` to start the dev site or `gatsby build` to build it for production. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* Implement Gatsby's Browser APIs in this file. | ||
* | ||
* See: https://www.gatsbyjs.org/docs/browser-apis/ | ||
*/ | ||
|
||
// You can delete this file if you're not using it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
module.exports = { | ||
//pathPrefix: `/mygatsby`, | ||
siteMetadata: { | ||
title: 'Landed', | ||
author: 'vasrush', | ||
description: 'A Gatsby.js V2 Starter based on Landed by HTML5 UP', | ||
menuLinks: [ | ||
{ | ||
name: 'Home', | ||
link: '/', | ||
}, | ||
{ | ||
name: 'Layouts', | ||
link: '#', | ||
items: [ | ||
{ | ||
name: 'Left Sidebar', | ||
link: '/left-sidebar', | ||
}, | ||
{ | ||
name: 'Right Sidebar', | ||
link: '/right-sidebar', | ||
}, | ||
{ | ||
name: 'No Sidebar', | ||
link: '/no-sidebar', | ||
}, | ||
{ | ||
name: 'SubMenu', | ||
link: '#', | ||
items: [ | ||
{ | ||
name: 'Option 1', | ||
link: '#', | ||
}, | ||
{ | ||
name: 'Option 2', | ||
link: '#', | ||
}, | ||
{ | ||
name: 'Option 3', | ||
link: '#', | ||
}, | ||
{ | ||
name: 'Option 4', | ||
link: '#', | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
{ | ||
name: 'Elements', | ||
link: '/elements', | ||
}, | ||
{ | ||
name: 'Sign Up', | ||
link: '#', | ||
cl: 'button primary', | ||
}, | ||
], | ||
}, | ||
plugins: [ | ||
'gatsby-plugin-react-helmet', | ||
{ | ||
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/website-icon.png', // This path is relative to the root of the site. | ||
}, | ||
}, | ||
{ | ||
resolve: 'gatsby-source-filesystem', | ||
options: { | ||
path: `${__dirname}/src/images/`, | ||
name: 'images', | ||
}, | ||
}, | ||
'gatsby-transformer-sharp', | ||
'gatsby-plugin-sharp', | ||
'gatsby-plugin-sass', | ||
{ | ||
resolve: 'gatsby-plugin-html-attributes', | ||
options: { | ||
lang: 'en', | ||
}, | ||
}, | ||
'gatsby-plugin-offline', | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.org/docs/node-apis/ | ||
*/ | ||
|
||
// You can delete this file if you're not using it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.org/docs/ssr-apis/ | ||
*/ | ||
|
||
// You can delete this file if you're not using it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"name": "gatsby-starter-landed-v2", | ||
"description": "Gatsby Starter - Landed V2", | ||
"version": "1.0.0", | ||
"author": "vasrush", | ||
"dependencies": { | ||
"gatsby": "^2.18.1", | ||
"gatsby-image": "^2.2.33", | ||
"gatsby-plugin-html-attributes": "^1.0.5", | ||
"gatsby-plugin-manifest": "^2.2.29", | ||
"gatsby-plugin-offline": "^3.0.22", | ||
"gatsby-plugin-react-helmet": "^3.1.15", | ||
"gatsby-plugin-sass": "^2.1.23", | ||
"gatsby-plugin-scroll-reveal": "0.0.4", | ||
"gatsby-plugin-sharp": "^2.3.2", | ||
"gatsby-source-filesystem": "^2.1.38", | ||
"gatsby-transformer-sharp": "^2.3.5", | ||
"node-sass": "^4.13.0", | ||
"react": "^16.12.0", | ||
"react-dom": "^16.12.0", | ||
"react-helmet": "^5.2.1", | ||
"react-reveal": "^1.2.2", | ||
"react-scroll": "^1.7.14" | ||
}, | ||
"resolutions": { | ||
"react-helmet/react-side-effect": "2.1.0" | ||
}, | ||
"keywords": [ | ||
"gatsby" | ||
], | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "gatsby build", | ||
"develop": "gatsby develop", | ||
"format": "prettier --write '**/*.js'", | ||
"clean": "gatsby clean", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"devDependencies": { | ||
"prettier": "^1.19.1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/gatsbyjs/gatsby-starter-default" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.