mango-v4-ui/pages/index.tsx

18 lines
311 B
TypeScript
Raw Normal View History

2022-04-12 13:48:22 -07:00
import type { NextPage } from 'next'
import Home from '../components/Home'
2022-06-21 03:58:57 -07:00
import Container from '../components/shared/Container'
2022-05-03 21:20:14 -07:00
import TopBar from '../components/TopBar'
2022-04-12 13:48:22 -07:00
const Index: NextPage = () => {
2022-05-03 21:20:14 -07:00
return (
2022-06-21 03:58:57 -07:00
<Container>
2022-06-10 06:05:45 -07:00
<TopBar />
2022-04-12 13:48:22 -07:00
2022-06-10 06:05:45 -07:00
<Home />
2022-06-21 03:58:57 -07:00
</Container>
2022-04-12 13:48:22 -07:00
)
}
export default Index