import { FC } from "react"; import { Media, ModuleBase, Stack, Text } from "../../components"; import { FooterProps } from "./Footer.types"; import { FooterBottomLinks, FooterSocialLinks, FooterTopLinks } from "./chunks"; import { backgroundHolder, bottomWrapper, copyright, logoWrapper, topWrapper, } from "./Footer.styles"; const Footer: FC = ({ data, moduleAnims, logoImageSizes, backgroundImageSizes, backgroundPriority = false, logoPriority = false, socialIcons, textStyles, ...props }) => { return ( ); }; export default Footer;