import { Metadata } from 'next' import type { ReactNode } from 'react' export const metadata: Metadata = { title: 'HANASYS現地調査:お問い合わせ', description: 'HANASYS現地調査:お問い合わせ', } export default function layout({ children }: { children: ReactNode }) { return
{children}
}