6efe2c71a0
* MP-2784: first itteration of the mobile support screen * fix: fixed the AccountSummary * MP-2784: mobile not supported * fix: v1 is not v1.0 * fix: fixed according to feedback * fix: created a standalone mobile page
16 lines
385 B
TypeScript
16 lines
385 B
TypeScript
import Text from 'components/Text'
|
|
|
|
import packageInfo from '../../package.json'
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer className='flex items-center justify-center w-full h-6 -mt-6'>
|
|
<div className='w-full px-4 pb-4 text-right'>
|
|
<Text size='xs' className='opacity-50'>
|
|
v{packageInfo.version}
|
|
</Text>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|