import * as React from "react" import { Link } from "gatsby" const Layout = ({ location, title, children }) => { const rootPath = `${__PATH_PREFIX__}/` const isRootPath = location.pathname === rootPath let header if (isRootPath) { header = (

{title}

) } else { header = ( {title} ) } return (
{header}
{children}
) } export default Layout