import PropTypes from 'prop-types'; import React from 'react'; import { useIntl } from 'react-intl'; import { useDispatch, useSelector } from 'react-redux'; import { Link } from 'react-router-dom'; import { getSoapboxConfig } from 'soapbox/actions/soapbox'; import LandingGradient from 'soapbox/components/landing-gradient'; import BundleContainer from 'soapbox/features/ui/containers/bundle_container'; import { NotificationsContainer } from 'soapbox/features/ui/util/async-components'; import { logOut } from '../../actions/auth'; import { Button, Stack, Text } from '../../components/ui'; const WaitlistPage = ({ account }) => { const dispatch = useDispatch(); const intl = useIntl(); const logo = useSelector((state) => getSoapboxConfig(state).get('logo')); const onClickLogOut = (event) => { event.preventDefault(); dispatch(logOut(intl)); }; return (
Logo
Waitlisted @{account.acct} has been created successfully! Due to massive demand, we have placed you on our waitlist. We love you, and you're not just another number to us. We are working to get you on our platform. Stay tuned!
{(Component) => }
); }; WaitlistPage.propTypes = { account: PropTypes.object, }; export default WaitlistPage;