// material-ui import { useMediaQuery, Container, Link, Typography, Stack } from '@mui/material'; import bhkLogo from 'assets/images/BHK_logo_rgb_zh-hk.png'; import {FormattedMessage} from "react-intl"; import {useIntl} from "react-intl"; import { isGLDLoggedIn, } from "utils/Utils"; // ==============================|| FOOTER - AUTHENTICATION ||============================== // const AuthFooter = () => { const matchDownSM = useMediaQuery((theme) => theme.breakpoints.down('sm')); const intl = useIntl(); const bhkAlt = intl.formatMessage({ id: "bhkLogoAlt" }); const wcagAlt = intl.formatMessage({ id: "wcagAaAlt" }); return ( 2024-{new Date().getFullYear()} © {!isGLDLoggedIn()? ( {wcagAlt} ) : null} {bhkAlt} ); }; export default AuthFooter;