2021-12-03 01:18:00 +00:00
|
|
|
import React from 'react'
|
|
|
|
|
2021-12-02 23:49:46 +00:00
|
|
|
import type { NextPage } from 'next'
|
2021-12-03 01:18:00 +00:00
|
|
|
|
2021-12-02 23:49:46 +00:00
|
|
|
import { Hero } from '../components/hero'
|
2021-12-01 04:20:13 +00:00
|
|
|
|
|
|
|
const Home: NextPage = () => {
|
2021-12-09 07:39:20 +00:00
|
|
|
return <Hero />
|
2021-12-02 23:49:46 +00:00
|
|
|
}
|
2021-12-01 04:20:13 +00:00
|
|
|
|
2021-12-02 23:49:46 +00:00
|
|
|
export default Home
|