Rename to Manifold Markets! (#19)
* Update logo and about page to manifold * Change urls, titles / metatags, landing page
This commit is contained in:
parent
95472c5faf
commit
85b5ee5cbc
|
@ -26,7 +26,7 @@ Resolution: ${toDisplayResolution[resolution]}
|
||||||
Your payout is M$ ${Math.round(payout)}
|
Your payout is M$ ${Math.round(payout)}
|
||||||
|
|
||||||
View the market here:
|
View the market here:
|
||||||
https://mantic.markets/${creator.username}/${contract.slug}
|
https://manifold.markets/${creator.username}/${contract.slug}
|
||||||
`
|
`
|
||||||
await sendEmail(user.email, subject, body)
|
await sendEmail(user.email, subject, body)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Mantic Markets web
|
# Manifold Markets web
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ export function SEO(props: {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Head>
|
<Head>
|
||||||
<title>{title} | Mantic Markets</title>
|
<title>{title} | Manifold Markets</title>
|
||||||
|
|
||||||
<meta
|
<meta
|
||||||
property="og:title"
|
property="og:title"
|
||||||
|
@ -29,7 +29,7 @@ export function SEO(props: {
|
||||||
{url && (
|
{url && (
|
||||||
<meta
|
<meta
|
||||||
property="og:url"
|
property="og:url"
|
||||||
content={'https://mantic.markets' + url}
|
content={'https://manifold.markets' + url}
|
||||||
key="url"
|
key="url"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -35,7 +35,7 @@ export const ContractOverview = (props: {
|
||||||
? `Resolved ${resolution}!`
|
? `Resolved ${resolution}!`
|
||||||
: `Resolved ${resolution} by ${creatorName}:`
|
: `Resolved ${resolution} by ${creatorName}:`
|
||||||
: `Currently ${probPercent} chance, place your bets here:`
|
: `Currently ${probPercent} chance, place your bets here:`
|
||||||
const url = `https://mantic.markets${path(contract)}`
|
const url = `https://manifold.markets${path(contract)}`
|
||||||
const tweetText = `${tweetQuestion}\n\n${tweetDescription}\n\n${url}`
|
const tweetText = `${tweetQuestion}\n\n${tweetDescription}\n\n${url}`
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -14,11 +14,11 @@ export function ManticLogo(props: { darkBackground?: boolean }) {
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'font-major-mono lowercase mt-1 sm:text-2xl md:whitespace-nowrap',
|
'hidden sm:flex font-major-mono lowercase mt-1 sm:text-2xl md:whitespace-nowrap',
|
||||||
darkBackground && 'text-white'
|
darkBackground && 'text-white'
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
Mantic Markets
|
Manifold Markets
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
|
@ -67,7 +67,7 @@ function ProfileSummary(props: { user: User }) {
|
||||||
<div className="rounded-full w-10 h-10 mr-4">
|
<div className="rounded-full w-10 h-10 mr-4">
|
||||||
<Image src={user.avatarUrl} width={40} height={40} />
|
<Image src={user.avatarUrl} width={40} height={40} />
|
||||||
</div>
|
</div>
|
||||||
<div className="truncate text-left" style={{ maxWidth: 140 }}>
|
<div className="truncate text-left" style={{ maxWidth: 170 }}>
|
||||||
{user.name}
|
{user.name}
|
||||||
<div className="text-gray-700 text-sm">{formatMoney(user.balance)}</div>
|
<div className="text-gray-700 text-sm">{formatMoney(user.balance)}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -6,32 +6,32 @@ function MyApp({ Component, pageProps }: AppProps) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Head>
|
<Head>
|
||||||
<title>Mantic Markets</title>
|
<title>Manifold Markets</title>
|
||||||
|
|
||||||
<meta
|
<meta
|
||||||
property="og:title"
|
property="og:title"
|
||||||
name="twitter:title"
|
name="twitter:title"
|
||||||
content="Mantic Markets"
|
content="Manifold Markets"
|
||||||
key="title"
|
key="title"
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta
|
||||||
name="description"
|
name="description"
|
||||||
content="Mantic Markets is creating better forecasting through user-created prediction markets."
|
content="Manifold Markets is creating better forecasting through user-created prediction markets."
|
||||||
key="description1"
|
key="description1"
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta
|
||||||
property="og:description"
|
property="og:description"
|
||||||
name="twitter:description"
|
name="twitter:description"
|
||||||
content="Mantic Markets is creating better forecasting through user-created prediction markets."
|
content="Manifold Markets is creating better forecasting through user-created prediction markets."
|
||||||
key="description2"
|
key="description2"
|
||||||
/>
|
/>
|
||||||
<meta property="og:url" content="https://mantic.markets" key="url" />
|
<meta property="og:url" content="https://manifold.markets" key="url" />
|
||||||
<meta name="twitter:card" content="summary_large_image" />
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
<meta name="twitter:site" content="@manticmarkets" />
|
<meta name="twitter:site" content="@manifoldmarkets" />
|
||||||
<meta
|
<meta
|
||||||
property="og:image"
|
property="og:image"
|
||||||
name="twitter:image"
|
name="twitter:image"
|
||||||
content="https://mantic.markets/logo-cover.png"
|
content="https://manifold.markets/logo-cover.png"
|
||||||
/>
|
/>
|
||||||
</Head>
|
</Head>
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ function Contents() {
|
||||||
<h1 id="about">About</h1>
|
<h1 id="about">About</h1>
|
||||||
<hr />
|
<hr />
|
||||||
<p>
|
<p>
|
||||||
Mantic Markets is creating better forecasting through user-created
|
Manifold Markets is creating better forecasting through user-created
|
||||||
prediction markets.
|
prediction markets.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
|
@ -77,7 +77,9 @@ function Contents() {
|
||||||
</a>
|
</a>
|
||||||
. This is the power of prediction markets!
|
. This is the power of prediction markets!
|
||||||
</p>
|
</p>
|
||||||
<h3 id="how-does-mantic-markets-work-">How does Mantic Markets work?</h3>
|
<h3 id="how-does-manifold-markets-work-">
|
||||||
|
How does Manifold Markets work?
|
||||||
|
</h3>
|
||||||
<ol>
|
<ol>
|
||||||
<li>
|
<li>
|
||||||
<strong>
|
<strong>
|
||||||
|
@ -96,7 +98,7 @@ function Contents() {
|
||||||
</p>
|
</p>
|
||||||
<li>
|
<li>
|
||||||
<strong>
|
<strong>
|
||||||
Anyone can bet on a market using Mantic Dollars (M$), our platform
|
Anyone can bet on a market using Manifold Dollars (M$), our platform
|
||||||
currency.
|
currency.
|
||||||
</strong>
|
</strong>
|
||||||
</li>
|
</li>
|
||||||
|
@ -104,15 +106,15 @@ function Contents() {
|
||||||
<p>
|
<p>
|
||||||
You get M$ 1,000 just for signing up, so you can start betting
|
You get M$ 1,000 just for signing up, so you can start betting
|
||||||
immediately! When a market creator decides an outcome in your favor,
|
immediately! When a market creator decides an outcome in your favor,
|
||||||
you'll win Mantic Dollars from people who bet against you.
|
you'll win Manifold Dollars from people who bet against you.
|
||||||
</p>
|
</p>
|
||||||
{/* <p>
|
{/* <p>
|
||||||
If you run out of money, you can purchase more at a rate of $1 USD to M$
|
If you run out of money, you can purchase more at a rate of $1 USD to M$
|
||||||
100. (Note that Mantic Dollars are not convertible to cash and can only
|
100. (Note that Manifold Dollars are not convertible to cash and can only
|
||||||
be used within our platform.)
|
be used within our platform.)
|
||||||
</p> */}
|
</p> */}
|
||||||
<aside>
|
<aside>
|
||||||
💡 We're still in Open Beta; we'll tweak the amounts of Mantic
|
💡 We're still in Open Beta; we'll tweak the amounts of Manifold
|
||||||
Dollars given out and periodically reset balances before our official
|
Dollars given out and periodically reset balances before our official
|
||||||
launch.
|
launch.
|
||||||
{/* If you purchase
|
{/* If you purchase
|
||||||
|
@ -130,7 +132,7 @@ function Contents() {
|
||||||
</p>
|
</p>
|
||||||
<p>By buying M$, you support:</p>
|
<p>By buying M$, you support:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>The continued development of Mantic Markets</li>
|
<li>The continued development of Manifold Markets</li>
|
||||||
<li>Cash payouts to market creators (TBD)</li>
|
<li>Cash payouts to market creators (TBD)</li>
|
||||||
<li>Forecasting tournaments for bettors (TBD)</li>
|
<li>Forecasting tournaments for bettors (TBD)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -206,12 +208,12 @@ function Contents() {
|
||||||
they use on our platform.
|
they use on our platform.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
With Mantic Dollars being a scarce resource, people will bet more
|
With Manifold Dollars being a scarce resource, people will bet more
|
||||||
carefully and can't rig the outcome by creating multiple accounts.
|
carefully and can't rig the outcome by creating multiple accounts.
|
||||||
The result is more accurate predictions.
|
The result is more accurate predictions.
|
||||||
</p> */}
|
</p> */}
|
||||||
<p>
|
<p>
|
||||||
Mantic Markets is focused on accessibility and allowing anyone to
|
Manifold Markets is focused on accessibility and allowing anyone to
|
||||||
quickly create and judge a prediction market. When we all have the power
|
quickly create and judge a prediction market. When we all have the power
|
||||||
to create and share prediction markets in seconds and apply our own
|
to create and share prediction markets in seconds and apply our own
|
||||||
judgment on the outcome, it leads to a qualitative shift in the number,
|
judgment on the outcome, it leads to a qualitative shift in the number,
|
||||||
|
@ -239,8 +241,8 @@ function Contents() {
|
||||||
|
|
||||||
<h3 id="type-of-market-maker">What kind of betting system do you use?</h3>
|
<h3 id="type-of-market-maker">What kind of betting system do you use?</h3>
|
||||||
<p>
|
<p>
|
||||||
Mantic Markets uses a special type of automated market marker based on a
|
Manifold Markets uses a special type of automated market marker based on
|
||||||
dynamic pari-mutuel (DPM) betting system.
|
a dynamic pari-mutuel (DPM) betting system.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Like traditional pari-mutuel systems, your payoff is not known at the
|
Like traditional pari-mutuel systems, your payoff is not known at the
|
||||||
|
@ -258,7 +260,7 @@ function Contents() {
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h3 id="who-are-we-">Who are we?</h3>
|
<h3 id="who-are-we-">Who are we?</h3>
|
||||||
<p>Mantic Markets is currently a team of three:</p>
|
<p>Manifold Markets is currently a team of three:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>James Grugett</li>
|
<li>James Grugett</li>
|
||||||
<li>Stephen Grugett</li>
|
<li>Stephen Grugett</li>
|
||||||
|
@ -278,7 +280,7 @@ function Contents() {
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
Email: <code>info@mantic.markets</code>
|
Email: <code>info@manifold.markets</code>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Office hours:{' '}
|
Office hours:{' '}
|
||||||
|
@ -288,7 +290,7 @@ function Contents() {
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
<a href="https://discord.gg/eHQBNBqXuh">
|
<a href="https://discord.gg/eHQBNBqXuh">
|
||||||
Join the Mantic Markets Discord Server!
|
Join the Manifold Markets Discord Server!
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
@ -298,7 +300,7 @@ function Contents() {
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://manifoldmarkets.notion.site/Technical-Overview-b9b48a09ea1f45b88d991231171730c5">
|
<a href="https://manifoldmarkets.notion.site/Technical-Overview-b9b48a09ea1f45b88d991231171730c5">
|
||||||
Technical Overview of Mantic Markets
|
Technical Overview of Manifold Markets
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
@ -322,7 +324,7 @@ function Contents() {
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://mantic.markets/simulator">
|
<a href="https://manifold.markets/simulator">
|
||||||
Dynamic parimutuel market simulator
|
Dynamic parimutuel market simulator
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -94,7 +94,7 @@ function FeaturesSection() {
|
||||||
{
|
{
|
||||||
name: 'Play money, real results',
|
name: 'Play money, real results',
|
||||||
description:
|
description:
|
||||||
'Get accurate predictions by betting with Mantic Dollars, our virtual currency.',
|
'Get accurate predictions by betting with Manifold Dollars, our virtual currency.',
|
||||||
icon: LightningBoltIcon,
|
icon: LightningBoltIcon,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -117,7 +117,7 @@ function FeaturesSection() {
|
||||||
<div className="max-w-7xl mx-auto px-6 lg:px-8">
|
<div className="max-w-7xl mx-auto px-6 lg:px-8">
|
||||||
<div className="lg:text-center">
|
<div className="lg:text-center">
|
||||||
<h2 className="text-base text-teal-600 font-semibold tracking-wide uppercase">
|
<h2 className="text-base text-teal-600 font-semibold tracking-wide uppercase">
|
||||||
Mantic Markets
|
Manifold Markets
|
||||||
</h2>
|
</h2>
|
||||||
<p className="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
|
<p className="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
|
||||||
Better forecasting for everyone
|
Better forecasting for everyone
|
||||||
|
|
Loading…
Reference in New Issue
Block a user