The code powering m.abunchtell.com https://m.abunchtell.com
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

19 Zeilen
1023 B

  1. import Column from '../ui/components/column';
  2. import { Link } from 'react-router';
  3. import { FormattedMessage } from 'react-intl';
  4. const GettingStarted = () => {
  5. return (
  6. <Column>
  7. <div className='static-content'>
  8. <h1><FormattedMessage id='getting_started.heading' defaultMessage='Getting started' /></h1>
  9. <p><FormattedMessage id='getting_started.about_addressing' defaultMessage='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 at the top of the sidebar.' /></p>
  10. <p><FormattedMessage id='getting_started.about_shortcuts' defaultMessage='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>
  11. <p><FormattedMessage id='getting_started.about_developer' defaultMessage='The developer of this project can be followed as Gargron@mastodon.social' /></p>
  12. </div>
  13. </Column>
  14. );
  15. };
  16. export default GettingStarted;