Skip to content

Commit 8c3a81b

Browse files
authored
Merge pull request #268 from onflow/staging
Update Tutorial Links for Playground Examples
2 parents b2d238c + 47b4211 commit 8c3a81b

File tree

1 file changed

+37
-35
lines changed

1 file changed

+37
-35
lines changed

src/components/Examples.tsx

Lines changed: 37 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -10,60 +10,62 @@ import ActionButton from 'components/ActionButton';
1010

1111
const examples = [
1212
{
13-
title: " First Steps",
13+
title: ' First Steps',
1414
subtitle:
15-
"Learn how to use smart contracts, switch accounts, and view account state.",
16-
emoji: "🏃",
17-
docsLink: "https://docs.onflow.org/cadence/tutorial/01-first-steps/"
15+
'Learn how to use smart contracts, switch accounts, and view account state.',
16+
emoji: '🏃',
17+
docsLink: 'https://docs.onflow.org/cadence/tutorial/01-first-steps/',
1818
},
1919
{
20-
title: "Hello, World!",
20+
title: 'Hello, World!',
2121
subtitle:
22-
"Write your first contract on Flow. This is the perfect place to start to get the hang of the fundamentals of Cadence.",
23-
emoji: "🌎",
24-
projectLink: "https://play.onflow.org/f51905e8-6030-4641-9324-11a3f1a6091c",
25-
docsLink: "https://docs.onflow.org/cadence/tutorial/02-hello-world/"
22+
'Write your first contract on Flow. This is the perfect place to start to get the hang of the fundamentals of Cadence.',
23+
emoji: '🌎',
24+
projectLink: 'https://play.onflow.org/f51905e8-6030-4641-9324-11a3f1a6091c',
25+
docsLink: 'https://docs.onflow.org/cadence/tutorial/02-hello-world/',
2626
},
2727
{
28-
title: "Mint Fungible Tokens",
28+
title: 'Mint Fungible Tokens',
2929
subtitle:
30-
"Create and sell digital assets of your own in this tutorial! This tutorial will teach you the basics of creating, storing, and moving digital assets and tokens.",
31-
emoji: "💸",
32-
projectLink: "https://play.onflow.org/50745fb6-77d5-4510-adfc-cf448fb043e1",
33-
docsLink: "https://docs.onflow.org/cadence/tutorial/03-fungible-tokens/"
30+
'Create and sell digital assets of your own in this tutorial! This tutorial will teach you the basics of creating, storing, and moving digital assets and tokens.',
31+
emoji: '💸',
32+
projectLink: 'https://play.onflow.org/50745fb6-77d5-4510-adfc-cf448fb043e1',
33+
docsLink: 'https://docs.onflow.org/cadence/tutorial/06-fungible-tokens/',
3434
},
3535
{
36-
title: "Create Non-Fungible Tokens",
36+
title: 'Create Non-Fungible Tokens',
3737
subtitle:
38-
"Create and shape your own unique digital objects. Here you’ll learn what really makes blockchains magic - the ability for unique items to be created, shared, and stored forever.",
39-
emoji: "😺",
40-
projectLink: "https://play.onflow.org/524612f1-9921-4836-9b64-e7a7c8de81d6",
41-
docsLink: "https://docs.onflow.org/cadence/tutorial/04-non-fungible-tokens/"
38+
'Create and shape your own unique digital objects. Here you’ll learn what really makes blockchains magic - the ability for unique items to be created, shared, and stored forever.',
39+
emoji: '😺',
40+
projectLink: 'https://play.onflow.org/ae2f2a83-6698-4e03-93cf-70d35627e28e',
41+
docsLink:
42+
'https://docs.onflow.org/cadence/tutorial/05-non-fungible-tokens-1/',
4243
},
4344
{
44-
title: "Build a Marketplace",
45+
title: 'Build a Marketplace',
4546
subtitle:
46-
"Put it all together in a marketplace! This tutorial will teach you how to turn all the concepts you’ve learned into a place for people to share their creations with the community.",
47-
emoji: "🤝",
48-
projectLink: "https://play.onflow.org/45ae690e-c527-409c-970e-57f03df92790",
49-
docsLink: "https://docs.onflow.org/cadence/tutorial/05-marketplace-setup/"
47+
'Put it all together in a marketplace! This tutorial will teach you how to turn all the concepts you’ve learned into a place for people to share their creations with the community.',
48+
emoji: '🤝',
49+
projectLink: 'https://play.onflow.org/45ae690e-c527-409c-970e-57f03df92790',
50+
docsLink:
51+
'https://docs.onflow.org/cadence/tutorial/08-marketplace-compose/',
5052
},
5153
{
52-
title: "Expand Non-Fungible Tokens",
54+
title: 'Expand Non-Fungible Tokens',
5355
subtitle:
54-
"This tutorial is for the brave and the bold, an opportunity to discover what resources make possible - resources owning other resources. If you can imagine it, you can create it.",
55-
emoji: "🤠",
56-
projectLink: "https://play.onflow.org/cda4d057-5898-4a7f-be34-fd47ec75085f",
57-
docsLink: "https://docs.onflow.org/cadence/tutorial/07-resources-compose/"
56+
'This tutorial is for the brave and the bold, an opportunity to discover what resources make possible - resources owning other resources. If you can imagine it, you can create it.',
57+
emoji: '🤠',
58+
projectLink: 'https://play.onflow.org/cda4d057-5898-4a7f-be34-fd47ec75085f',
59+
docsLink: 'https://docs.onflow.org/cadence/tutorial/10-resources-compose/',
5860
},
5961
{
60-
title: "Voting Contract",
62+
title: 'Voting Contract',
6163
subtitle:
62-
"With the advent of blockchain technology and smart contracts, it has become popular to try to create decentralized voting mechanisms that allow large groups of users to vote completely on chain",
63-
emoji: "🗳️",
64-
projectLink: "https://play.onflow.org/75a6ce58-74bb-468f-b7bd-425716c93c3e",
65-
docsLink: "https://docs.onflow.org/cadence/tutorial/08-voting/"
66-
}
64+
'With the advent of blockchain technology and smart contracts, it has become popular to try to create decentralized voting mechanisms that allow large groups of users to vote completely on chain',
65+
emoji: '🗳️',
66+
projectLink: 'https://play.onflow.org/75a6ce58-74bb-468f-b7bd-425716c93c3e',
67+
docsLink: 'https://docs.onflow.org/cadence/tutorial/09-voting/',
68+
},
6769
];
6870

6971
const ExamplesContainer = styled(motion.div)`

0 commit comments

Comments
 (0)