UNPKG

saepequia

Version:

A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps

29 lines (24 loc) 670 B
import React from "react" import { Link } from "gatsby" import { css } from "linaria" import Layout from "../components/layout" import Image from "../components/image" import SEO from "../components/seo" const imageWrapper = css` max-width: 300px; margin-bottom: 1.45rem; ` const IndexPage = () => ( <Layout> <SEO title="Home" /> <h1>Hi people</h1> <p>Welcome to your new Gatsby site.</p> <p>Now go build something great.</p> <div className={imageWrapper}> <Image /> </div> <Link to="/page-2/">Go to page 2</Link> <br /> <Link to="/using-typescript/">Go to "Using TypeScript"</Link> </Layout> ) export default IndexPage