2023-05-14 23:22:23 +00:00
|
|
|
import { Center, Flex, Link, Text } from '@chakra-ui/react';
|
2023-05-14 23:09:54 +00:00
|
|
|
import { Suspense } from 'react';
|
|
|
|
import { SDKVersion } from './SDKVersion';
|
2023-05-07 22:29:37 +00:00
|
|
|
|
|
|
|
export function Footer() {
|
|
|
|
return (
|
|
|
|
<Center height="footer.container">
|
|
|
|
<Center
|
|
|
|
height="footer.content"
|
|
|
|
fontSize="sm"
|
|
|
|
textAlign="center"
|
|
|
|
position="fixed"
|
|
|
|
bottom="0"
|
|
|
|
w="full"
|
|
|
|
bg="gray.100"
|
|
|
|
color="gray.800"
|
|
|
|
left="0"
|
|
|
|
flexDir="column"
|
|
|
|
>
|
2023-05-14 23:22:23 +00:00
|
|
|
<Flex as={Text}>
|
|
|
|
{'音乐解锁 (__APP_VERSION_SHORT__'}
|
2023-05-14 23:09:54 +00:00
|
|
|
<Suspense>
|
|
|
|
<SDKVersion />
|
|
|
|
</Suspense>
|
2023-05-14 23:22:23 +00:00
|
|
|
{') - 移除已购音乐的加密保护。'}
|
|
|
|
</Flex>
|
2023-05-14 23:09:54 +00:00
|
|
|
<Text>
|
|
|
|
{'Copyright © 2019 - 2023 '}
|
2023-05-07 22:29:37 +00:00
|
|
|
<Link href="https://git.unlock-music.dev/um" isExternal>
|
|
|
|
UnlockMusic 团队
|
2023-05-14 23:09:54 +00:00
|
|
|
</Link>
|
|
|
|
{' | 音乐解锁授权基于'}
|
2023-05-07 22:29:37 +00:00
|
|
|
<Link href="https://git.unlock-music.dev/um/um-react/src/branch/main/LICENSE" isExternal>
|
|
|
|
MIT许可协议
|
|
|
|
</Link>
|
|
|
|
。
|
|
|
|
</Text>
|
|
|
|
</Center>
|
|
|
|
</Center>
|
|
|
|
);
|
|
|
|
}
|