From 1a9f46ea37a9503f085b668b039e589969d76294 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Mon, 13 May 2024 15:03:49 +0200 Subject: [PATCH] introducing not found --- src/assets/css/pages/NotFound.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/assets/css/pages/NotFound.scss diff --git a/src/assets/css/pages/NotFound.scss b/src/assets/css/pages/NotFound.scss new file mode 100644 index 0000000..e38aecb --- /dev/null +++ b/src/assets/css/pages/NotFound.scss @@ -0,0 +1,13 @@ +.page-container--not-found { + @apply text-white text-center; + + h1 { + @apply text-8xl ; + } + h2 { + @apply text-3xl mb-6; + } + p { + @apply text-2xl; + } +}