Skip to content

Commit

Permalink
feat(dashboard): change blocks order
Browse files Browse the repository at this point in the history
  • Loading branch information
Stéphane committed Oct 11, 2023
1 parent a01cb47 commit 6ed9884
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/pages/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ export const DashboardPage = memo(() => {
return (
<div>
<PageHeader title={t("page.dashboard.title")} />
<Space h="lg" />
<Space h={20} />
<RecentlyPlay />
<Space h={60} />
<RecentFavorites />
<Space h={60} />
<GenreList />
<Space h={60} />
<Flex align="baseline" gap={12}>
<Title order={2}>{t("page.trending.title")}</Title>
<Link to="/trending" className={classes.link}>
Expand All @@ -44,12 +50,6 @@ export const DashboardPage = memo(() => {
</Flex>
<Space h="lg" />
<Popular horizontal />
<Space h={60} />
<GenreList />
<Space h={60} />
<RecentFavorites />
<Space h={60} />
<RecentlyPlay />
</div>
);
});

0 comments on commit 6ed9884

Please sign in to comment.