diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index b5e7da2..975db7c 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -4,7 +4,6 @@ * @author Naomi Carrigan */ import { About } from "./about/about"; -import { Bulletin } from "./bulletin/bulletin"; import { Faq } from "./faq/faq"; import { Handbook } from "./handbook/handbook"; import { Home } from "./home/home"; @@ -16,7 +15,6 @@ export const routes: Routes = [ { component: Home, path: "", pathMatch: "full" }, { component: Handbook, path: "handbook" }, { component: About, path: "about" }, - { component: Bulletin, path: "bulletin" }, { component: Faq, path: "faq" }, { component: Reviews, path: "reviews" }, { component: Staff, path: "staff" }, diff --git a/src/app/bulletin/bulletin.css b/src/app/bulletin/bulletin.css deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/bulletin/bulletin.html b/src/app/bulletin/bulletin.html deleted file mode 100644 index 3f7fb8f..0000000 --- a/src/app/bulletin/bulletin.html +++ /dev/null @@ -1 +0,0 @@ -
bulletin works!
diff --git a/src/app/bulletin/bulletin.spec.ts b/src/app/bulletin/bulletin.spec.ts deleted file mode 100644 index 6bb1110..0000000 --- a/src/app/bulletin/bulletin.spec.ts +++ /dev/null @@ -1,29 +0,0 @@ -/** - * @copyright NHCarrigan - * @license Naomi's Public License - * @author Naomi Carrigan - */ -import { type ComponentFixture, TestBed } from "@angular/core/testing"; -import { describe, beforeEach, it, expect } from "vitest"; -import { Bulletin } from "./bulletin"; - -describe("bulletin", () => { - let component: Bulletin; - let fixture: ComponentFixture