Added contact popup

This commit is contained in:
2025-11-21 00:18:58 -06:00
parent e8f99d2dd9
commit 79420ba7b7
2 changed files with 4 additions and 1 deletions

View File

@@ -124,4 +124,6 @@
</section> </section>
<app-footer /> <app-footer />
<app-contact-modal />
</div> </div>

View File

@@ -5,10 +5,11 @@ import { Feature } from './interfaces/feature';
import { Plan } from './interfaces/plan'; import { Plan } from './interfaces/plan';
import { Stat } from './interfaces/stat'; import { Stat } from './interfaces/stat';
import { Footer } from './components/footer/footer'; import { Footer } from './components/footer/footer';
import { ContactModal } from './contact-modal/contact-modal';
@Component({ @Component({
selector: 'app-root', selector: 'app-root',
imports: [CommonModule, Navigation, Footer], imports: [CommonModule, Navigation, Footer, ContactModal],
templateUrl: './app.html', templateUrl: './app.html',
styleUrl: './app.css' styleUrl: './app.css'
}) })