Skip to content

Commit

Permalink
change order of items on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmartineau committed Apr 11, 2024
1 parent 4a8c7c2 commit 09eacb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/BlockLinks.astro
Expand Up @@ -2,7 +2,7 @@
import { fetchLinks } from '../fetching/links';
import Block from './Block.astro';
import LinkFeedItem from './LinkFeedItem.astro';
const links = await fetchLinks(6);
const links = await fetchLinks(4);
---

<Block title="Links" subtitle="Hand-picked hyperlinks">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Expand Up @@ -39,8 +39,8 @@ const slug = 'home';
<div class="zm-block-grid">
<BlockAbout />
<BlockBlog />
<BlockLinks />
<BlockProjects />
<BlockLinks />
<BlockMovies />
</div>
</div>
Expand Down

0 comments on commit 09eacb1

Please sign in to comment.