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

18 lines
733 B
TypeScript
Raw Normal View History

2017-04-18 20:29:57 +03:00
import { Component } from '@angular/core';
@Component({
2017-04-28 15:14:05 +03:00
selector: 'footer',
styleUrls: ['./footer.component.scss'],
2017-04-18 20:29:57 +03:00
template: `
2017-04-26 12:25:54 +03:00
<span class="created-by">Created with by <b><a href="https://akveo.com" target="_blank">Akveo</a></b> 2017</span>
2017-04-18 20:29:57 +03:00
<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>
`,
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
}