From 118f2225e991fad2872e1073eeccb8dbcdd5334d Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Sat, 8 Jan 2022 18:53:53 +0100 Subject: chore: fix 404 page grid --- src/pages/404.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') 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 = () => { {seo.error404.title} -
+
-

+

Sorry, it seems that the page you are looking for does not exist. {' '} @@ -26,7 +27,7 @@ const error404: NextPageWithLayout = () => { contact me with the necessary information so that I can fix the problem. -

+
); -- cgit v1.2.3