diff --git a/web/components/layout/col.tsx b/web/components/layout/col.tsx
index 128b13f4..d5f005ca 100644
--- a/web/components/layout/col.tsx
+++ b/web/components/layout/col.tsx
@@ -1,7 +1,16 @@
import clsx from 'clsx'
+import { CSSProperties } from 'react'
-export function Col(props: { children?: any; className?: string }) {
- const { children, className } = props
+export function Col(props: {
+ children?: any
+ className?: string
+ style?: CSSProperties
+}) {
+ const { children, className, style } = props
- return
{children}
+ return (
+
+ {children}
+
+ )
}
diff --git a/web/pages/fold/[foldSlug]/index.tsx b/web/pages/fold/[foldSlug]/index.tsx
index 593a8199..a631a699 100644
--- a/web/pages/fold/[foldSlug]/index.tsx
+++ b/web/pages/fold/[foldSlug]/index.tsx
@@ -1,4 +1,5 @@
import _ from 'lodash'
+import Link from 'next/link'
import { Fold } from '../../../../common/fold'
import { Comment } from '../../../../common/comment'
import { Page } from '../../../components/page'
@@ -86,57 +87,77 @@ export default function FoldPage(props: {
} = props
const fold = useFold(props.fold.id) ?? props.fold
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+function FoldOverview(props: { fold: Fold; curator: User }) {
+ const { fold, curator } = props
const { tags, curatorId } = fold
const user = useUser()
const isCurator = user?.id === curatorId
return (
-
-
-
-
+
+
+ About community
+
+
+ {isCurator && (
+
+ Edit
+
+ )}
-
-
- Markets
-
- •
-
- Leaderboards
-
- •
-
- Curated by
-
-
- {isCurator && (
- <>
- •
-
- Edit
-
- >
- )}
-
-
-
-
- `#${tag}`)} />
-
-
-
-
+ Curated by
+
-
+
+
+
+
+ This is a community for predicting asdf asd fasdf asdf asdf .
+
+
+
+
+ `#${tag}`)} />
-
+
)
}