add frontend files

This commit is contained in:
João Geonizeli
2021-08-04 00:08:22 -03:00
parent 72e4c29612
commit 8d089c0b7a
32 changed files with 4850 additions and 91 deletions

View File

@@ -0,0 +1,30 @@
import React, { FC } from 'react'
import { Container } from '../../components/Container'
import { Header } from '../../components/Header'
import { Navbar } from '../../components/Navbar'
import { PoolListing } from '../../components/PoolListing'
import { SideNav } from '../../components/SideNav'
export const Home: FC = () => {
return (
<>
<Navbar />
<div className="flex flex-grow">
<SideNav />
<div className="flex flex-col h-full w-full overflow-x-hidden mt-16">
<Header>
<Container className="flex-col">
<h1 className="text-5xl text-white font-medium">XStake</h1>
<h2 className="text-3xl text-gray-50 font-light">
Investir em crypto não precisa ser difícil.
</h2>
</Container>
</Header>
<Container>
<PoolListing />
</Container>
</div>
</div>
</>
)
}