diff --git a/public/images/facebook.png b/public/images/facebook.png new file mode 100644 index 0000000..14cbe77 Binary files /dev/null and b/public/images/facebook.png differ diff --git a/public/images/instagram.png b/public/images/instagram.png new file mode 100644 index 0000000..b14d981 Binary files /dev/null and b/public/images/instagram.png differ diff --git a/public/images/logo.png b/public/images/logo.png new file mode 100644 index 0000000..827bfe2 Binary files /dev/null and b/public/images/logo.png differ diff --git a/public/images/youtube.png b/public/images/youtube.png new file mode 100644 index 0000000..fb7bae3 Binary files /dev/null and b/public/images/youtube.png differ diff --git a/src/app/footer/footer.html b/src/app/footer/footer.html index 28c0d7d..48fc948 100644 --- a/src/app/footer/footer.html +++ b/src/app/footer/footer.html @@ -1 +1,47 @@ -

footer works!

+
+
+
+ Logo +
+
+
Location
+
+
Tatabányai Multifunkcionális Csarnok
+
+ +
2800 Tatabánya, Olimpikon u.
+
+
+
+
+
Contact
+
+
Hungarian Badminton Association
+
+ +
iroda@badminton.hu
+
+
+ +
+36 30 329 5154
+
+
Badminton Europe
+
+ +
events@badmintoneurope.com
+
+
+
+
+
Follow us!
+
+ Facebook + Instagram + Youtube +
+
+
+ © Magyar Tollaslabda Szövetség +
+
+
diff --git a/src/app/footer/footer.ts b/src/app/footer/footer.ts index b290874..8c8c86a 100644 --- a/src/app/footer/footer.ts +++ b/src/app/footer/footer.ts @@ -1,8 +1,11 @@ import { Component } from '@angular/core'; +import { Marker } from '../marker/marker'; +import { Mail } from '../mail/mail'; +import { Phone } from '../phone/phone'; @Component({ selector: 'app-footer', - imports: [], + imports: [Marker, Mail, Phone], templateUrl: './footer.html', styleUrl: './footer.css', }) diff --git a/src/app/mail/mail.css b/src/app/mail/mail.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/mail/mail.html b/src/app/mail/mail.html new file mode 100644 index 0000000..c285ea8 --- /dev/null +++ b/src/app/mail/mail.html @@ -0,0 +1,10 @@ + + + diff --git a/src/app/mail/mail.spec.ts b/src/app/mail/mail.spec.ts new file mode 100644 index 0000000..7cb47af --- /dev/null +++ b/src/app/mail/mail.spec.ts @@ -0,0 +1,22 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { Mail } from './mail'; + +describe('Mail', () => { + let component: Mail; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [Mail], + }).compileComponents(); + + fixture = TestBed.createComponent(Mail); + component = fixture.componentInstance; + await fixture.whenStable(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/mail/mail.ts b/src/app/mail/mail.ts new file mode 100644 index 0000000..a7f927e --- /dev/null +++ b/src/app/mail/mail.ts @@ -0,0 +1,9 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-mail', + imports: [], + templateUrl: './mail.html', + styleUrl: './mail.css', +}) +export class Mail {} diff --git a/src/app/marker/marker.html b/src/app/marker/marker.html index 952803f..4759cd3 100644 --- a/src/app/marker/marker.html +++ b/src/app/marker/marker.html @@ -1,6 +1,7 @@ diff --git a/src/app/phone/phone.css b/src/app/phone/phone.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/phone/phone.html b/src/app/phone/phone.html new file mode 100644 index 0000000..cee673b --- /dev/null +++ b/src/app/phone/phone.html @@ -0,0 +1,10 @@ + + + diff --git a/src/app/phone/phone.spec.ts b/src/app/phone/phone.spec.ts new file mode 100644 index 0000000..579acf8 --- /dev/null +++ b/src/app/phone/phone.spec.ts @@ -0,0 +1,22 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { Phone } from './phone'; + +describe('Phone', () => { + let component: Phone; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [Phone], + }).compileComponents(); + + fixture = TestBed.createComponent(Phone); + component = fixture.componentInstance; + await fixture.whenStable(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/phone/phone.ts b/src/app/phone/phone.ts new file mode 100644 index 0000000..82b95ca --- /dev/null +++ b/src/app/phone/phone.ts @@ -0,0 +1,9 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-phone', + imports: [], + templateUrl: './phone.html', + styleUrl: './phone.css', +}) +export class Phone {}