This repository has been archived on 2025-06-12. You can view files and clone it, but cannot push or open issues or pull requests.
forms/client/src/app/app.routes.ts
Naomi Carrigan 56e2b391b2
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 1m15s
feat: add form for submitting testimonials
2025-02-20 15:40:31 -08:00

34 lines
1.4 KiB
TypeScript

/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { AppealComponent } from "./forms/appeal/appeal.component.js";
import { CommissionComponent }
from "./forms/commission/commission.component.js";
import { ContactComponent } from "./forms/contact/contact.component.js";
import { EventComponent } from "./forms/event/event.component.js";
import { MeetingComponent } from "./forms/meeting/meeting.component.js";
import { MentorshipComponent }
from "./forms/mentorship/mentorship.component.js";
import { StaffComponent } from "./forms/staff/staff.component.js";
import { TestimonialComponent }
from "./forms/testimonial/testimonial.component.js";
import { HomeComponent } from "./home/home.component.js";
import { ReviewComponent } from "./review/review.component.js";
import type { Routes } from "@angular/router";
export const routes: Routes = [
{ component: HomeComponent, path: "", pathMatch: "full" },
{ component: AppealComponent, path: "appeal" },
{ component: CommissionComponent, path: "commission" },
{ component: ContactComponent, path: "contact" },
{ component: EventComponent, path: "event" },
{ component: MeetingComponent, path: "meeting" },
{ component: MentorshipComponent, path: "mentorship" },
{ component: StaffComponent, path: "staff" },
{ component: ReviewComponent, path: "review" },
{ component: TestimonialComponent, path: "testimonial" },
];