19 lines
601 B
TypeScript
19 lines
601 B
TypeScript
|
|
import { Component } from '@angular/core';
|
|||
|
|
import { CommonModule } from '@angular/common';
|
|||
|
|
import { RouterLink } from '@angular/router';
|
|||
|
|
import { environment } from '../../../../environments/environment';
|
|||
|
|
|
|||
|
|
@Component({
|
|||
|
|
selector: 'app-public-offer',
|
|||
|
|
standalone: true,
|
|||
|
|
imports: [CommonModule, RouterLink],
|
|||
|
|
templateUrl: './public-offer.component.html',
|
|||
|
|
styleUrls: ['./public-offer.component.scss']
|
|||
|
|
})
|
|||
|
|
export class PublicOfferComponent {
|
|||
|
|
brandName = environment.brandName;
|
|||
|
|
domain = environment.domain;
|
|||
|
|
contactEmail = environment.contactEmail;
|
|||
|
|
isnovo = environment.theme === 'novo';
|
|||
|
|
}
|