2026-01-18 18:57:06 +04:00
|
|
|
|
<!-- novo VERSION - Modern Clean Footer -->
|
2026-07-05 00:38:21 +04:00
|
|
|
|
@if (isMarketplaceNovo) {
|
2026-07-02 02:22:00 +04:00
|
|
|
|
|
2026-01-18 18:57:06 +04:00
|
|
|
|
<footer class="novo-footer">
|
|
|
|
|
|
<div class="novo-footer-container">
|
|
|
|
|
|
<div class="novo-footer-top">
|
|
|
|
|
|
<div class="novo-footer-col">
|
|
|
|
|
|
<h4>{{ brandName }}</h4>
|
2026-02-26 23:09:20 +04:00
|
|
|
|
<p class="novo-footer-desc">{{ 'footer.description' | translate }}</p>
|
2026-01-18 18:57:06 +04:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-07-05 03:37:35 +04:00
|
|
|
|
@for (group of footerGroups(); track group.id) {
|
|
|
|
|
|
<div class="novo-footer-col">
|
|
|
|
|
|
@if (group.title) {
|
|
|
|
|
|
<h4>{{ group.title }}</h4>
|
|
|
|
|
|
}
|
|
|
|
|
|
<ul class="novo-footer-links">
|
|
|
|
|
|
@for (item of group.items; track item.id) {
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<a [routerLink]="item.route | langRoute">{{ item.label | translate }}</a>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
}
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
2026-01-18 18:57:06 +04:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="novo-footer-bottom">
|
|
|
|
|
|
<div class="novo-copyright">
|
|
|
|
|
|
<p>© {{ currentYear }} {{ brandName }}</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="novo-payment-icons">
|
|
|
|
|
|
<img src="/assets/images/mir-logo.svg" alt="МИР" loading="lazy" width="40" height="28" />
|
|
|
|
|
|
<img src="/assets/images/visa-logo.svg" alt="Visa" loading="lazy" width="40" height="28" />
|
2026-07-02 02:22:00 +04:00
|
|
|
|
<img src="/assets/images/mastercard-logo.svg" alt="Mastercard" loading="lazy" width="40" height="28" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</footer>
|
2026-07-05 00:38:21 +04:00
|
|
|
|
} @else if (isMarketplaceLavero) {
|
2026-07-02 02:22:00 +04:00
|
|
|
|
<!-- LAVERO VERSION -->
|
|
|
|
|
|
<footer class="lavero-footer">
|
|
|
|
|
|
<div class="lavero-footer-container">
|
|
|
|
|
|
<div class="lavero-footer-top">
|
|
|
|
|
|
<div class="lavero-footer-col lavero-footer-brand">
|
|
|
|
|
|
<div class="lavero-footer-logo">
|
|
|
|
|
|
<app-logo />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<p class="lavero-footer-desc">{{ 'footer.description' | translate }}</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-07-05 03:37:35 +04:00
|
|
|
|
@for (group of footerGroups(); track group.id) {
|
|
|
|
|
|
<div class="lavero-footer-col">
|
|
|
|
|
|
@if (group.title) {
|
|
|
|
|
|
<h4>{{ group.title }}</h4>
|
|
|
|
|
|
}
|
|
|
|
|
|
<ul class="lavero-footer-links">
|
|
|
|
|
|
@for (item of group.items; track item.id) {
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<a [routerLink]="item.route | langRoute">{{ item.label | translate }}</a>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
}
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
2026-07-02 02:22:00 +04:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="lavero-footer-bottom">
|
|
|
|
|
|
<div class="lavero-copyright">
|
|
|
|
|
|
<p>© {{ currentYear }} {{ brandName }}</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="lavero-payment-icons">
|
|
|
|
|
|
<img src="/assets/images/mir-logo.svg" alt="МИР" loading="lazy" width="40" height="28" />
|
|
|
|
|
|
<img src="/assets/images/visa-logo.svg" alt="Visa" loading="lazy" width="40" height="28" />
|
2026-01-18 18:57:06 +04:00
|
|
|
|
<img src="/assets/images/mastercard-logo.svg" alt="Mastercard" loading="lazy" width="40" height="28" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</footer>
|
|
|
|
|
|
} @else {
|
2026-02-14 01:28:08 +04:00
|
|
|
|
<!-- DEXAR VERSION - Redesigned -->
|
|
|
|
|
|
<footer class="dexar-footer">
|
|
|
|
|
|
<div class="dexar-footer-bg">
|
|
|
|
|
|
<div class="dexar-footer-container">
|
|
|
|
|
|
<div class="dexar-footer-top">
|
|
|
|
|
|
<div class="dexar-footer-logo">
|
2026-07-05 00:51:29 +04:00
|
|
|
|
<app-logo />
|
2026-02-14 01:28:08 +04:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="dexar-footer-columns">
|
2026-07-05 03:37:35 +04:00
|
|
|
|
@for (group of footerGroups(); track group.id) {
|
|
|
|
|
|
<div class="dexar-footer-col">
|
|
|
|
|
|
@if (group.title) {
|
|
|
|
|
|
<h4>{{ group.title }}</h4>
|
|
|
|
|
|
}
|
|
|
|
|
|
<ul>
|
|
|
|
|
|
@for (item of group.items; track item.id) {
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<a [routerLink]="item.route | langRoute">{{ item.label | translate }}</a>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
}
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}
|
2026-01-18 18:57:06 +04:00
|
|
|
|
|
2026-02-14 01:28:08 +04:00
|
|
|
|
<div class="dexar-footer-col">
|
2026-02-26 23:09:20 +04:00
|
|
|
|
<h4>{{ 'footer.payment' | translate }}</h4>
|
2026-02-14 01:28:08 +04:00
|
|
|
|
<div class="dexar-payment-logos">
|
|
|
|
|
|
<img src="/assets/images/mir-logo.svg" alt="МИР" loading="lazy" width="48" height="32" />
|
|
|
|
|
|
<img src="/assets/images/visa-logo.svg" alt="Visa" loading="lazy" width="48" height="32" />
|
|
|
|
|
|
<img src="/assets/images/mastercard-logo.svg" alt="Mastercard" loading="lazy" width="48" height="32" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-18 18:57:06 +04:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-02-14 01:28:08 +04:00
|
|
|
|
<div class="dexar-footer-bottom">
|
2026-02-26 23:09:20 +04:00
|
|
|
|
<p>© {{ currentYear }} {{ brandName }}. {{ 'footer.allRightsReserved' | translate }}</p>
|
2026-02-14 01:28:08 +04:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-18 18:57:06 +04:00
|
|
|
|
</div>
|
|
|
|
|
|
</footer>
|
|
|
|
|
|
}
|