2025-04-05 19:22:59 +00:00
|
|
|
import {Component} from '@angular/core';
|
2025-07-04 17:50:21 +00:00
|
|
|
import {ScrollService} from '@services/scroll.service';
|
2025-04-08 19:45:44 +00:00
|
|
|
import {CommonModule} from '@angular/common';
|
2025-07-04 17:50:21 +00:00
|
|
|
import {HeaderComponent} from '@header/header.component';
|
2025-04-08 19:45:44 +00:00
|
|
|
import {RouterLink} from '@angular/router';
|
2025-04-05 19:22:59 +00:00
|
|
|
|
|
|
|
|
@Component({
|
2025-04-08 19:45:44 +00:00
|
|
|
standalone: true,
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
HeaderComponent,
|
|
|
|
|
RouterLink
|
|
|
|
|
],
|
2025-04-05 19:22:59 +00:00
|
|
|
selector: 'app-rules',
|
|
|
|
|
templateUrl: './rules.component.html',
|
|
|
|
|
styleUrl: './rules.component.scss'
|
|
|
|
|
})
|
|
|
|
|
export class RulesComponent {
|
2025-04-06 15:29:52 +00:00
|
|
|
showExceptions: boolean = false;
|
|
|
|
|
|
2025-04-06 15:27:22 +00:00
|
|
|
constructor(public scrollService: ScrollService) {
|
|
|
|
|
}
|
2025-04-06 15:29:52 +00:00
|
|
|
|
|
|
|
|
public toggleExceptions() {
|
|
|
|
|
this.showExceptions = !this.showExceptions;
|
|
|
|
|
}
|
2025-04-05 19:22:59 +00:00
|
|
|
}
|