import React, { ReactElement, ReactNode } from 'react' import { Helmet } from 'react-helmet' import SEO, { SeoPost } from '../atoms/SEO' import * as styles from './Page.module.css' export default function Page({ title, section, children, pathname, post }: { title: string children: ReactNode pathname: string section?: string post?: SeoPost }): ReactElement { return ( <>

{title}

{section ?
{children}
: children} ) }