diff --git a/ogWebconsole/src/app/components/page-not-found/page-not-found.component.spec.ts b/ogWebconsole/src/app/components/page-not-found/page-not-found.component.spec.ts
new file mode 100644
index 0000000..19ef971
--- /dev/null
+++ b/ogWebconsole/src/app/components/page-not-found/page-not-found.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { PageNotFoundComponent } from './page-not-found.component';
+
+describe('PageNotFoundComponent', () => {
+ let component: PageNotFoundComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ imports: [PageNotFoundComponent]
+ })
+ .compileComponents();
+
+ fixture = TestBed.createComponent(PageNotFoundComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/ogWebconsole/src/app/components/page-not-found/page-not-found.component.ts b/ogWebconsole/src/app/components/page-not-found/page-not-found.component.ts
new file mode 100644
index 0000000..8f00ee2
--- /dev/null
+++ b/ogWebconsole/src/app/components/page-not-found/page-not-found.component.ts
@@ -0,0 +1,12 @@
+import { Component } from '@angular/core';
+
+@Component({
+ selector: 'app-page-not-found',
+ standalone: true,
+ imports: [],
+ templateUrl: './page-not-found.component.html',
+ styleUrl: './page-not-found.component.css'
+})
+export class PageNotFoundComponent {
+
+}
diff --git a/ogWebconsole/src/custom-theme.scss b/ogWebconsole/src/custom-theme.scss
new file mode 100644
index 0000000..0bfb747
--- /dev/null
+++ b/ogWebconsole/src/custom-theme.scss
@@ -0,0 +1,37 @@
+
+// Custom Theming for Angular Material
+// For more information: https://material.angular.io/guide/theming
+@use '@angular/material' as mat;
+// Plus imports for other components in your app.
+
+// Include the common styles for Angular Material. We include this here so that you only
+// have to load a single css file for Angular Material in your app.
+// Be sure that you only ever include this mixin once!
+@include mat.core();
+
+// Define the palettes for your theme using the Material Design palettes available in palette.scss
+// (imported above). For each palette, you can optionally specify a default, lighter, and darker
+// hue. Available color palettes: https://material.io/design/color/
+$ogWebconsole-primary: mat.define-palette(mat.$indigo-palette);
+$ogWebconsole-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
+
+// The warn palette is optional (defaults to red).
+$ogWebconsole-warn: mat.define-palette(mat.$red-palette);
+
+// Create the theme object. A theme consists of configurations for individual
+// theming systems such as "color" or "typography".
+$ogWebconsole-theme: mat.define-light-theme((
+ color: (
+ primary: $ogWebconsole-primary,
+ accent: $ogWebconsole-accent,
+ warn: $ogWebconsole-warn,
+ ),
+ typography: mat.define-typography-config(),
+ density: 0
+));
+
+// Include theme styles for core and each component used in your app.
+// Alternatively, you can import and @include the theme mixins for each component
+// that you are using.
+@include mat.all-component-themes($ogWebconsole-theme);
+
diff --git a/ogWebconsole/src/index.html b/ogWebconsole/src/index.html
index 1fb912a..fbca062 100644
--- a/ogWebconsole/src/index.html
+++ b/ogWebconsole/src/index.html
@@ -6,8 +6,10 @@
+
+
-
+
diff --git a/ogWebconsole/src/styles.css b/ogWebconsole/src/styles.css
index 90d4ee0..c3ce9a1 100644
--- a/ogWebconsole/src/styles.css
+++ b/ogWebconsole/src/styles.css
@@ -1 +1,7 @@
/* You can add global styles to this file, and also import other style files */
+
+html, body { height: 100%;
+margin: 0;
+padding: 0;
+font-family: 'Roboto', sans-serif;
+}