4
0
forked from crowetic/commerce
This commit is contained in:
Belen Curcio
2020-10-03 11:00:08 -03:00
parent 307c0067cd
commit 3f39d31cc5
5 changed files with 19 additions and 32 deletions

View File

@@ -13,13 +13,13 @@ const Navbar: FC<Props> = ({ className }) => {
return (
<Container className={rootClassName}>
<Logo />
<div className="flex flex-row h-full content-center flex-1">
<Searchbar />
<div className="flex flex-row h-full content-center flex-1 ml-10">
<nav className="hidden flex-row items-center px-3 lg:flex">
<a className="pr-4">All</a>
<a className="pr-4">Clothes</a>
<a>Accesories</a>
</nav>
<Searchbar />
</div>
<UserNav />
</Container>