diff --git a/src/constants/steps/steps.tsx b/src/constants/steps/steps.tsx
new file mode 100644
index 0000000..bb819f5
--- /dev/null
+++ b/src/constants/steps/steps.tsx
@@ -0,0 +1,38 @@
+import { Placement } from "react-joyride";
+
+export const steps = [
+ {
+ title: Welcome to Trustless Work!,
+ content:
Here you can understand how to use our API!
,
+ placement: "center" as Placement,
+ target: "body",
+ },
+ {
+ title: Roles in Trustless Work,
+ content: Here you'll find all the roles in each Escrow.
,
+ placement: "auto" as Placement,
+ target: "#step-1",
+ },
+ {
+ title: Initialize an Escrow,
+ content: (
+
+ Start by setting up a new escrow agreement. This includes specifying the
+ terms, amounts, and parties involved.
+
+ ),
+ placement: "auto" as Placement,
+ target: "#step-2",
+ },
+ {
+ title: Your Escrows,
+ content: (
+
+ Here you can see all the escrows you've created or are involved in
+ depending on your role.
+
+ ),
+ placement: "auto" as Placement,
+ target: "#step-3",
+ },
+];