import { FC } from 'react'; import { UniformSlot } from '@uniformdev/next-app-router/component'; import BaseFooter from '@/components/ui/Footer'; import { withFlattenParameters } from '@/utils/withFlattenParameters'; import { FooterParameters, FooterProps } from '.'; export const Footer: FC = ({ slots, backgroundColor, spacing, border, fluidContent, }) => ( } copyright={} content={} {...{ backgroundColor, spacing, border, fluidContent }} /> ); export default withFlattenParameters(Footer);