diff --git a/public/ARTI_1.jpg b/public/ARTI_1.jpg new file mode 100644 index 0000000..af34257 Binary files /dev/null and b/public/ARTI_1.jpg differ diff --git a/public/icons/envelope.svg b/public/icons/envelope.svg new file mode 100644 index 0000000..78bf1de --- /dev/null +++ b/public/icons/envelope.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/public/icons/linkedin.svg b/public/icons/linkedin.svg new file mode 100644 index 0000000..396bcb7 --- /dev/null +++ b/public/icons/linkedin.svg @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/public/icons/telephone.svg b/public/icons/telephone.svg new file mode 100644 index 0000000..679e8a9 --- /dev/null +++ b/public/icons/telephone.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/src/app/about-me/about-me.component.css b/src/app/about-me/about-me.component.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/about-me/about-me.component.html b/src/app/about-me/about-me.component.html new file mode 100644 index 0000000..6ac392e --- /dev/null +++ b/src/app/about-me/about-me.component.html @@ -0,0 +1,29 @@ +
+
+
Ja +
+
Wrocław
+ +
+
+ +
+
+ +
+
+ +
+
diff --git a/src/app/about-me/about-me.component.spec.ts b/src/app/about-me/about-me.component.spec.ts new file mode 100644 index 0000000..538d34d --- /dev/null +++ b/src/app/about-me/about-me.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AboutMeComponent } from './about-me.component'; + +describe('AboutMeComponent', () => { + let component: AboutMeComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [AboutMeComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(AboutMeComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/about-me/about-me.component.ts b/src/app/about-me/about-me.component.ts new file mode 100644 index 0000000..bcac009 --- /dev/null +++ b/src/app/about-me/about-me.component.ts @@ -0,0 +1,12 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-about-me', + standalone: true, + imports: [], + templateUrl: './about-me.component.html', + styleUrl: './about-me.component.css' +}) +export class AboutMeComponent { + +} diff --git a/src/app/app.component.html b/src/app/app.component.html index f9b3437..6041cbb 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,6 +1,7 @@ diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 46a5c19..0f2f204 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -1,11 +1,12 @@ import { Routes } from '@angular/router'; import { DashboardComponent } from './components/dashboard/dashboard.component'; import { AssetCalculatorComponent } from './asset-calculator/asset-calculator.component'; +import { AboutMeComponent } from './about-me/about-me.component'; export const routes: Routes = [ - { path: "", - title:"Kalkulator", - component: AssetCalculatorComponent }, + { path: "aboutMe", + title:"O mnie", + component: AboutMeComponent }, { path: "asset-calculator", title: "Kalkulator", component:AssetCalculatorComponent },