Skip to content

Commit

Permalink
feat(pages/index): rename from 'Home' to 'Feed'
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaschiang committed May 4, 2021
1 parent f3ea186 commit 105f385
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import Feed from 'components/feed';
import usePage from 'lib/hooks/page';

export default function IndexPage(): JSX.Element {
usePage({ name: 'Home', login: true });
usePage({ name: 'Feed', login: true });

return (
<Page title='Home - Return of the Newsletter'>
<Page title='Feed - Return of the Newsletter'>
<div className='page'>
<NavBar />
<Feed />
Expand Down

0 comments on commit 105f385

Please sign in to comment.