mirror of
https://github.com/kingomarnajjar/gatsby-starter-netlify-cms.git
synced 2026-07-25 22:27:24 +10:00
changed componentname
This commit is contained in:
parent
4333bfaab3
commit
e47e4d04ee
6 changed files with 367 additions and 468 deletions
26
package.json
26
package.json
|
|
@ -4,25 +4,25 @@
|
|||
"version": "1.1.3",
|
||||
"author": "Austin Green",
|
||||
"dependencies": {
|
||||
"bulma": "^0.6.0",
|
||||
"gatsby": "^1.9.213",
|
||||
"gatsby-link": "^1.6.37",
|
||||
"bulma": "^0.7.1",
|
||||
"gatsby": "^1.9.277",
|
||||
"gatsby-link": "^1.6.46",
|
||||
"gatsby-plugin-netlify": "^1.0.19",
|
||||
"gatsby-plugin-netlify-cms": "^1.0.9",
|
||||
"gatsby-plugin-netlify-cms": "^2.0.1",
|
||||
"gatsby-plugin-react-helmet": "^2.0.5",
|
||||
"gatsby-plugin-sass": "^1.0.17",
|
||||
"gatsby-plugin-sharp": "^1.6.34",
|
||||
"gatsby-remark-images": "^1.5.50",
|
||||
"gatsby-source-filesystem": "^1.5.23",
|
||||
"gatsby-transformer-remark": "^1.7.33",
|
||||
"gatsby-transformer-sharp": "^1.6.21",
|
||||
"gatsby-plugin-sharp": "^1.6.48",
|
||||
"gatsby-remark-images": "^1.5.67",
|
||||
"gatsby-source-filesystem": "^1.5.39",
|
||||
"gatsby-transformer-remark": "^1.7.44",
|
||||
"gatsby-transformer-sharp": "^1.6.27",
|
||||
"lodash": "^4.17.5",
|
||||
"lodash-webpack-plugin": "^0.11.4",
|
||||
"netlify-cms": "^1.7.0",
|
||||
"prop-types": "^15.6.0",
|
||||
"netlify-cms": "^1.9.3",
|
||||
"prop-types": "^15.6.2",
|
||||
"react": "^16.2.0",
|
||||
"react-helmet": "^5.2.0",
|
||||
"uuid": "^3.2.1"
|
||||
"uuid": "^3.3.2"
|
||||
},
|
||||
"keywords": [
|
||||
"gatsby"
|
||||
|
|
@ -38,6 +38,6 @@
|
|||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "^1.7.4"
|
||||
"prettier": "^1.13.7"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import React from 'react'
|
|||
import PropTypes from 'prop-types'
|
||||
import Helmet from 'react-helmet'
|
||||
|
||||
import Navbar from '../blogComponents/Navbar'
|
||||
import Navbar from '../components/Navbar'
|
||||
import './all.sass'
|
||||
|
||||
const TemplateWrapper = ({ children }) => (
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
import Content, { HTMLContent } from '../blogComponents/Content'
|
||||
import Content, { HTMLContent } from '../components/Content'
|
||||
|
||||
export const AboutPageTemplate = ({ title, content, contentComponent }) => {
|
||||
const PageContent = contentComponent || Content
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import PropTypes from 'prop-types'
|
|||
import { kebabCase } from 'lodash'
|
||||
import Helmet from 'react-helmet'
|
||||
import Link from 'gatsby-link'
|
||||
import Content, { HTMLContent } from '../blogComponents/Content'
|
||||
import Content, { HTMLContent } from '../components/Content'
|
||||
|
||||
export const BlogPostTemplate = ({
|
||||
content,
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
import Features from '../blogComponents/Features'
|
||||
import Testimonials from '../blogComponents/Testimonials'
|
||||
import Pricing from '../blogComponents/Pricing'
|
||||
import Features from '../components/Features'
|
||||
import Testimonials from '../components/Testimonials'
|
||||
import Pricing from '../components/Pricing'
|
||||
|
||||
export const ProductPageTemplate = ({
|
||||
image,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue