redirect /about; more content in welcome email
This commit is contained in:
parent
770a8d049c
commit
bf64f5b3a9
|
@ -188,6 +188,56 @@
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align="left"
|
||||||
|
style="font-size:0px;padding:15px 25px 0px 25px;padding-top:15px;padding-right:25px;padding-bottom:0px;padding-left:25px;word-break:break-word;">
|
||||||
|
<div
|
||||||
|
style="font-family:Arial, sans-serif;font-size:18px;letter-spacing:normal;line-height:1;text-align:left;color:#000000;">
|
||||||
|
<p class="text-build-content" style="line-height: 23px; margin: 10px 0; margin-top: 10px;"
|
||||||
|
data-testid="3Q8BP69fq"><span style="font-family:Arial, sans-serif;font-size:18px;">Did
|
||||||
|
you know, besides betting and making predictions, you can also <a
|
||||||
|
class="link-build-content" style="color:inherit;; text-decoration: none;"
|
||||||
|
target="_blank" href="https://manifold.markets/create"><span
|
||||||
|
style="color:#55575d;font-family:Arial;font-size:18px;font-weight: bold;"><u>create
|
||||||
|
your
|
||||||
|
own
|
||||||
|
market</u></span></a> on
|
||||||
|
any question you care about?</span></p>
|
||||||
|
|
||||||
|
<p>More resources:</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li style="line-height:23px;"><span style="font-family:Arial, sans-serif;font-size:18px;"><a
|
||||||
|
class="link-build-content" style="color:inherit;; text-decoration: none;"
|
||||||
|
target="_blank" href="https://manifold.markets/about"><span
|
||||||
|
style="color:#55575d;font-family:Arial;font-size:18px;"><u>Learn more</u></span></a>
|
||||||
|
about Manifold and how our markets work</span></li>
|
||||||
|
|
||||||
|
<li style="line-height:23px;"><span style="font-family:Arial, sans-serif;font-size:18px;"><a
|
||||||
|
class="link-build-content" style="color:inherit;; text-decoration: none;"
|
||||||
|
target="_blank" href="https://manifold.markets/referrals"><span
|
||||||
|
style="color:#55575d;font-family:Arial;font-size:18px;"><u>Refer
|
||||||
|
your friends</u></span></a> and earn M$500 for each signup!</span></li>
|
||||||
|
|
||||||
|
<li style="line-height:23px;"><span style="font-family:Arial, sans-serif;font-size:18px;"><a
|
||||||
|
class="link-build-content" style="color:inherit;; text-decoration: none;"
|
||||||
|
target="_blank" href="https://discord.com/invite/eHQBNBqXuh"><span
|
||||||
|
style="color:#55575d;font-family:Arial;font-size:18px;"><u>Join our Discord
|
||||||
|
chat</u></span></a></span></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<p class="text-build-content" data-testid="3Q8BP69fq" style="margin: 10px 0;"> </p>
|
||||||
|
<p class="text-build-content" data-testid="3Q8BP69fq" style="margin: 10px 0;"><span
|
||||||
|
style="color:#000000;font-family:Arial;font-size:18px;">Cheers,</span>
|
||||||
|
</p>
|
||||||
|
<p class="text-build-content" data-testid="3Q8BP69fq" style="margin: 10px 0;"><span
|
||||||
|
style="color:#000000;font-family:Arial;font-size:18px;">David
|
||||||
|
from Manifold</span></p>
|
||||||
|
<p class="text-build-content" data-testid="3Q8BP69fq"
|
||||||
|
style="margin: 10px 0; margin-bottom: 10px;"> </p>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"
|
<td align="left"
|
||||||
style="font-size:0px;padding:15px 25px 0px 25px;padding-top:15px;padding-right:25px;padding-bottom:0px;padding-left:25px;word-break:break-word;">
|
style="font-size:0px;padding:15px 25px 0px 25px;padding-top:15px;padding-right:25px;padding-bottom:0px;padding-left:25px;word-break:break-word;">
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
const API_DOCS_URL = 'https://docs.manifold.markets/api'
|
const API_DOCS_URL = 'https://docs.manifold.markets/api'
|
||||||
|
|
||||||
|
const ABOUT_PAGE_URL = 'https://docs.manifold.markets/$how-to'
|
||||||
|
|
||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
staticPageGenerationTimeout: 600, // e.g. stats page
|
staticPageGenerationTimeout: 600, // e.g. stats page
|
||||||
|
@ -35,6 +37,11 @@ module.exports = {
|
||||||
destination: API_DOCS_URL,
|
destination: API_DOCS_URL,
|
||||||
permanent: false,
|
permanent: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
source: '/about',
|
||||||
|
destination: ABOUT_PAGE_URL,
|
||||||
|
permanent: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
source: '/analytics',
|
source: '/analytics',
|
||||||
destination: '/stats',
|
destination: '/stats',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user