Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Commit 6757fb2

Browse files
terichadbournefsdiogo
authored andcommitted
chore: add protoschool link & fix libp2p references (#264)
1 parent ce64ad9 commit 6757fb2

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

intl/messages/en.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989

9090
"gettingStarted": {
9191
"sectionTitle": "Getting Started",
92-
"sectionDesc": "IPFS gives you a Content Addressing primitive for all your data on the DWeb. You can make data available to the network or fetch existing data through its CID, the Content Identifier. Try it out below!",
92+
"sectionDesc": "IPFS gives you a Content Addressing primitive for all your data on the DWeb. You can make data available to the network or fetch existing data through its CID, the Content Identifier. Try it out below or [explore our ProtoSchool tutorials](https://proto.school/#/tutorials)!",
9393
"addDataToIPFS": "Adding data to IPFS",
9494
"output": "Output",
9595
"getDataFromIPFS": "Getting data from IPFS",
@@ -141,8 +141,8 @@
141141
"sectionTitle": "What you can build with JS-IPFS",
142142
"sectionDesc": "There are unlimited options for you to use js-ipfs. The following examples provide you an idea of what you can build with js-ipfs. Try them out!",
143143
"suggestion": {
144-
"text": "Do you have any idea and want to suggest?",
145-
"linkText": "Do it here!"
144+
"text": "Have suggestions?",
145+
"linkText": "Share them here!"
146146
}
147147
},
148148

@@ -153,7 +153,7 @@
153153

154154
"community": {
155155
"sectionTitle": "Community",
156-
"sectionDesc": "js-ipfs is an MIT Licensed, Open Source project from the IPFS community. There are many ways you can contribute: help write the specification, code implementations and tools using libp2p, craft examples and tutorials, and join our regular product calls to discuss libp2p with us.",
156+
"sectionDesc": "js-ipfs is an MIT Licensed, Open Source project from the IPFS community. There are many ways you can contribute: help write the specification, code implementations and tools using js-ipfs, craft examples and tutorials, and join our working group calls to discuss IPFS with us.",
157157
"socialNetworksText": "Come hang out!"
158158
},
159159

src/shared/components/getting-started-section/index.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import Svg from 'shared/components/svg'
1010
import Button from 'shared/components/button'
1111
import Link from 'shared/components/link'
1212
import SyntaxHighlighter from 'shared/components/syntax-highlighter'
13+
import ReactMarkdown from 'react-markdown'
1314
import {
1415
transformCode,
1516
log,
@@ -70,9 +71,7 @@ class GettingStarted extends Component {
7071
</div>
7172
<div className={ styles.content }>
7273
<h1>{ messages.gettingStarted.sectionTitle }</h1>
73-
<span className={ styles.sectionDescription }>
74-
<p>{ messages.gettingStarted.sectionDesc }</p>
75-
</span>
74+
<ReactMarkdown className={ styles.sectionDescription } source={ messages.gettingStarted.sectionDesc } />
7675
<div className={ styles.panel } >
7776
<p className={ styles.liveSnippetTitle }>{ messages.gettingStarted.addDataToIPFS }</p>
7877
<LiveProvider key="add" className={ styles.liveSnippet } code={ codeAdd } scope={ this.scopeAdd } mountStylesheet={ false } transformCode={ transformCode }>

0 commit comments

Comments
 (0)