import React from 'react'; import Head from 'next/head'; export type PageBaseProps = { children?: React.ReactNode; flex?: boolean; }; const PageBase = (props: PageBaseProps) => { return (