import Link from "next/link"; import { useTranslation } from "next-i18next"; import Paypal from "../banner/Paypal"; import { useBbox } from "./useBbox"; const Footer = () => { const linkStyle = { whiteSpace: "nowrap" }; const { t } = useTranslation(); const [bboxLink1, link1] = useBbox(); const [bboxLink2, link2] = useBbox(); const [bboxLink3, link3] = useBbox(); const [bboxLink4, link4] = useBbox(); const [bboxLink5, link5] = useBbox(); const [bboxLink6, link6] = useBbox(); const [bboxLink7, link7] = useBbox(); return ( ); }; export default Footer;