diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-08 18:53:53 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-08 18:53:53 +0100 |
| commit | 118f2225e991fad2872e1073eeccb8dbcdd5334d (patch) | |
| tree | a51ccd2a72dc1783bfe1c2d19e50b432956de021 /src/pages | |
| parent | a223182e64e9dba8a79e0661c4e3bbdf453c515d (diff) | |
chore: fix 404 page grid
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/404.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pages/404.tsx b/src/pages/404.tsx index f98b371..2c20578 100644 --- a/src/pages/404.tsx +++ b/src/pages/404.tsx @@ -7,6 +7,7 @@ import { loadTranslation } from '@utils/helpers/i18n'; import { GetStaticProps, GetStaticPropsContext } from 'next'; import Head from 'next/head'; import Link from 'next/link'; +import styles from '@styles/pages/Page.module.scss'; const error404: NextPageWithLayout = () => { return ( @@ -15,9 +16,9 @@ const error404: NextPageWithLayout = () => { <title>{seo.error404.title}</title> <meta name="description" content={seo.error404.description} /> </Head> - <div> + <div className={`${styles.article} ${styles['article--no-comments']}`}> <PostHeader title={t`Page not found`} /> - <p> + <div className={styles.body}> <Trans> Sorry, it seems that the page you are looking for does not exist. </Trans>{' '} @@ -26,7 +27,7 @@ const error404: NextPageWithLayout = () => { <Link href="/contact/">contact me</Link> with the necessary information so that I can fix the problem. </Trans> - </p> + </div> </div> </> ); |
