diff --git a/web/pages/experimental/home/index.tsx b/web/pages/experimental/home/index.tsx
index 5f7c91e9..144ef51c 100644
--- a/web/pages/experimental/home/index.tsx
+++ b/web/pages/experimental/home/index.tsx
@@ -2,9 +2,8 @@ import React, { ReactNode } from 'react'
import Router from 'next/router'
import {
AdjustmentsIcon,
- PlusSmIcon,
+ PencilAltIcon,
ArrowSmRightIcon,
- SearchIcon,
DotsHorizontalIcon,
} from '@heroicons/react/solid'
import clsx from 'clsx'
@@ -55,8 +54,6 @@ export default function Home() {
return (
-
-
@@ -65,6 +62,8 @@ export default function Home() {
+
+
{sections.map((item) => {
const { id } = item
if (id === 'daily-movers') {
@@ -91,13 +90,13 @@ export default function Home() {
)
@@ -163,7 +162,7 @@ function GroupSection(props: {
buttonContent={
@@ -183,7 +182,7 @@ function GroupSection(props: {
defaultSort={'score'}
additionalFilter={{ groupSlug: group.slug }}
noControls
- maxResults={6}
+ maxResults={4}
persistPrefix={`experimental-home-${group.slug}`}
/>
@@ -217,15 +216,7 @@ function EditButton(props: { className?: string }) {
function SearchRow() {
return (
-
-
-
-
+
)
}