From 79420ba7b738ede1026810c188c7c1050059e6fb Mon Sep 17 00:00:00 2001 From: Mark Schill Date: Fri, 21 Nov 2025 00:18:58 -0600 Subject: [PATCH] Added contact popup --- frontend/src/app/app.html | 2 ++ frontend/src/app/app.ts | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/app.html b/frontend/src/app/app.html index 10eaa10..c4b8b19 100644 --- a/frontend/src/app/app.html +++ b/frontend/src/app/app.html @@ -124,4 +124,6 @@ + + \ No newline at end of file diff --git a/frontend/src/app/app.ts b/frontend/src/app/app.ts index dcc0027..b6596f4 100644 --- a/frontend/src/app/app.ts +++ b/frontend/src/app/app.ts @@ -5,10 +5,11 @@ import { Feature } from './interfaces/feature'; import { Plan } from './interfaces/plan'; import { Stat } from './interfaces/stat'; import { Footer } from './components/footer/footer'; +import { ContactModal } from './contact-modal/contact-modal'; @Component({ selector: 'app-root', - imports: [CommonModule, Navigation, Footer], + imports: [CommonModule, Navigation, Footer, ContactModal], templateUrl: './app.html', styleUrl: './app.css' })