Skip to content

Commit

Permalink
feat: add onboarding steps for Trustless Work tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelVR17 committed Feb 24, 2025
1 parent 8584e74 commit bee198b
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions src/constants/steps/steps.tsx
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",
},
];

0 comments on commit bee198b

Please sign in to comment.