Tweak copy
This commit is contained in:
parent
7d8a87615a
commit
bad58652b8
|
@ -93,8 +93,7 @@ export default function Folds(props: {
|
||||||
|
|
||||||
<div className="mb-6 text-gray-500">
|
<div className="mb-6 text-gray-500">
|
||||||
Communities on Manifold are centered around a collection of
|
Communities on Manifold are centered around a collection of
|
||||||
markets. Follow a community to personalize your feed and receive
|
markets. Follow a community to personalize your feed!
|
||||||
relevant updates.
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<input
|
<input
|
||||||
|
|
|
@ -6,6 +6,7 @@ import { Page } from '../components/page'
|
||||||
import { FeedPromo } from '../components/feed-create'
|
import { FeedPromo } from '../components/feed-create'
|
||||||
import { Col } from '../components/layout/col'
|
import { Col } from '../components/layout/col'
|
||||||
import { useUser } from '../hooks/use-user'
|
import { useUser } from '../hooks/use-user'
|
||||||
|
import { SiteLink } from '../components/site-link'
|
||||||
|
|
||||||
export async function getStaticProps() {
|
export async function getStaticProps() {
|
||||||
const hotContracts = (await getHotContracts().catch(() => [])) ?? []
|
const hotContracts = (await getHotContracts().catch(() => [])) ?? []
|
||||||
|
@ -31,6 +32,12 @@ const Home = (props: { hotContracts: Contract[] }) => {
|
||||||
<Col className="items-center">
|
<Col className="items-center">
|
||||||
<Col className="max-w-3xl">
|
<Col className="max-w-3xl">
|
||||||
<FeedPromo hotContracts={hotContracts ?? []} />
|
<FeedPromo hotContracts={hotContracts ?? []} />
|
||||||
|
<p className="mt-6 text-gray-500">
|
||||||
|
View{' '}
|
||||||
|
<SiteLink href="/markets" className="font-bold text-gray-700">
|
||||||
|
all markets
|
||||||
|
</SiteLink>
|
||||||
|
</p>
|
||||||
</Col>
|
</Col>
|
||||||
</Col>
|
</Col>
|
||||||
</Page>
|
</Page>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user