Skip to content

Commit 8be974d

Browse files
add grafana, azure, ansible
1 parent d39784c commit 8be974d

File tree

7 files changed

+60
-0
lines changed

7 files changed

+60
-0
lines changed
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
selector: 'logo-ansible',
5+
templateUrl: './ansible.component.svg'
6+
})
7+
export class AnsibleComponent {}
Lines changed: 30 additions & 0 deletions
Loading
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
selector: 'logo-azure',
5+
templateUrl: './azure.component.svg'
6+
})
7+
export class AzureComponent {}
Lines changed: 2 additions & 0 deletions
Loading
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { Component } from '@angular/core';
2+
3+
@Component({
4+
selector: 'logo-grafana',
5+
templateUrl: './grafana.component.svg'
6+
})
7+
export class GrafanaComponent {}

projects/angular-techs-logos/src/lib/techs/techs-data.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ import { TiktokComponent } from './tiktok/tiktok.component';
139139
import { CobolComponent } from './cobol/cobol.component';
140140
import { FirefoxComponent } from './firefox/firefox.component';
141141
import { MaxComponent } from './max/max.component';
142+
import { AzureComponent } from './azure/azure.component';
143+
import { GrafanaComponent } from './grafana/grafana.component';
144+
import { AnsibleComponent } from './ansible/ansible.component';
142145

143146
export interface Tech {
144147
name: string;
@@ -287,4 +290,7 @@ export const techs: Tech[] = [
287290
{ name: 'Lua', icon: LuaComponent, url: 'https://www.lua.org' },
288291
{ name: 'Fortran', icon: FortranComponent, url: 'https://fortran-lang.org' },
289292
{ name: 'Cobol', icon: CobolComponent, url: 'https://en.wikipedia.org/wiki/COBOL' },
293+
{ name: 'Azure', icon: AzureComponent, url: 'https://azure.microsoft.com' },
294+
{ name: 'Grafana', icon: GrafanaComponent, url: 'https://grafana.com' },
295+
{ name: 'Ansible', icon: AnsibleComponent, url: 'https://www.ansible.com' },
290296
];

0 commit comments

Comments
 (0)