import React from 'react'; import { Box, Text, IconButton, Icon, Icons, Scroll, Button, config, toRem } from 'folds'; import { Page, PageContent, PageHeader } from '../../../components/page'; import { SequenceCard } from '../../../components/sequence-card'; import { SequenceCardStyle } from '../styles.css'; import { SettingTile } from '../../../components/setting-tile'; import CinnySVG from '../../../../../public/res/svg/cinny.svg'; import { clearCacheAndReload } from '../../../../client/initMatrix'; import { useMatrixClient } from '../../../hooks/useMatrixClient'; type AboutProps = { requestClose: () => void; }; export function About({ requestClose }: AboutProps) { const mx = useMatrixClient(); return ( About Cinny logo Cinny v4.10.1 Yet another matrix client. Options clearCacheAndReload(mx)} variant="Secondary" fill="Soft" size="300" radii="300" outlined > Clear Cache } /> Credits
  • The{' '} matrix-js-sdk {' '} is ©{' '} The Matrix.org Foundation C.I.C {' '} used under the terms of{' '} Apache 2.0 .
  • The{' '} twemoji-colr {' '} font is ©{' '} Mozilla Foundation {' '} used under the terms of{' '} Apache 2.0 .
  • The{' '} Twemoji {' '} emoji art is ©{' '} Twitter, Inc and other contributors {' '} used under the terms of{' '} CC-BY 4.0 .
  • The{' '} Material sound resources {' '} are ©{' '} Google {' '} used under the terms of{' '} CC-BY 4.0 .
  • ); }