import React from 'react' import { useTranslation } from 'next-i18next' import * as Dialog from '@radix-ui/react-dialog' import CrossIcon from '~public/icons/Cross.svg' import './index.scss' const ChangelogModal = () => { const { t } = useTranslation('common') return (
  • {t('modals.changelog.title')}
  • event.preventDefault()} >
    {t('menu.changelog')}

    1.0

    • First release!
    • Content update - Mid-December 2022 Flash Gala
    • You can embed Youtube videos now
    • Better clicking - right-click and open in a new tab
    • Manually set dark mode in Account Settings
    • Lots of bugs squashed
    ) } export default ChangelogModal