Tweak copy

This commit is contained in:
Austin Chen 2022-03-24 22:53:12 -07:00
parent 7d8a87615a
commit bad58652b8
2 changed files with 8 additions and 2 deletions

View File

@ -93,8 +93,7 @@ export default function Folds(props: {
<div className="mb-6 text-gray-500">
Communities on Manifold are centered around a collection of
markets. Follow a community to personalize your feed and receive
relevant updates.
markets. Follow a community to personalize your feed!
</div>
<input

View File

@ -6,6 +6,7 @@ import { Page } from '../components/page'
import { FeedPromo } from '../components/feed-create'
import { Col } from '../components/layout/col'
import { useUser } from '../hooks/use-user'
import { SiteLink } from '../components/site-link'
export async function getStaticProps() {
const hotContracts = (await getHotContracts().catch(() => [])) ?? []
@ -31,6 +32,12 @@ const Home = (props: { hotContracts: Contract[] }) => {
<Col className="items-center">
<Col className="max-w-3xl">
<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>
</Page>