import { h } from 'preact' import { bool } from 'prop-types' import { Link } from 'react-router-dom' import { H1 } from '../../components/Text' import { Wrapper, Content, Hero, FadeTop, PositionedLink, } from './styles' import Header from '../../components/Header' import { ImageLogo } from '../../components/Logo' const InfoLayout = ({ title, subtitle, image, children, theme }) => ( {children}

{title}

{subtitle}

) export default InfoLayout