feat: add 404 page

This commit is contained in:
2025-07-04 15:50:56 -07:00
parent e614df8558
commit dcc3082f0f
5 changed files with 49 additions and 0 deletions

View File

@ -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: "**" },
];