initial commit

This commit is contained in:
0xBoredDev
2024-02-20 14:09:38 -05:00
parent 3a18f9a098
commit 00a6c76842
10 changed files with 125 additions and 87 deletions

View File

@@ -1,7 +1,6 @@
import Cart from 'components/cart';
import OpenCart from 'components/cart/open-cart';
import LogoSquare from 'components/logo-square';
import { getMenu } from 'lib/shopify';
import { Menu } from 'lib/shopify/types';
import Link from 'next/link';
import { Suspense } from 'react';
@@ -10,7 +9,8 @@ import Search from './search';
const { SITE_NAME } = process.env;
export default async function Navbar() {
const menu = await getMenu('next-js-frontend-header-menu');
// const menu = await getMenu('next-js-frontend-header-menu');
const menu: Menu[] = [];
return (
<nav className="relative flex items-center justify-between p-4 lg:px-6">