From 92c35eb2309ef65a079b269f4b0d0e7d307d7cbf Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Mon, 17 Feb 2020 15:34:34 +0100 Subject: [PATCH] replace FAQ questions --- .../src/components/HomeNetwork/HomeNetwork.js | 19 +++++++++---------- .../components/HomeNetwork/HomeNetwork.scss | 4 ++++ packages/siaviewnode-server/src/logger.ts | 6 ++---- 3 files changed, 15 insertions(+), 14 deletions(-) diff --git a/packages/sia-skynet/src/components/HomeNetwork/HomeNetwork.js b/packages/sia-skynet/src/components/HomeNetwork/HomeNetwork.js index 2a94105f..2f923a9c 100644 --- a/packages/sia-skynet/src/components/HomeNetwork/HomeNetwork.js +++ b/packages/sia-skynet/src/components/HomeNetwork/HomeNetwork.js @@ -120,41 +120,40 @@ export default class HomeNetwork extends Component {
- +

- It means that you want the file to stay online and available. Anyone can re-pin a file on Skynet. + Anyone can access files that have been uploaded to Sia as long as they possess the corresponding skylink. You can use one of the webportals to download the files. read more

- +

- Your data is incomparably secure on Skynet. Everything is split and (if you want) encrypted, which means files can’t be hacked, and data can’t be de-platformed. + Applications can be deployed in under a minute and be immediately available globally. Skynet has an API as well as SDKs which integrate seamlessly with existing applications. read more

- +

- 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. + Skynet has speeds that surpass any current decentralized tech. A typical throughput for larger downloads is around 1 gigabit per second. read more

- +

- 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. + Storage costs are as much as 10x lower than traditional infrastructure, bandwidth costs as much as 100x lower, all without sacrificing performance or reliability. read more

- View more faq - + View more FAQ
diff --git a/packages/sia-skynet/src/components/HomeNetwork/HomeNetwork.scss b/packages/sia-skynet/src/components/HomeNetwork/HomeNetwork.scss index 1792209e..2e6fd1fa 100644 --- a/packages/sia-skynet/src/components/HomeNetwork/HomeNetwork.scss +++ b/packages/sia-skynet/src/components/HomeNetwork/HomeNetwork.scss @@ -189,4 +189,8 @@ .more-faq { margin-left: 48px; } + + .read-mode { + display: block; + } } diff --git a/packages/siaviewnode-server/src/logger.ts b/packages/siaviewnode-server/src/logger.ts index 5b9dc7a2..690481b0 100644 --- a/packages/siaviewnode-server/src/logger.ts +++ b/packages/siaviewnode-server/src/logger.ts @@ -2,7 +2,7 @@ import { createLogger, format, transports } from 'winston'; const { combine, timestamp, prettyPrint } = format; -const logger = createLogger({ +export default createLogger({ format: combine( timestamp(), prettyPrint(), @@ -23,6 +23,4 @@ const logger = createLogger({ }), ], exitOnError: false, -}); - -export default logger; \ No newline at end of file +}); \ No newline at end of file