25 lines
660 B
TypeScript
25 lines
660 B
TypeScript
import { View, Text } from '@tarojs/components';
|
|
import { AtDivider } from 'taro-ui';
|
|
import pt from '@/plain-text';
|
|
|
|
export default () => {
|
|
const blankHeightUpper = 15;
|
|
const blankHeightLower = 110;
|
|
return (
|
|
<View>
|
|
<View style={{ height: blankHeightUpper }}></View>
|
|
<View>
|
|
<AtDivider
|
|
content={pt.get().pageFooter.dividerText}
|
|
fontColor='#dddddd'
|
|
lineColor='#dddddd'
|
|
/>
|
|
</View>
|
|
<View className='at-row at-row__justify--center'>
|
|
<Text style='color:#dddddd;'>© 2024 EVA Tech</Text>
|
|
</View>
|
|
<View style={{ height: blankHeightLower }}></View>
|
|
</View>
|
|
);
|
|
};
|