Skip to content

Commit

Permalink
Add "Terms and Conditions" link to the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
paluh committed Dec 21, 2023
1 parent 974c183 commit bff93c4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Component/Footer.purs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ footer = do
, children:
[ DOM.a
{ className: "btn btn-link text-muted text-primary-hover text-decoration-none"
, href: "http://marlowescan.com"
, href: "https://static.iohk.io/terms/iohktermsandconditions.pdf"
, target: "_blank"
, children:
[ DOM.i { className: "h5 bi-globe2" }
, DOM.text " Marlowe Scan"
[ DOM.i { className: "h5 bi-github" }
, DOM.text " Terms and Conditions"
]
}
, DOM.a
Expand All @@ -36,20 +36,20 @@ footer = do
}
, DOM.a
{ className: "btn btn-link text-muted text-primary-hover text-decoration-none"
, href: "https://github.com/input-output-hk/marlowe-cardano"
, href: "https://play.marlowe.iohk.io"
, target: "_blank"
, children:
[ DOM.i { className: "h5 bi-github" }
, DOM.text " Marlowe Cardano Github"
[ DOM.i { className: "h5 bi-play-circle" }
, DOM.text " Marlowe Playground"
]
}
, DOM.a
{ className: "btn btn-link text-muted text-primary-hover text-decoration-none"
, href: "https://play.marlowe.iohk.io"
, href: "http://marlowescan.com"
, target: "_blank"
, children:
[ DOM.i { className: "h5 bi-play-circle" }
, DOM.text " Marlowe Playground"
[ DOM.i { className: "h5 bi-globe2" }
, DOM.text " Marlowe Scan"
]
}
]
Expand Down

0 comments on commit bff93c4

Please sign in to comment.