2020-06-22 14:00:51 +03:00
|
|
|
import * as React from 'react';
|
|
|
|
import * as System from '~/components/system';
|
2020-04-09 00:29:13 +03:00
|
|
|
|
2020-06-22 14:00:51 +03:00
|
|
|
import SystemPage from '~/components/system/SystemPage';
|
2020-06-22 14:15:04 +03:00
|
|
|
import ViewSourceLink from '~/components/system/ViewSourceLink';
|
2020-04-09 00:29:13 +03:00
|
|
|
|
|
|
|
export default class SystemPageRoot extends React.Component {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<SystemPage
|
2020-07-01 10:31:55 +03:00
|
|
|
title="SDS 1.1"
|
|
|
|
description="This is an early preview of the Slate Design System SDS)."
|
2020-06-22 14:00:51 +03:00
|
|
|
url="https://fps.onrender.com/system">
|
|
|
|
<System.H1>Welcome</System.H1>
|
2020-04-09 00:29:13 +03:00
|
|
|
<br />
|
|
|
|
<System.P>
|
2020-07-01 10:48:19 +03:00
|
|
|
This is an early preview of the <strong>Slate Design System (SDS 1.1)</strong>. We are developing our
|
2020-07-01 10:31:55 +03:00
|
|
|
philosophy, principles and practices out in the open.
|
2020-04-09 00:29:13 +03:00
|
|
|
</System.P>
|
|
|
|
<br /> <br />
|
|
|
|
<System.H2>Introduction</System.H2>
|
|
|
|
<br />
|
|
|
|
<System.P>
|
2020-06-22 14:00:51 +03:00
|
|
|
Components here are free for you to use in any of your projects. The components will serve as common use cases
|
|
|
|
of the Filecoin Network, making it easier to integrate the Filecoin Network into your own applications.
|
2020-04-09 00:29:13 +03:00
|
|
|
</System.P>
|
2020-06-22 14:00:51 +03:00
|
|
|
<br /> <br />
|
|
|
|
<System.H2>License</System.H2>
|
2020-04-09 00:29:13 +03:00
|
|
|
<br />
|
|
|
|
<System.P>
|
|
|
|
Copyright © 2020 Protocol Labs
|
|
|
|
<br />
|
|
|
|
<br />
|
2020-06-22 14:00:51 +03:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
|
|
|
documentation files (the "Software"), to deal in the Software without restriction, including without
|
|
|
|
limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
|
|
|
|
Software, and to permit persons to whom the Software is furnished to do so, subject to the following
|
|
|
|
conditions:
|
2020-04-09 00:29:13 +03:00
|
|
|
<br />
|
|
|
|
<br />
|
2020-06-22 14:00:51 +03:00
|
|
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions
|
|
|
|
of the Software.
|
2020-04-09 00:29:13 +03:00
|
|
|
<br />
|
|
|
|
<br />
|
2020-06-22 14:00:51 +03:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
|
|
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
|
|
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
DEALINGS IN THE SOFTWARE.
|
2020-04-09 00:29:13 +03:00
|
|
|
</System.P>
|
|
|
|
</SystemPage>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|