import { Box, Button, Grommet, type ThemeType } from 'grommet' import dynamic from 'next/dynamic' import Link from 'next/link' import type { ReactNode } from 'react' const AccountButton = dynamic(() => import('./AccountButton'), { ssr: false, }) const theme: ThemeType = { global: { font: { family: 'sans-serif', }, }, } type Props = { children: ReactNode } export default function Layout({ children }: Props) { return (