-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add onboarding steps for Trustless Work tutorial
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { Placement } from "react-joyride"; | ||
|
||
export const steps = [ | ||
{ | ||
title: <strong>Welcome to Trustless Work!</strong>, | ||
content: <h2>Here you can understand how to use our API!</h2>, | ||
placement: "center" as Placement, | ||
target: "body", | ||
}, | ||
{ | ||
title: <strong>Roles in Trustless Work</strong>, | ||
content: <h2>Here you'll find all the roles in each Escrow.</h2>, | ||
placement: "auto" as Placement, | ||
target: "#step-1", | ||
}, | ||
{ | ||
title: <strong>Initialize an Escrow</strong>, | ||
content: ( | ||
<h2> | ||
Start by setting up a new escrow agreement. This includes specifying the | ||
terms, amounts, and parties involved. | ||
</h2> | ||
), | ||
placement: "auto" as Placement, | ||
target: "#step-2", | ||
}, | ||
{ | ||
title: <strong>Your Escrows</strong>, | ||
content: ( | ||
<h2> | ||
Here you can see all the escrows you've created or are involved in | ||
depending on your role. | ||
</h2> | ||
), | ||
placement: "auto" as Placement, | ||
target: "#step-3", | ||
}, | ||
]; |