Skip to content

Instantly share code, notes, and snippets.

View tobob's full-sized avatar
😼
wanna something?

Wojciech Bożek tobob

😼
wanna something?
View GitHub Profile
import React from "react";
import { graphql } from "gatsby";
import Gist from "super-react-gist";
const CodeComponent = ({ url }) => <Gist url={url} />;
export default CodeComponent;
export const modelName = "ContentfulCodeComponent";
import React from "react"
import { graphql } from "gatsby"
import RichText from '@madebyconnor/rich-text-to-jsx';
const WallOfTextComponent = ({text}) => <RichText richText={text.json} />
export default WallOfTextComponent
export const modelName = 'ContentfulWallOfTextComponent';
import React from "react";
import { graphql } from "gatsby";
const QuoteComponent = ({ quote, author, theme }) => (
<div
style={{
backgroundColor: theme,
padding: "30px",
width: "80%",
margin: "0 0 auto",
import React from 'react'
import { graphql } from 'gatsby'
import { Helmet } from 'react-helmet'
import React from "react";
import { graphql } from "gatsby";
import { Helmet } from "react-helmet";
import get from "lodash/get";
import Img from "gatsby-image";
import Layout from "../components/layout";
import QuoteComponent, {