Add link to public timeline to getting started screen
This commit is contained in:
parent
b0168c8f3c
commit
bef4d8dab8
|
@ -1,4 +1,5 @@
|
||||||
import Column from '../ui/components/column';
|
import Column from '../ui/components/column';
|
||||||
|
import { Link } from 'react-router';
|
||||||
|
|
||||||
const GettingStarted = () => {
|
const GettingStarted = () => {
|
||||||
return (
|
return (
|
||||||
|
@ -9,6 +10,7 @@ const GettingStarted = () => {
|
||||||
<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>
|
<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>
|
||||||
<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>
|
<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>
|
||||||
<p>The developer of this project can be followed as Gargron@mastodon.social</p>
|
<p>The developer of this project can be followed as Gargron@mastodon.social</p>
|
||||||
|
<p>Also <Link to='/statuses/all' style={{ color: '#2b90d9', textDecoration: 'none' }}>check out the public timeline for a start</Link>!</p>
|
||||||
</div>
|
</div>
|
||||||
</Column>
|
</Column>
|
||||||
);
|
);
|
||||||
|
|
Reference in a new issue