mirror of
https://github.com/vercel/commerce.git
synced 2025-05-14 05:37:51 +00:00
wip: Saving work
This commit is contained in:
parent
f85f83fae3
commit
a5b31df456
@ -1,4 +1,4 @@
|
||||
COMPANY_NAME="Suginomori Brewery"
|
||||
COMPANY_NAME="suginomori brewery"
|
||||
TWITTER_SITE="https://narai.jp"
|
||||
SITE_NAME="suginomori brewery"
|
||||
SHOPIFY_REVALIDATION_SECRET=
|
||||
|
@ -3,6 +3,7 @@
|
||||
import { Dialog, Transition } from '@headlessui/react';
|
||||
import clsx from 'clsx';
|
||||
import CloseIcon from 'components/icons/close';
|
||||
import Logo from 'components/icons/logo';
|
||||
import MenuIcon from 'components/icons/menu';
|
||||
import { useLocale, useTranslations } from 'next-intl';
|
||||
import Link from 'next/link';
|
||||
@ -55,6 +56,9 @@ export function MenuModal({ scrolled }: { scrolled: boolean }) {
|
||||
<div className="fixed inset-0 z-30 bg-dark/80 backdrop-blur-sm">
|
||||
<Dialog.Panel>
|
||||
<div className="z-40 mx-auto max-w-screen-xl px-6">
|
||||
<div className="absolute left-6 top-2">
|
||||
<Logo className="h-[132px] w-[132px]" />
|
||||
</div>
|
||||
<div
|
||||
className={clsx(
|
||||
'flex flex-row justify-end space-x-6 px-2',
|
||||
|
@ -5,8 +5,8 @@ export default function LogoSquare({ size }: { size?: 'sm' | undefined }) {
|
||||
return (
|
||||
<div
|
||||
className={clsx('flex flex-none items-center justify-center', {
|
||||
'h-[40px] w-[40px] rounded-xl': !size,
|
||||
'h-[30px] w-[30px] rounded-lg': size === 'sm'
|
||||
'h-[40px] w-[40px]': !size,
|
||||
'h-[30px] w-[30px]': size === 'sm'
|
||||
})}
|
||||
>
|
||||
<Logo
|
||||
|
Loading…
x
Reference in New Issue
Block a user