mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-04 22:40:29 +03:00
28 lines
811 B
TypeScript
28 lines
811 B
TypeScript
import React from 'react';
|
|
import { Box, Text } from 'folds';
|
|
import * as css from './styles.css';
|
|
|
|
export function AuthFooter() {
|
|
return (
|
|
<Box className={css.AuthFooter} justifyContent="Center" gap="400" wrap="Wrap">
|
|
<Text as="a" size="T300" href="https://cinny.in" target="_blank" rel="noreferrer">
|
|
About
|
|
</Text>
|
|
<Text
|
|
as="a"
|
|
size="T300"
|
|
href="https://github.com/ajbura/cinny/releases"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
v4.8.1
|
|
</Text>
|
|
<Text as="a" size="T300" href="https://twitter.com/cinnyapp" target="_blank" rel="noreferrer">
|
|
Twitter
|
|
</Text>
|
|
<Text as="a" size="T300" href="https://matrix.org" target="_blank" rel="noreferrer">
|
|
Powered by Matrix
|
|
</Text>
|
|
</Box>
|
|
);
|
|
}
|