diff --git a/web/pages/experimental/home/index.tsx b/web/pages/experimental/home/index.tsx index 08f502b6..f0352fb1 100644 --- a/web/pages/experimental/home/index.tsx +++ b/web/pages/experimental/home/index.tsx @@ -97,17 +97,10 @@ function SearchSection(props: { followed?: boolean }) { const { label, user, sort, yourBets, followed } = props - const href = `/home?s=${sort}` return ( - - {label}{' '} - + - - {group.name}{' '} - + - - Daily movers{' '} + + + + ) +} + +function SectionHeader(props: { label: string; href: string }) { + const { label, href } = props + + return ( + + + {label}{' '} - - + ) }