diff --git a/web/pages/home/index.tsx b/web/pages/home/index.tsx
index 59e793e9..f486fa4c 100644
--- a/web/pages/home/index.tsx
+++ b/web/pages/home/index.tsx
@@ -102,8 +102,8 @@ export default function Home() {
const HOME_SECTIONS = [
{ label: 'Daily movers', id: 'daily-movers' },
{ label: 'Trending', id: 'score' },
- { label: 'New', id: 'newest' },
{ label: 'New for you', id: 'new-for-you' },
+ { label: 'Recently updated', id: 'recently-updated-for-you' },
]
export const getHomeItems = (groups: Group[], sections: string[]) => {
@@ -149,6 +149,16 @@ function renderSection(
user={user}
/>
)
+ if (id === 'recently-updated-for-you')
+ return (
+
+ )
const sort = SORTS.find((sort) => sort.value === id)
if (sort)
return (
@@ -265,14 +275,6 @@ function DailyMoversSection(props: { userId: string | null | undefined }) {
)
}
-function SearchRow() {
- return (
-
-
-
- )
-}
-
function DailyStats(props: {
user: User | null | undefined
className?: string