23 lines
729 B
TypeScript
23 lines
729 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { Component } from '@angular/core';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { Router, RouterModule } from '@angular/router';
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
|
|
|
@Component({
|
|
selector: 'app-footer',
|
|
standalone: true,
|
|
imports: [CommonModule, FormsModule, RouterModule, FontAwesomeModule],
|
|
templateUrl: './footer.component.html',
|
|
styleUrl: './footer.component.scss',
|
|
})
|
|
export class FooterComponent {
|
|
privacyVisible = false;
|
|
termsVisible = false;
|
|
currentYear: number = new Date().getFullYear();
|
|
constructor(private router: Router) {}
|
|
ngOnInit() {
|
|
// Flowbite is now initialized once in AppComponent
|
|
}
|
|
}
|