/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import { Routes } from "@angular/router"; import { LandingComponent } from "./landing/landing.component.js"; export const routes: Routes = [ { path: "", pathMatch: "full", redirectTo: "/landing" }, { component: LandingComponent, path: "landing" }, ];