Skip to content

Commit

Permalink
Update ddps
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubkottnauer committed May 16, 2020
1 parent c9328b5 commit 667c8bb
Show file tree
Hide file tree
Showing 8 changed files with 1,995 additions and 1,248 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@
"version": "0.1.0",
"author": "Jakub Kottnauer <[email protected]>",
"dependencies": {
"gatsby": "^2.19.18",
"gatsby-image": "^2.2.42",
"gatsby-plugin-manifest": "^2.2.42",
"gatsby-plugin-offline": "^3.0.35",
"gatsby-plugin-react-helmet": "^3.1.22",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-source-filesystem": "^2.1.48",
"gatsby-transformer-remark": "^2.6.53",
"gatsby-transformer-sharp": "^2.3.16",
"gatsby": "^2.21.33",
"gatsby-image": "^2.4.3",
"gatsby-plugin-manifest": "^2.4.3",
"gatsby-plugin-offline": "^3.2.2",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sharp": "^2.6.3",
"gatsby-source-filesystem": "^2.3.3",
"gatsby-transformer-remark": "^2.8.8",
"gatsby-transformer-sharp": "^2.5.2",
"prop-types": "^15.7.2",
"ramda": "^0.27.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^5.2.1"
"react-helmet": "^6.0.0"
},
"devDependencies": {
"gatsby-plugin-robots-txt": "^1.5.0",
"gh-pages": "^2.2.0",
"prettier": "^1.19.1"
"prettier": "^2.0.5"
},
"license": "MIT",
"scripts": {
Expand Down
15 changes: 7 additions & 8 deletions recipes/gnocchi.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
---

title: "Gnocchi"
title: 'Gnocchi'
tags: italy italian
source: https://www.foodnetwork.com/recipes/michael-chiarello/potato-gnocchi-recipe-2011835
serves: "2-3"
serves: '2-3'
related: shrimp-gnocchi
image: gnocchi.jpg
---

* 500 g potatoes
* 1/2 tsp salt
* 1/4 tsp baking powder
* 1 small egg
* 3/4 cup all purpose flour
- **500 g** potatoes
- **1/2 tsp** salt
- **1/4 tsp** baking powder
- 1 small egg
- **3/4 cup** all purpose flour

Pierce the potatoes and roast them for 1 hour at 200 C. While still hot, peel them, mash them a mix them with the other ingredients.

Expand Down
4 changes: 2 additions & 2 deletions recipes/shrimp-gnocchi.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ related: gnocchi
image: shrimp-gnocchi.jpg
---

- **500 g** package DeLallo Potato Gnocchi
- **500 g** gnocchi
- **2 tbsp** unsalted butter
- **500 g** medium shrimp, peeled and deveined
- **2 tbsp** chopped fresh parsley leaves
Expand All @@ -18,7 +18,7 @@ image: shrimp-gnocchi.jpg
- **1 cup** chicken broth, or more, as needed
- **1 teaspoon** dried thyme
- **1/2 teaspoon** dried basil
- **1/4 cup** water + 1/4 milk
- **1/4 cup** water + **1/4 cup** milk
- **1/2 cup** freshly grated Parmesan

In a large pot of boiling salted water, cook gnocchi according to package instructions; drain well.
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import PropTypes from 'prop-types'
import { StaticQuery, graphql } from 'gatsby'
import Helmet from 'react-helmet'
import { Helmet } from 'react-helmet'

import Header from './header'
import './layout.css'
Expand Down
2 changes: 1 addition & 1 deletion src/pages/404.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'

import Layout from '../components/layout'
import Helmet from 'react-helmet'
import { Helmet } from 'react-helmet'

const NotFoundPage = () => (
<Layout>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import Layout from '../components/layout'
import Image from '../components/image'

import Img from 'gatsby-image'
import Helmet from 'react-helmet'
import { Helmet } from 'react-helmet'
import { filter as filterBy, groupBy, toPairs, pipe, sort } from 'ramda'

const IndexPage = ({ data }) => {
const [filter, setFilter] = useState('')
const filterInput = useRef(null);
const filterInput = useRef(null)

const resetFilter= () => {
const resetFilter = () => {
setFilter('')
filterInput.current.focus()
}
Expand Down
2 changes: 1 addition & 1 deletion src/templates/recipeTemplate.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { graphql, Link } from 'gatsby'
import Layout from '../components/layout'
import Helmet from 'react-helmet'
import { Helmet } from 'react-helmet'

export default function Template({ data }) {
const { markdownRemark } = data
Expand Down
Loading

0 comments on commit 667c8bb

Please sign in to comment.