// @ts-nocheck import React from 'react'; import { Icon, For, FormattedMessage as T } from '@/components'; import { getFooterLinks } from '@/constants/footerLinks'; import { useAuthActions } from '@/hooks/state'; /** * Footer item link. */ function FooterLinkItem({ title, link }) { return (
); } /** * Setup left section footer. */ function SetupLeftSectionFooter() { // Retrieve the footer links. const footerLinks = getFooterLinks(); return (