diff --git a/client/src/app/app.routes.ts b/client/src/app/app.routes.ts index a8fd309..cd7b836 100644 --- a/client/src/app/app.routes.ts +++ b/client/src/app/app.routes.ts @@ -6,7 +6,9 @@ import { Routes } from "@angular/router"; import { Home } from "./home/home.js"; +import { Soon } from "./soon/soon.js"; export const routes: Routes = [ { component: Home, path: "", pathMatch: "full" }, + { component: Soon, path: "**" }, ]; diff --git a/client/src/app/nav/nav.ts b/client/src/app/nav/nav.ts index 440ee93..fdae55f 100644 --- a/client/src/app/nav/nav.ts +++ b/client/src/app/nav/nav.ts @@ -1,3 +1,9 @@ +/** + * @copyright nhcarrigan + * @license Naomi's Public License + * @author Naomi Carrigan + */ + import { CommonModule } from "@angular/common"; import { Component } from "@angular/core"; diff --git a/client/src/app/soon/soon.css b/client/src/app/soon/soon.css new file mode 100644 index 0000000..fb675d8 --- /dev/null +++ b/client/src/app/soon/soon.css @@ -0,0 +1,15 @@ +.btn { + display: inline-block; + padding: 10px 20px; + background-color: var(--foreground); + color: var(--background); + text-decoration: none; + border-radius: 50px; + border: 2px solid white; +} + +.btn:hover { + background-color: var(--background); + color: var(--foreground); + transition: background-color 0.3s, color 0.3s; +} diff --git a/client/src/app/soon/soon.html b/client/src/app/soon/soon.html new file mode 100644 index 0000000..b6edae4 --- /dev/null +++ b/client/src/app/soon/soon.html @@ -0,0 +1,9 @@ +

Oh dear~!

+Hikari +

You appear to have become lost!

+

Either this feature is still under construction, or you have tried to go somewhere that does not exist.

+

Do not worry, I can guide you back. Where would you like to go?

+
+ Take me back! + Take me home! +
diff --git a/client/src/app/soon/soon.ts b/client/src/app/soon/soon.ts new file mode 100644 index 0000000..1b82b5e --- /dev/null +++ b/client/src/app/soon/soon.ts @@ -0,0 +1,17 @@ +/** + * @copyright nhcarrigan + * @license Naomi's Public License + * @author Naomi Carrigan + */ + +import { Component } from "@angular/core"; + +@Component({ + imports: [], + selector: "app-soon", + styleUrl: "./soon.css", + templateUrl: "./soon.html", +}) +export class Soon { + +}