Skip to content

Commit

Permalink
Merge PR #287 and #288 into main (#289)
Browse files Browse the repository at this point in the history
* Add smart-contract search entry point (#287)

* Add playgrounds (#288)
  • Loading branch information
katomm authored Sep 13, 2021
1 parent 1359574 commit 3a21bf9
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions searchconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"https://developers.cardano.org/docs/integrate-cardano/",
"https://developers.cardano.org/docs/transaction-metadata/",
"https://developers.cardano.org/docs/native-tokens/",
"https://developers.cardano.org/docs/smart-contracts/",
"https://developers.cardano.org/docs/fund-your-project/",
"https://developers.cardano.org/docs/operate-a-stake-pool/",
"https://developers.cardano.org/tools",
Expand Down
32 changes: 32 additions & 0 deletions src/data/builder-tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,22 @@ export const Tags = {
icon: null,
},

// Marlowe
marlowe: {
label: "Marlowe",
description:
"Marlowe",
icon: null,
},

// Plutus
plutus: {
label: "Plutus",
description:
"Plutus",
icon: null,
},

// Stake Pool Operator Tools
operatortool: {
label: "Operator Tools",
Expand Down Expand Up @@ -178,6 +194,22 @@ const Showcases = [
getstarted: null,
tags: ["library", "api"],
},
{
title: "Plutus Playground",
description: "The Plutus Playground is a lightweight, web-based environment for exploratory Plutus development.",
preview: require("./builder-tools/plutus-playground.png"),
website: "https://playground.plutus.iohkdev.io",
getstarted: "/docs/smart-contracts/plutus#plutus-playground",
tags: ["featured", "getstarted", "plutus"],
},
{
title: "Marlowe Playground",
description: "In the browser-based Marlowe Playground you can write Marlowe contracts, in a variety of different ways.",
preview: require("./builder-tools/marlowe-playground.png"),
website: "https://alpha.marlowe.iohkdev.io/#/",
getstarted: "/docs/smart-contracts/marlowe#marlowe-playground",
tags: ["featured", "getstarted", "marlowe"],
},
];


Expand Down

0 comments on commit 3a21bf9

Please sign in to comment.