import React from 'react'
import Hero from '~/components/hero'
const Index = () => (
<>
<Hero/>
<p>Homepage</p>
</>
)
export default Index