ngx-admin/src/app/@theme/components/footer/footer.component.ts

20 lines
643 B
TypeScript
Raw Normal View History

2017-04-18 20:29:57 +03:00
import { Component } from '@angular/core';
@Component({
selector: 'ngx-footer',
2017-04-28 15:14:05 +03:00
styleUrls: ['./footer.component.scss'],
2017-04-18 20:29:57 +03:00
template: `
<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">
<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-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
}