diff --git a/web/pages/challenges/[username]/[contractSlug]/[challengeSlug].tsx b/web/pages/challenges/[username]/[contractSlug]/[challengeSlug].tsx
index 7d633b18..1f1ff760 100644
--- a/web/pages/challenges/[username]/[contractSlug]/[challengeSlug].tsx
+++ b/web/pages/challenges/[username]/[contractSlug]/[challengeSlug].tsx
@@ -125,10 +125,59 @@ export default function ChallengePage(props: {
bets={bets}
/>
)}
+
+
)
}
+function FAQ() {
+ const [toggleWhatIsThis, setToggleWhatIsThis] = useState(false)
+ const [toggleWhatIsMana, setToggleWhatIsMana] = useState(false)
+ return (
+
+ FAQ
+
+ setToggleWhatIsThis(!toggleWhatIsThis)}
+ >
+ {toggleWhatIsThis ? '-' : '+'}
+ What is this?
+
+
+ {toggleWhatIsThis && (
+
+
+ This is a challenge bet, or a bet offered from one person to another
+ that is only realized if both parties agree. You can agree to the
+ challenge (if it's open) or create your own from a market page. See
+ more markets{' '}
+
+ here.
+
+
+
+ )}
+
+ setToggleWhatIsMana(!toggleWhatIsMana)}
+ >
+ {toggleWhatIsMana ? '-' : '+'}
+ What is M$?
+
+
+ {toggleWhatIsMana && (
+
+ Mana (M$) is the play-money used by our platform to keep track of your
+ bets. It's completely free for you and your friends to get started!
+
+ )}
+
+ )
+}
+
function ClosedChallengeContent(props: {
contract: BinaryContract
challenge: Challenge
@@ -244,8 +293,8 @@ function OpenChallengeContent(props: {
return (
-
-
+
+
{question}
@@ -262,7 +311,7 @@ function OpenChallengeContent(props: {
amount={creatorAmount}
/>
-
+
VS
@@ -274,7 +323,7 @@ function OpenChallengeContent(props: {
-
+
{`${creator.name} will bet ${formatMoney(
creatorAmount