about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/getting_started
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-06 22:47:35 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-06 22:47:35 +0200
commita4b8069cf5ed57d7cba066993f683941a6e60bc3 (patch)
tree9b211ea3137e62c343cd7d172b11c8a973754f82 /app/assets/javascripts/components/features/getting_started
parente8a8703a4bfd0c245100beb1a0e15551b5c52f84 (diff)
Styling loading indicator, removing unused routes, adding "getting started" explanation
Also, only update relative time every minute instead of 6 seconds. My bad
Diffstat (limited to 'app/assets/javascripts/components/features/getting_started')
-rw-r--r--app/assets/javascripts/components/features/getting_started/index.jsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/assets/javascripts/components/features/getting_started/index.jsx b/app/assets/javascripts/components/features/getting_started/index.jsx
new file mode 100644
index 000000000..d507cb46f
--- /dev/null
+++ b/app/assets/javascripts/components/features/getting_started/index.jsx
@@ -0,0 +1,13 @@
+const GettingStarted = () => {
+  return (
+    <div className='static-content'>
+      <h1>Getting started</h1>
+      <p>Mastodon is still in development and one of the lacking areas at the moment is user discovery.</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>The developer of this project can be followed as Gargron@mastodon.social</p>
+    </div>
+  );
+};
+
+export default GettingStarted;