2017-04-18 20:29:57 +03:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
|
|
|
|
|
@Component({
|
2017-05-06 14:52:41 +03:00
|
|
|
selector: 'ngx-footer',
|
2017-04-28 15:14:05 +03:00
|
|
|
styleUrls: ['./footer.component.scss'],
|
2017-04-18 20:29:57 +03:00
|
|
|
template: `
|
2020-02-28 17:33:24 +03:00
|
|
|
<span class="created-by">
|
|
|
|
|
Created with ♥ by <b><a href="https://akveo.page.link/8V2f" target="_blank">Akveo</a></b> 2019
|
|
|
|
|
</span>
|
2017-04-18 20:29:57 +03:00
|
|
|
<div class="socials">
|
2017-09-29 19:34:07 +03:00
|
|
|
<a href="#" target="_blank" class="ion ion-social-github"></a>
|
|
|
|
|
<a href="#" target="_blank" class="ion ion-social-facebook"></a>
|
|
|
|
|
<a href="#" target="_blank" class="ion ion-social-twitter"></a>
|
|
|
|
|
<a href="#" target="_blank" class="ion ion-social-linkedin"></a>
|
2017-04-18 20:29:57 +03:00
|
|
|
</div>
|
2017-04-21 17:23:44 +03:00
|
|
|
`,
|
2017-04-18 20:29:57 +03:00
|
|
|
})
|
2017-04-28 15:14:05 +03:00
|
|
|
export class FooterComponent {
|
2017-04-18 20:29:57 +03:00
|
|
|
}
|