Adding the faq page. Created list of faqs and rendering them on the page. Note: made a style tweak to the H2 component
as the long title revealed a flaw
Details
Details
- Reviewers
bytesofman - Group Reviewers
Restricted Project - Commits
- rABCfcb9c9452298: [e.cash] Add faq page
preview the site and navigate to the faq page
check everything looks good on both themes and all screen sizes
check content for any mistakes
Diff Detail
Diff Detail
- Repository
- rABC Bitcoin ABC
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
Build Bitcoin ABC Diffs / Diff Testing (preview-e.cash) passed.
Preview is available at http://51.83.220.60:41009 for the next 60 minutes.
web/e.cash/pages/faq.js | ||
---|---|---|
37 ↗ | (On Diff #40434) | do we need to use dangerouslySetInnerHTML here? Why not define the answer as a react component instead of a string? This would also allow us to use our custom link component instead of having to manually code links to open in a new tab. for example, instead of { question: 'Where can I find eCash price information compared to other cryptocurrencies?', answer: '<p>eCash price information is available at all leading crypto research sources, like <a href="https://www.coingecko.com/en/coins/ecash" target="_blank">Coingecko</a>, <a href="https://coinmarketcap.com/currencies/ecash/" target="_blank">Coinmarketcap</a>, and <a href="https://crypto.com/price/ecash?utm_medium=widget&utm_campaign=CoinTickerClassic&utm_source=crypto.com&utm_id=ecash" target="_blank">Crypto.com</a></p>', }, do { question: 'Where can I find eCash price information compared to other cryptocurrencies?', answer: <><p>eCash price information is available at all leading crypto research sources, like <CustomLink href="https://www.coingecko.com/en/coins/ecash">Coingecko</CustomLink>, <CustomLink href="https://coinmarketcap.com/currencies/ecash/">Coinmarketcap</CustomLink>, and <CustomLink href="https://crypto.com/price/ecash?utm_medium=widget&utm_campaign=CoinTickerClassic&utm_source=crypto.com&utm_id=ecash">Crypto.com</CustomLink></p></>, }, Then <div>{faq.answer}</div> |
Comment Actions
Build Bitcoin ABC Diffs / Diff Testing (preview-e.cash) passed.
Preview is available at http://51.89.41.69:41078 for the next 60 minutes.