changes: api integration,
components, styles, fontawesome icons added
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
<textarea name="message" class="form-input" placeholder="Your Message" required data-form-input></textarea>
|
||||
|
||||
<button class="form-btn" type="submit" disabled data-form-btn>
|
||||
<ion-icon name="paper-plane"></ion-icon>
|
||||
<i class="fa-regular fa-paper-plane"></i>
|
||||
<span>Send Message</span>
|
||||
</button>
|
||||
|
||||
|
||||
@@ -1,10 +1,19 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { BaseComponent } from '../base/base.component';
|
||||
import { CvService } from '../services/cv.service';
|
||||
import { ISideBar } from '../contact-sidebar/side-bar.model';
|
||||
|
||||
@Component({
|
||||
selector: 'app-contact',
|
||||
templateUrl: './contact.component.html',
|
||||
styleUrl: './contact.component.scss'
|
||||
})
|
||||
export class ContactComponent {
|
||||
export class ContactComponent extends BaseComponent<ISideBar> implements OnInit{
|
||||
constructor(svc: CvService){
|
||||
super(svc);
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.init();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user