import React from 'react'; import { connect } from 'react-redux' import ImmutablePureComponent from 'react-immutable-pure-component'; import { Link } from 'react-router-dom'; const mapStateToProps = (state, props) => ({ instance: state.get('instance'), soapbox: state.get('soapbox'), }); class LandingPage extends ImmutablePureComponent { render() { return (
Gleasonator
Find friends, share ideas, and reclaim your social networking experience.

With an account on gleasonator.com you'll be able to follow people on any server in the fediverse.

♡{new Date().getFullYear()}. Copying is an act of love. Please copy and share.
  • About
  • Terms of Service
  • Privacy Policy
  • DMCA
  • Source Code
) } } export default connect(mapStateToProps)(LandingPage);