enable dotnev on test enviroment

This commit is contained in:
João Geonizeli
2021-08-04 16:33:11 -03:00
parent d623b653b2
commit bfb716bee2
2 changed files with 14 additions and 22 deletions

View File

@@ -3,30 +3,22 @@ import React 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>
</>
<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>
);
};