From 3cd46e116697436da802a0424bafa86204ba0dbb Mon Sep 17 00:00:00 2001 From: Lucas Lara Date: Thu, 29 May 2025 11:58:47 +0200 Subject: [PATCH] feat: implement page not found component with styled layout --- .../page-not-found/page-not-found.component.css | 16 ++++++++++++++++ .../page-not-found/page-not-found.component.html | 8 +++++++- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/ogWebconsole/src/app/shared/page-not-found/page-not-found.component.css b/ogWebconsole/src/app/shared/page-not-found/page-not-found.component.css index e69de29..b9b0ebb 100644 --- a/ogWebconsole/src/app/shared/page-not-found/page-not-found.component.css +++ b/ogWebconsole/src/app/shared/page-not-found/page-not-found.component.css @@ -0,0 +1,16 @@ +.main-container { + height: 100dvh; + display: grid; + place-content: center; +} + +.content-container { + padding: 4em; + border: 1px solid #3f51b5; + border-radius: 30px; +} + +.message { + font-size: 25px; + font-weight: 500; +} \ No newline at end of file diff --git a/ogWebconsole/src/app/shared/page-not-found/page-not-found.component.html b/ogWebconsole/src/app/shared/page-not-found/page-not-found.component.html index cc75e49..f611eb0 100644 --- a/ogWebconsole/src/app/shared/page-not-found/page-not-found.component.html +++ b/ogWebconsole/src/app/shared/page-not-found/page-not-found.component.html @@ -1 +1,7 @@ -

page-not-found works!

+
+
+
+ Page not found +
+
+
\ No newline at end of file