Skip to content

Commit fe00383

Browse files
committed
Better welcome page
1 parent 836ea18 commit fe00383

File tree

2 files changed

+46
-11
lines changed

2 files changed

+46
-11
lines changed

debug.log

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,12 @@
77
[0211/191504.012:ERROR:registration_protocol_win.cc(130)] TransactNamedPipe: The pipe has been ended. (0x6D)
88
[0211/191504.022:ERROR:file_io_win.cc(194)] LockFileEx: Incorrect function. (0x1)
99
[0211/191504.027:ERROR:file_io_win.cc(194)] LockFileEx: Incorrect function. (0x1)
10+
[0313/121540.759:ERROR:registration_protocol_win.cc(130)] TransactNamedPipe: The pipe has been ended. (0x6D)
11+
[0313/121540.800:ERROR:file_io_win.cc(194)] LockFileEx: Incorrect function. (0x1)
12+
[0313/121540.819:ERROR:file_io_win.cc(194)] LockFileEx: Incorrect function. (0x1)
13+
[0313/125933.336:ERROR:registration_protocol_win.cc(130)] TransactNamedPipe: The pipe has been ended. (0x6D)
14+
[0313/125933.345:ERROR:file_io_win.cc(194)] LockFileEx: Incorrect function. (0x1)
15+
[0313/125933.352:ERROR:file_io_win.cc(194)] LockFileEx: Incorrect function. (0x1)
16+
[0313/130227.935:ERROR:registration_protocol_win.cc(130)] TransactNamedPipe: The pipe has been ended. (0x6D)
17+
[0313/130227.943:ERROR:file_io_win.cc(194)] LockFileEx: Incorrect function. (0x1)
18+
[0313/130227.949:ERROR:file_io_win.cc(194)] LockFileEx: Incorrect function. (0x1)

src/routes/WelcomeRoute.tsx

Lines changed: 37 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,33 @@ export const Welcome: React.FunctionComponent = () => {
1010
<ContainerNarrow>
1111
<h1>Atomic Data</h1>
1212
<p>
13-
<a href='https://atomicdata.dev'>Atomic Data</a> is a new set of standards designed to make it easier to share, create and model
14-
linked data. Check out{' '}
13+
<em>
14+
The easiest way to <b>create</b>, <b>share</b> and <b>model</b> linked data.
15+
</em>
16+
</p>
17+
<p>
18+
Atomic Data is a proposed standard for modeling and exchanging linked data. It uses links to connect pieces of data, and therefore
19+
makes it easier to connect datasets to each other - even when these datasets exist on separate machines. It aims to help realize a
20+
more decentralized internet that encourages data ownership and interoperability.
21+
</p>
22+
<p>
23+
Atomic Data is especially suitable for knowledge graphs, distributed datasets, semantic data, p2p applications, decentralized apps,
24+
and data that is meant to be shared. It is designed to be highly extensible, easy to use, and to make the process of domain specific
25+
standardization as simple as possible. Check out{' '}
1526
<b>
1627
<a href='https://docs.atomicdata.dev/'>the docs</a>
1728
</b>{' '}
1829
for more information about Atomic Data.
1930
</p>
31+
<h2>About this app</h2>
2032
<p>
21-
This app is for viewing, editing and creating Atomic Data. It&apos;s free and open source on{' '}
22-
<a href='https://github.com/joepio/atomic-data-browser'>github</a>. Please add an issue if you encouter problems or have a feature
23-
request. Expect bugs and issues, because this stuff is pretty beta.
33+
You&apos;re looking at <a href='https://github.com/joepio/atomic-data-browser'>atomic-data-browser</a>, an open-source client for
34+
viewing and editing data. Please add an issue if you encouter problems or have a feature request. Expect bugs and issues, because
35+
this stuff is pretty beta.
36+
</p>
37+
<p>
38+
The back-end of this app is <a href='https://github.com/joepio/atomic'>atomic-server</a>, which you can think of as an open source,
39+
web-native database.
2440
</p>
2541
<p>
2642
You can edit app settings, such as current user and theme color at{' '}
@@ -29,23 +45,33 @@ export const Welcome: React.FunctionComponent = () => {
2945
<p>
3046
Check out the keyboard shortcuts at <LinkView onClick={() => history.push('/shortcuts')}>/shortcuts</LinkView>.
3147
</p>
32-
<p>
33-
Some <a href='https://github.com/joepio/atomic'>atomic-servers</a> to visit with this browser:
34-
</p>
48+
<h2>Things to visit</h2>
3549
<ul>
3650
<li>
37-
<AtomicLink url='https://atomicdata.dev/collections/collection'>atomicdata.dev</AtomicLink>
51+
<AtomicLink url='https://atomicdata.dev/collections/collection'>List of lists</AtomicLink>
52+
</li>
53+
<li>
54+
<AtomicLink url='https://atomicdata.dev/collections/class'>List of Classes</AtomicLink>
55+
</li>
56+
<li>
57+
<AtomicLink url='https://atomicdata.dev/collections/property'>List of Properties</AtomicLink>
3858
</li>
3959
</ul>
40-
<p>Or run your own server...</p>
60+
<h2>Run your own server</h2>
61+
<p>
62+
The easiest way to run an <a href='https://github.com/joepio/atomic'>atomic-server</a> is by using Docker:
63+
</p>
4164
<p>
4265
<code>docker run -p 80:80 -p 443:443 -v atomic-storage:/atomic-storage joepmeneer/atomic-server</code>
4366
</p>
4467
<p>
4568
...and visit <AtomicLink url='http://localhost/collections/collection'>localhost</AtomicLink>.
4669
</p>
70+
<h2>Join the community</h2>
4771
<p>
48-
If you have any questions, feel free to join our <a href='https://discord.gg/a72Rv2P'>Discord</a>!
72+
Atomic Data is open and fully powered by volunteers. We&apos;re looking for people who want to help discuss various design
73+
challenges and work on implmenentations. If you have any questions, or want to help out, feel free to join our{' '}
74+
<a href='https://discord.gg/a72Rv2P'>Discord</a>!
4975
</p>
5076
</ContainerNarrow>
5177
);

0 commit comments

Comments
 (0)