diff --git a/data/archives/interviews.js b/data/archives/interviews.js new file mode 100644 index 0000000..97c0ba1 --- /dev/null +++ b/data/archives/interviews.js @@ -0,0 +1,104 @@ +const data = [ + { + id: 1, + name: 'Name', + surname: 'Surname' + }, + { + id: 2, + name: 'Name', + surname: 'Surname' + }, + { + id: 3, + name: 'Name', + surname: 'Surname' + }, + { + id: 4, + name: 'Name', + surname: 'Surname' + }, + { + id: 5, + name: 'Name', + surname: 'Surname' + }, + { + id: 6, + name: 'Name', + surname: 'Surname' + }, + { + id: 7, + name: 'Name', + surname: 'Surname' + }, + { + id: 8, + name: 'Name', + surname: 'Surname' + }, + { + id: 9, + name: 'Name', + surname: 'Surname' + }, + { + id: 10, + name: 'Name', + surname: 'Surname' + }, + { + id: 11, + name: 'Name', + surname: 'Surname' + }, + { + id: 12, + name: 'Name', + surname: 'Surname' + }, + { + id: 13, + name: 'Name', + surname: 'Surname' + }, + { + id: 14, + name: 'Name', + surname: 'Surname' + }, + { + id: 15, + name: 'Name', + surname: 'Surname' + }, + { + id: 16, + name: 'Name', + surname: 'Surname' + }, + { + id: 17, + name: 'Name', + surname: 'Surname' + }, + { + id: 18, + name: 'Name', + surname: 'Surname' + }, + { + id: 19, + name: 'Name', + surname: 'Surname' + }, + { + id: 20, + name: 'Name', + surname: 'Surname' + } +]; + +export default data; diff --git a/data/archives/projects.js b/data/archives/projects.js new file mode 100644 index 0000000..f851c48 --- /dev/null +++ b/data/archives/projects.js @@ -0,0 +1,16 @@ +const data = [ + 'Project 1', + 'Project 2', + 'Project 3', + 'Project 4', + 'Project 5', + 'Project 6', + 'Project 7', + 'Project 8', + 'Project 9', + 'Project 10', + 'Project 11', + 'Project 12' +]; + +export default data; diff --git a/data/archives/topics.js b/data/archives/topics.js new file mode 100644 index 0000000..c8f8f8d --- /dev/null +++ b/data/archives/topics.js @@ -0,0 +1,17 @@ +const data = [ + 'Tools', + 'Solidity', + 'Truffle', + 'Deploying', + 'Concerns', + 'Scalability', + 'Evolution', + 'Workflow', + 'Linting', + 'Casper', + 'Testnet', + 'Plasma', + 'Testing' +]; + +export default data; diff --git a/data/resources/wordclouds.js b/data/resources/wordclouds.js new file mode 100644 index 0000000..41a4e77 --- /dev/null +++ b/data/resources/wordclouds.js @@ -0,0 +1,108 @@ +const data = [ + { + title: 'Resources Title 1', + cloud: [ + { + 'word': 'testing', + 'size': 3 + }, + { + 'word': 'Solidity', + 'size': 2 + }, + { + 'word': 'Gas', + 'size': 3 + }, + { + 'word': 'Ethereum', + 'size': 1 + }, + { + 'word': 'load speed', + 'size': 4, + }, + ], + slideContent: '

Slide 1 content goes here. Slide 1 content goes here. Slide 1 content goes here.

', + }, + { + title: 'Resources Title 2', + cloud: [ + { + 'word': 'load speed', + 'size': 4 + }, + { + 'word': 'Gas', + 'size': 3 + }, + { + 'word': 'Ethereum', + 'size': 2 + }, + { + 'word': 'testing', + 'size': 1 + }, + { + 'word': 'Solidity', + 'size': 2, + }, + ], + slideContent: '

Slide 2 content goes here. Slide 2 content goes here. Slide 2 content goes here.

', + }, + { + title: 'Resources Title 3', + cloud: [ + { + 'word': 'load speed', + 'size': 4 + }, + { + 'word': 'Gas', + 'size': 3 + }, + { + 'word': 'Ethereum', + 'size': 2 + }, + { + 'word': 'testing', + 'size': 1 + }, + { + 'word': 'Solidity', + 'size': 2, + }, + ], + slideContent: '

Slide 3 content goes here. Slide 3 content goes here. Slide 3 content goes here.

', + }, + { + title: 'Resources Title 4', + cloud: [ + { + 'word': 'testing', + 'size': 3 + }, + { + 'word': 'Solidity', + 'size': 2 + }, + { + 'word': 'Gas', + 'size': 3 + }, + { + 'word': 'Ethereum', + 'size': 1 + }, + { + 'word': 'load speed', + 'size': 4, + }, + ], + slideContent: '

Slide 4 content goes here. Slide 4 content goes here. Slide 4 content goes here.

', + }, +]; + +export default data;