import { ReactNode } from 'react'; export const WidePageLayout = ({ children }: { children: ReactNode }) => { return
{children}
; };