diff --git a/src/Footer.tsx b/src/Footer.tsx index a8c121e..9f66aba 100644 --- a/src/Footer.tsx +++ b/src/Footer.tsx @@ -1,8 +1,9 @@ -import { Center, Flex, Link, Text } from '@chakra-ui/react'; -import { Suspense } from 'react'; +import { Center, Flex, Link, Text, Wrap, WrapItem } from '@chakra-ui/react'; +import { Suspense, useMemo } from 'react'; import { SDKVersion } from './SDKVersion'; export function Footer() { + const year = useMemo(() => new Date().getFullYear(), []); return (
- {'音乐解锁 (__APP_VERSION_SHORT__'} + 音乐解锁 (__APP_VERSION_SHORT__ - {') - 移除已购音乐的加密保护。'} + ) - 移除已购音乐的加密保护 - - {'Copyright © 2019 - 2023 '} - - UnlockMusic 团队 - - {' | 音乐解锁授权基于'} - - MIT许可协议 - - 。 - + + Copyright © 2019 - {year} + + UnlockMusic 团队 + + | + 音乐解锁授权基于 + + MIT许可协议 + +
);