-
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
1 parent
eda80f7
commit 0ada472
Showing
17 changed files
with
10,755 additions
and
11,414 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,47 +5,48 @@ | |
"version": "0.1.0", | ||
"author": "Kyle Mathews <[email protected]>", | ||
"dependencies": { | ||
"gatsby": "^2.29.2", | ||
"gatsby": "^3.1.2", | ||
"gatsby-awesome-pagination": "^0.3.6", | ||
"gatsby-image": "^2.8.0", | ||
"gatsby-image": "^3.1.0", | ||
"gatsby-plugin-favicon": "^3.1.6", | ||
"gatsby-plugin-image": "^1.1.2", | ||
"gatsby-plugin-local-search": "^2.0.0", | ||
"gatsby-plugin-manifest": "^2.9.1", | ||
"gatsby-plugin-offline": "^3.7.1", | ||
"gatsby-plugin-react-helmet": "^3.7.0", | ||
"gatsby-plugin-sharp": "^2.11.2", | ||
"gatsby-plugin-styled-jsx": "^3.7.0", | ||
"gatsby-source-filesystem": "^2.8.1", | ||
"gatsby-transformer-json": "^2.8.0", | ||
"gatsby-transformer-sharp": "^2.9.0", | ||
"mobile-detect": "^1.4.4", | ||
"gatsby-plugin-manifest": "^3.1.0", | ||
"gatsby-plugin-offline": "^4.1.0", | ||
"gatsby-plugin-react-helmet": "^4.1.0", | ||
"gatsby-plugin-sharp": "^3.1.2", | ||
"gatsby-plugin-styled-jsx": "^4.1.0", | ||
"gatsby-source-filesystem": "^3.1.0", | ||
"gatsby-transformer-json": "^3.1.0", | ||
"gatsby-transformer-sharp": "^3.1.0", | ||
"mobile-detect": "^1.4.5", | ||
"normalize.css": "^8.0.1", | ||
"prop-types": "^15.7.2", | ||
"query-string": "^6.13.7", | ||
"rc-collapse": "^2.1.0", | ||
"rc-input-number": "^6.1.2", | ||
"rc-pagination": "^3.1.3", | ||
"react": "^17.0.1", | ||
"react-autosuggest": "^10.0.4", | ||
"react-dom": "^17.0.1", | ||
"query-string": "^7.0.0", | ||
"rc-collapse": "^3.1.0", | ||
"rc-input-number": "^7.0.2", | ||
"rc-pagination": "^3.1.6", | ||
"react": "^17.0.2", | ||
"react-autosuggest": "^10.1.0", | ||
"react-dom": "^17.0.2", | ||
"react-helmet": "^6.1.0", | ||
"react-highlight-words": "^0.16.0", | ||
"react-hook-form": "^6.13.1", | ||
"react-icons": "^4.1.0", | ||
"react-lunr": "^1.0.0", | ||
"react-nl2br": "^1.0.1", | ||
"react-slick": "^0.27.13", | ||
"react-highlight-words": "^0.17.0", | ||
"react-hook-form": "^6.15.5", | ||
"react-icons": "^4.2.0", | ||
"react-lunr": "^1.1.0", | ||
"react-nl2br": "^1.0.2", | ||
"react-slick": "^0.28.1", | ||
"react-use-flexsearch": "^0.1.1", | ||
"simplebar": "^5.3.0", | ||
"simplebar-react": "^2.3.0", | ||
"slick-carousel": "^1.8.1", | ||
"slugify": "^1.4.6", | ||
"styled-jsx": "^3.3.2", | ||
"slugify": "^1.5.0", | ||
"styled-jsx": "^3.4.4", | ||
"typeface-source-sans-pro": "0.0.75" | ||
}, | ||
"devDependencies": { | ||
"@types/styled-jsx": "^2.2.8", | ||
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.18", | ||
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.21", | ||
"mark.js": "^8.11.1", | ||
"prettier": "^2.2.1" | ||
}, | ||
|
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 |
---|---|---|
@@ -1,34 +1,15 @@ | ||
import React from "react" | ||
import { StaticQuery, graphql } from "gatsby" | ||
import Img from "gatsby-image" | ||
|
||
/* | ||
* This component is built using `gatsby-image` to automatically serve optimized | ||
* images with lazy loading and reduced file sizes. The image is loaded using a | ||
* `StaticQuery`, which allows us to load the image from directly within this | ||
* component, rather than having to pass the image data down from forms. | ||
* | ||
* For more information, see the docs: | ||
* - `gatsby-image`: https://gatsby.dev/gatsby-image | ||
* - `StaticQuery`: https://gatsby.dev/staticquery | ||
*/ | ||
import { StaticImage } from "gatsby-plugin-image" | ||
|
||
const Image = () => ( | ||
<StaticQuery | ||
query={graphql` | ||
query { | ||
placeholderImage: file(relativePath: { eq: "gatsby-astronaut.png" }) { | ||
childImageSharp { | ||
fluid(maxWidth: 300) { | ||
...GatsbyImageSharpFluid | ||
} | ||
} | ||
} | ||
} | ||
`} | ||
render={(data) => ( | ||
<Img fluid={data.placeholderImage.childImageSharp.fluid} /> | ||
)} | ||
<StaticImage | ||
src="../images/gatsby-astronaut.png" | ||
width={300} | ||
quality={95} | ||
formats={["auto", "webp", "avif"]} | ||
alt="A Gatsby astronaut" | ||
// style={{ marginBottom: `1.45rem` }} | ||
/> | ||
) | ||
|
||
export default Image |
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
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
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
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
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
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
Binary file not shown.
Binary file not shown.
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
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
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
Oops, something went wrong.