You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
759 B

  1. import Column from '../ui/components/column';
  2. const GettingStarted = () => {
  3. return (
  4. <Column>
  5. <div className='static-content'>
  6. <h1>Getting started</h1>
  7. <p>Mastodon is still in development and one of the lacking areas at the moment is user discovery.</p>
  8. <p>You can follow people if you know their username and the domain they are on by entering an e-mail-esque address into the form in the bottom of the sidebar.</p>
  9. <p>If the target user is on the same domain as you, just the username will work. The same rule applies to mentioning people in statuses.</p>
  10. <p>The developer of this project can be followed as Gargron@mastodon.social</p>
  11. </div>
  12. </Column>
  13. );
  14. };
  15. export default GettingStarted;