Merge pull request #11 from NebulousLabs/faq

add faq answers
This commit is contained in:
Karol Wypchło 2020-02-17 04:12:53 -05:00 committed by GitHub
commit f55306516d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 16 deletions

View File

@ -13,10 +13,10 @@ export default function CodeExamples() {
<div className="code-examples">
<ul className="code-examples-tabs">
<li onClick={() => setActive(1)} className={classNames({ active: active === 1 })}>
Python
CURL
</li>
<li onClick={() => setActive(2)} className={classNames({ active: active === 2 })}>
CURL
Python
</li>
<li onClick={() => setActive(3)} className={classNames({ active: active === 3 })}>
Node.js
@ -28,14 +28,14 @@ export default function CodeExamples() {
<div className="code-examples-body">
{active === 1 && (
<SyntaxHighlighter wrapLines showLineNumbers={true} language="python" style={Colors}>
{python}
<SyntaxHighlighter wrapLines showLineNumbers={true} language="curl" style={Colors}>
{curl}
</SyntaxHighlighter>
)}
{active === 2 && (
<SyntaxHighlighter wrapLines showLineNumbers={true} language="curl" style={Colors}>
{curl}
<SyntaxHighlighter wrapLines showLineNumbers={true} language="python" style={Colors}>
{python}
</SyntaxHighlighter>
)}

View File

@ -122,9 +122,7 @@ export default class HomeNetwork extends Component {
<Fade duration={700} distance="40px" bottom>
<FAQ title="What does pinning mean?">
<p>
Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type
and scrambled it to make.
It means that you want the file to stay online and available. Anyone can re-pin a file on Skynet.
</p>
</FAQ>
</Fade>
@ -132,8 +130,7 @@ export default class HomeNetwork extends Component {
<Fade duration={700} distance="40px" bottom>
<FAQ title="Is my data secure?">
<p>
Cras justo odio, dapibus ac facilisis in, egestas eget quam.
Sed posuere consectetur est at lobortis.
Your data is incomparably secure on Skynet. Everything is split and (if you want) encrypted, which means files cant be hacked, and data cant be de-platformed.
</p>
</FAQ>
</Fade>
@ -141,8 +138,7 @@ export default class HomeNetwork extends Component {
<Fade duration={700} distance="40px" bottom>
<FAQ title="How does Sia compare to other decentralized storage solutions?">
<p>
Cras justo odio, dapibus ac facilisis in, egestas eget quam.
Sed posuere consectetur est at lobortis.
Some other blockchain cloud storage platforms are decentralized in name only. Sia is the only network with no central point of failure, and has the track record to prove it.
</p>
</FAQ>
</Fade>
@ -150,9 +146,7 @@ export default class HomeNetwork extends Component {
<Fade duration={700} distance="40px" bottom>
<FAQ title="How long will my files be available?">
<p>
Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book.
As long as a file is being paid for, it stays on the network. That means, with minimal input, you can have your files stored on the decentralized web for as long as you want.
</p>
</FAQ>
</Fade>