Skip to content

Commit

Permalink
fikset opp tekst til riktig sted
Browse files Browse the repository at this point in the history
  • Loading branch information
Myrstad committed Feb 16, 2024
1 parent 80c563d commit 38a5a27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/Pagination.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const { currentPage, url } = Astro.props as Props;
{
url?.prev && (
<RoundedButton
text="Nyere"
text="Forrige"
style="primary"
href={url.prev}
icon={{ name: 'fa-solid:arrow-left', side: 'left' }}
Expand All @@ -27,7 +27,7 @@ const { currentPage, url } = Astro.props as Props;
{
url?.next && (
<RoundedButton
text="Eldre"
text="Neste"
style="primary"
href={url.next}
icon={{ name: 'fa-solid:arrow-right', side: 'right' }}
Expand Down
4 changes: 2 additions & 2 deletions src/pages/innlegg/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ const frontmatter = entry.data;
<ArticleFooter
entry={entry}
prev={{
string: 'Forrige',
string: 'Nyere',
index: prevIndex,
icon: 'fa-solid:arrow-left',
side: 'left',
}}
next={{
string: 'Neste',
string: 'Eldre',
index: nextIndex,
icon: 'fa-solid:arrow-right',
side: 'right',
Expand Down

0 comments on commit 38a5a27

Please sign in to comment.