import { Metadata } from 'next'
import LayoutWrapper from './LayoutWrapper'

export const metadata: Metadata = {
  title: 'Scheme',
  description: '',
}

export default function Layout ({ children }: { children: React.ReactNode }) {
  return <LayoutWrapper>{children}</LayoutWrapper>
}
