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; - - beforeEach(async() => { - await TestBed.configureTestingModule({ - imports: [ Bulletin ], - }). - compileComponents(); - - fixture = TestBed.createComponent(Bulletin); - component = fixture.componentInstance; - await fixture.whenStable(); - }); - - it("should create", () => { - expect.assertions(1); - expect(component, "did not compile").toBeTruthy(); - }); -}); diff --git a/src/app/bulletin/bulletin.ts b/src/app/bulletin/bulletin.ts deleted file mode 100644 index 0044d09..0000000 --- a/src/app/bulletin/bulletin.ts +++ /dev/null @@ -1,19 +0,0 @@ -/** - * @copyright NHCarrigan - * @license Naomi's Public License - * @author Naomi Carrigan - */ -import { Component } from "@angular/core"; - -/** - * Renders the bulletin page. - */ -@Component({ - imports: [], - selector: "app-bulletin", - styleUrl: "./bulletin.css", - templateUrl: "./bulletin.html", -}) -export class Bulletin { - -} diff --git a/src/app/nav/nav.html b/src/app/nav/nav.html index 95a9c35..95c1f98 100644 --- a/src/app/nav/nav.html +++ b/src/app/nav/nav.html @@ -14,7 +14,6 @@