mango-v4-ui/pages/index.tsx

17 lines
298 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-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-10 06:05:45 -07:00
<div className="min-h-screen bg-mango-800 text-mango-100 ">
<TopBar />
2022-04-12 13:48:22 -07:00
2022-06-10 06:05:45 -07:00
<Home />
2022-04-12 13:48:22 -07:00
</div>
)
}
export default Index