mirror of
https://github.com/vercel/commerce.git
synced 2025-05-13 13:17:51 +00:00
72 lines
2.4 KiB
TypeScript
72 lines
2.4 KiB
TypeScript
import Cart from 'components/cart';
|
|
import OpenCart from 'components/cart/open-cart';
|
|
import LogoSquare from 'components/logo-square';
|
|
import Profile from 'components/profile';
|
|
import OpenProfile from 'components/profile/open-profile';
|
|
import { getMenu } from 'lib/shopify';
|
|
import { Menu } from 'lib/shopify/types';
|
|
import Link from 'next/link';
|
|
import { Suspense } from 'react';
|
|
import MobileMenu from './mobile-menu';
|
|
import Search, { SearchSkeleton } from './search';
|
|
const { SITE_NAME } = process.env;
|
|
|
|
export default async function Navbar() {
|
|
const menu = await getMenu('main-menu');
|
|
|
|
return (
|
|
<nav className="relative flex items-center justify-between p-4 lg:px-6">
|
|
<div className="block flex-none md:hidden">
|
|
<Suspense fallback={null}>
|
|
<MobileMenu menu={menu} />
|
|
</Suspense>
|
|
</div>
|
|
<div className="flex w-full flex-col">
|
|
<div className="flex w-full items-center">
|
|
<div className="flex w-full md:w-1/3">
|
|
<Link
|
|
href="/"
|
|
className="mr-2 flex w-full items-center justify-center md:w-auto lg:mr-6"
|
|
>
|
|
<LogoSquare />
|
|
<div className="flex-none text-sm font-medium uppercase md:hidden lg:block">
|
|
{SITE_NAME}
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
<div className="hidden justify-center md:flex md:w-1/3">
|
|
<Suspense fallback={<SearchSkeleton />}>
|
|
<Search />
|
|
</Suspense>
|
|
</div>
|
|
<div className="flex justify-end gap-3 md:w-1/3">
|
|
<Suspense fallback={<OpenProfile />}>
|
|
<Profile />
|
|
</Suspense>
|
|
<Suspense fallback={<OpenCart />}>
|
|
<Cart />
|
|
</Suspense>
|
|
</div>
|
|
</div>
|
|
|
|
{menu.length ? (
|
|
<div className="hidden w-full items-center justify-center border-b py-3 md:flex">
|
|
<ul className="hidden gap-7 text-sm md:flex md:items-center">
|
|
{menu.map((item: Menu) => (
|
|
<li key={item.title}>
|
|
<Link
|
|
href={item.path}
|
|
className="text-neutral-600 hover:text-black dark:text-neutral-400 dark:hover:text-neutral-300"
|
|
>
|
|
{item.title}
|
|
</Link>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
</nav>
|
|
);
|
|
}
|