feat: build out product directory

This commit is contained in:
2025-07-04 19:58:18 -07:00
parent dcc3082f0f
commit e5b77b8821
6 changed files with 718 additions and 0 deletions

View File

@ -6,9 +6,11 @@
import { Routes } from "@angular/router";
import { Home } from "./home/home.js";
import { Products } from "./products/products.js";
import { Soon } from "./soon/soon.js";
export const routes: Routes = [
{ component: Home, path: "", pathMatch: "full" },
{ component: Products, path: "products" },
{ component: Soon, path: "**" },
];