Skip to content

Commit

Permalink
fix: add 404 page
Browse files Browse the repository at this point in the history
  • Loading branch information
yougotwill committed Jul 9, 2024
1 parent 39f0f61 commit 4c9a8f4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions apps/staking/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
import { siteMetadata } from '@/lib/metadata';
import { ButtonDataTestId } from '@/testing/data-test-ids';
import { HomeIcon } from '@session/ui/icons/HomeIcon';
import { Button } from '@session/ui/ui/button';
import { useTranslations } from 'next-intl';
import Link from 'next/link';

export async function generateMetadata() {
return siteMetadata({
title: 'Page not found',
description: "Sorry! We couldn't find the page you were looking for.",
});
}

export default function NotFound() {
const dictionary = useTranslations('notFound');
return (
Expand Down

0 comments on commit 4c9a8f4

Please sign in to comment.