Add Daily Trending section (daily-score for you.) Remove recently updated
This commit is contained in:
parent
57190e7876
commit
deb8397ee9
|
@ -106,9 +106,9 @@ export default function Home() {
|
||||||
|
|
||||||
const HOME_SECTIONS = [
|
const HOME_SECTIONS = [
|
||||||
{ label: 'Daily movers', id: 'daily-movers' },
|
{ label: 'Daily movers', id: 'daily-movers' },
|
||||||
|
{ label: 'Daily trending', id: 'daily-trending' },
|
||||||
{ label: 'Trending', id: 'score' },
|
{ label: 'Trending', id: 'score' },
|
||||||
{ label: 'New', id: 'newest' },
|
{ label: 'New', id: 'newest' },
|
||||||
{ label: 'Recently updated', id: 'recently-updated-for-you' },
|
|
||||||
]
|
]
|
||||||
|
|
||||||
export const getHomeItems = (groups: Group[], sections: string[]) => {
|
export const getHomeItems = (groups: Group[], sections: string[]) => {
|
||||||
|
@ -146,12 +146,12 @@ function renderSection(
|
||||||
if (id === 'daily-movers') {
|
if (id === 'daily-movers') {
|
||||||
return <DailyMoversSection key={id} userId={user?.id} />
|
return <DailyMoversSection key={id} userId={user?.id} />
|
||||||
}
|
}
|
||||||
if (id === 'recently-updated-for-you')
|
if (id === 'daily-trending')
|
||||||
return (
|
return (
|
||||||
<SearchSection
|
<SearchSection
|
||||||
key={id}
|
key={id}
|
||||||
label={label}
|
label={label}
|
||||||
sort={'last-updated'}
|
sort={'daily-score'}
|
||||||
pill="personal"
|
pill="personal"
|
||||||
user={user}
|
user={user}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user