import React from "react"; import { Button } from "../button"; import { FooterProps } from "./types"; import { Divider } from "@shared/components/divider"; import { Text } from "@shared/components/text"; export const Footer: React.FC = ({ body, links, bottomLinks, copyrights, terms, maxWidth = true, onClick, }) => { function footerClick( event: React.MouseEvent ): void { onClick?.(event); } return (
{links?.map((link: any, index: number) => (
))}

© {new Date().getFullYear()} {terms}

{copyrights}

); }; export default Footer;