mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 17:00:13 +01:00
18 lines
679 B
TypeScript
18 lines
679 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'base-footer',
|
||
|
|
styleUrls: ['./base-footer.component.scss'],
|
||
|
|
template: `
|
||
|
|
<span>Created with ♥ by <b>Akveo</b> 2017</span>
|
||
|
|
<div class="socials">
|
||
|
|
<a href="https://github.com/akveo" target="_blank" class="ion ion-social-github"></a>
|
||
|
|
<a href="https://www.facebook.com/akveo" target="_blank" class="ion ion-social-facebook"></a>
|
||
|
|
<a href="https://twitter.com/akveo_inc" target="_blank" class="ion ion-social-twitter"></a>
|
||
|
|
<a href="https://www.linkedin.com/company/akveo" target="_blank" class="ion ion-social-linkedin"></a>
|
||
|
|
</div>
|
||
|
|
`
|
||
|
|
})
|
||
|
|
export class BaseFooterComponent {
|
||
|
|
}
|