import type { FC, ReactNode } from 'react'; import { Footer, type FooterProps } from '../../atoms'; export type PageFooterProps = Omit & { /** * The footer contents. */ children?: ReactNode; }; /** * PageFooter component * * Render a footer to display page meta. */ export const PageFooter: FC = ({ children, ...props }) => ( );