import { h } from 'preact' import { bool } from 'prop-types' import { H1, Label } from '../../components/Text' import { Wrapper, TaglineContainer, Content, Hero, FadeBottom, } from './styles' import { colours } from '../../assets/theme' import { NdcLogo, RFLogo } from '../../components/Logo' const InfoLayout = ({ title, subtitle, image, children, theme }) => { console.log({ theme }) return ( {children}

{title}

{subtitle}

) } InfoLayout.propTypes = { loading: bool, } export default InfoLayout