Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion locales/en.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
home:
categories:
newestTools: Newest tools

404:
notFound: '404 Not Found'
sorry: 'Sorry, this page does not seem to exist'
maybe: 'Maybe the cache is doing tricky things, try force-refreshing?'
backHome: 'Back home'
8 changes: 4 additions & 4 deletions src/pages/404.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ useHead({ title: 'Page not found - IT Tools' });
</span>

<h1 m-0 mt-3>
404 Not Found
{{ $t('404.notFound') }}
</h1>
<div mt-4 op-60>
Sorry, this page does not seem to exist
{{ $t('404.sorry') }}
</div>
<div mb-8 op-60>
Maybe the cache is doing tricky things, try force-refreshing?
{{ $t('404.maybe') }}
</div>

<c-button to="/">
Back home
{{ $t('404.backHome') }}
</c-button>
</div>
</template>