Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vasrush committed Nov 22, 2019
0 parents commit 4272d37
Show file tree
Hide file tree
Showing 64 changed files with 18,116 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
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
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"trailingComma": "es5",
"semi": false,
"singleQuote": true
}
10 changes: 10 additions & 0 deletions LICENSE
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 :)
17 changes: 17 additions & 0 deletions README.md
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.
7 changes: 7 additions & 0 deletions gatsby-browser.js
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
95 changes: 95 additions & 0 deletions gatsby-config.js
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',
],
}
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.org/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.org/docs/ssr-apis/
*/

// You can delete this file if you're not using it
46 changes: 46 additions & 0 deletions package.json
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"
}
}
5 changes: 5 additions & 0 deletions src/assets/css/fontawesome-all.min.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions src/assets/css/images/arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/css/images/ie/banner-overlay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/css/images/overlay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 4272d37

Please sign in to comment.