您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

63 行
2.2 KiB

  1. // material-ui
  2. import { useMediaQuery, Container, Link, Typography, Stack } from '@mui/material';
  3. import bhkLogo from 'assets/images/BHK_logo_rgb_zh-hk.png';
  4. // ==============================|| FOOTER - AUTHENTICATION ||============================== //
  5. const AuthFooter = () => {
  6. const matchDownSM = useMediaQuery((theme) => theme.breakpoints.down('sm'));
  7. return (
  8. <Container maxWidth= "xl" sx={{minHeight: '5vh'}}>
  9. <Stack
  10. direction={matchDownSM ? 'column' : 'row'}
  11. justifyContent={matchDownSM ? 'center' : 'flex-start'}
  12. spacing={2}
  13. textAlign={matchDownSM ? 'center' : 'inherit'}
  14. alignItems="center"
  15. >
  16. <Typography variant="subtitle2" color="secondary" component="span">
  17. 2024 &copy; 政府物流服務署
  18. </Typography>
  19. <Typography
  20. variant="subtitle2"
  21. color="secondary"
  22. component={Link}
  23. // href="https://material-ui.com/store/contributors/codedthemes/"
  24. target="_blank"
  25. underline="hover"
  26. >
  27. 重要告示
  28. </Typography>
  29. <Typography
  30. variant="subtitle2"
  31. color="secondary"
  32. component={Link}
  33. // href="https://codedthemes.com"
  34. href="/testMailPage"
  35. target="_blank"
  36. underline="hover"
  37. >
  38. 私隱政策
  39. </Typography>
  40. </Stack>
  41. <Stack direction={matchDownSM ? 'column' : 'row'} spacing={matchDownSM ? 1 : 3} textAlign={matchDownSM ? 'center' : 'inherit'} justifyContent={matchDownSM?"center":"flex-end"}>
  42. <a href="https://www.w3.org/WAI/WCAG2AAA-Conformance"
  43. title="Explanation of WCAG 2 Level AAA conformance">
  44. <img height="32" width="88"
  45. src="https://www.w3.org/WAI/wcag2AAA"
  46. alt="Level AAA conformance,
  47. W3C WAI Web Content Accessibility Guidelines 2.0"/>
  48. </a>
  49. <a href="https://www.brandhk.gov.hk/zh-hk"
  50. title="Brand Hong Kong">
  51. <img src={bhkLogo} alt="logo" height="32" width="88"
  52. />
  53. </a>
  54. </Stack>
  55. </Container>
  56. );
  57. };
  58. export default AuthFooter;