clean up stage 1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<!-- novo VERSION - Modern Clean Footer -->
|
||||
@if (isnovo) {
|
||||
@if (isMarketplaceNovo) {
|
||||
|
||||
<footer class="novo-footer">
|
||||
<div class="novo-footer-container">
|
||||
@@ -49,7 +49,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
} @else if (islavero) {
|
||||
} @else if (isMarketplaceLavero) {
|
||||
<!-- LAVERO VERSION -->
|
||||
<footer class="lavero-footer">
|
||||
<div class="lavero-footer-container">
|
||||
|
||||
@@ -18,18 +18,18 @@ export class FooterComponent {
|
||||
currentYear = new Date().getFullYear();
|
||||
|
||||
get brandName(): string {
|
||||
return this.uiRuntime.brandName();
|
||||
return this.uiRuntime.marketplaceName();
|
||||
}
|
||||
|
||||
get contactEmail(): string {
|
||||
return this.uiRuntime.contactEmail();
|
||||
}
|
||||
|
||||
get isnovo(): boolean {
|
||||
return this.uiRuntime.isNovo();
|
||||
get isMarketplaceNovo(): boolean {
|
||||
return this.uiRuntime.isMarketplaceVariant('novo');
|
||||
}
|
||||
|
||||
get islavero(): boolean {
|
||||
return this.uiRuntime.isLavero();
|
||||
get isMarketplaceLavero(): boolean {
|
||||
return this.uiRuntime.isMarketplaceVariant('lavero');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user