Remove extra column used for alignment on homepage

This commit is contained in:
Marshall Polaris 2022-05-11 15:07:48 -07:00
parent 73bbfc6e74
commit 3f669de99c

View File

@ -40,28 +40,21 @@ const Home = () => {
return (
<>
<Page assertUser="signed-in" suspend={!!contract}>
<Col className="items-center">
<Col className="w-full max-w-[700px]">
<Col className="mx-auto w-full max-w-[700px]">
<FeedCreate user={user ?? undefined} />
<Spacer h={2} />
<CategorySelector user={user} />
<Spacer h={1} />
{feed ? (
<ActivityFeed
feed={feed}
mode="only-recent"
getContractPath={(c) =>
`home?u=${c.creatorUsername}&s=${c.slug}`
}
getContractPath={(c) => `home?u=${c.creatorUsername}&s=${c.slug}`}
/>
) : (
<LoadingIndicator className="mt-4" />
)}
</Col>
</Col>
</Page>
{contract && (