mirror of
https://github.com/vercel/commerce.git
synced 2025-03-27 15:55:54 +00:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import { FC } from 'react'
|
|
import Link from 'next/link'
|
|
import s from './Navbar.module.css'
|
|
import { Logo } from '@components/ui'
|
|
import { Searchbar, UserNav } from '@components/core'
|
|
interface Props {
|
|
className?: string
|
|
}
|
|
|
|
const Navbar: FC<Props> = ({ className }) => {
|
|
const rootClassName = className
|
|
|
|
return (
|
|
<div className={rootClassName}>
|
|
<div className="flex justify-between align-center flex-row py-4 md:py-6 relative">
|
|
<div className="flex flex-1 items-center">
|
|
<Link href="/">
|
|
<a className={s.logo} aria-label="Logo">
|
|
<Logo />
|
|
</a>
|
|
</Link>
|
|
<nav className="space-x-4 ml-6 hidden lg:block">
|
|
<Link href="/">
|
|
<a className={s.link}>All</a>
|
|
</Link>
|
|
<Link href="/">
|
|
<a className={s.link}>Clothes</a>
|
|
</Link>
|
|
<Link href="/">
|
|
<a className={s.link}>Accessories</a>
|
|
</Link>
|
|
</nav>
|
|
</div>
|
|
|
|
<div className="flex-1 justify-center hidden lg:flex">
|
|
<Searchbar />
|
|
</div>
|
|
|
|
<div className="flex flex-1 justify-end space-x-8">
|
|
<UserNav />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex pb-4 lg:px-6 lg:hidden">
|
|
<Searchbar id="mobileSearch" />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Navbar
|