2021-12-01 19:58:00 +00:00
|
|
|
import React from 'react'
|
|
|
|
import { Hero } from '../components/hero'
|
|
|
|
|
2021-12-02 00:22:45 +00:00
|
|
|
const LandingPage = () => {
|
2021-12-01 19:58:00 +00:00
|
|
|
return (
|
|
|
|
<Hero />
|
|
|
|
)
|
2021-12-02 00:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default LandingPage
|