import { FC } from 'react'; import { resolveColor } from '@/utils/colorPalette'; import { cn } from '@/utils/styling'; import { PageProps } from '.'; export const Page: FC = ({ className, header, footer, children, backgroundColor, style, ...restProps }) => { const bg = resolveColor(backgroundColor, 'background'); return (
{header}
{children}
{footer}
); };