Running Prettier in Project

This commit is contained in:
2023-10-14 19:17:28 -03:00
parent 3bdc66f8fb
commit b1b90f10d7
100 changed files with 18174 additions and 17212 deletions

View File

@@ -5,23 +5,27 @@
<section class="mb-2">
<!-- Twitter -->
<a class="btn footer-btn" href="https://twitter.com/NakazoneVitor">
<fa-icon class="input-div-icon"
[icon]="_twitterIcon">
<fa-icon class="input-div-icon" [icon]="_twitterIcon">
</fa-icon>
</a>
<!-- Linkedin -->
<a class="btn footer-btn" href="https://www.linkedin.com/in/vitor-hideyoshi/" role="button">
<fa-icon class="input-div-icon"
[icon]="_linkedinIcon">
<a
class="btn footer-btn"
href="https://www.linkedin.com/in/vitor-hideyoshi/"
role="button"
>
<fa-icon class="input-div-icon" [icon]="_linkedinIcon">
</fa-icon>
</a>
<!-- Github -->
<a class="btn footer-btn" href="https://github.com/HideyoshiNakazone" role="button">
<fa-icon class="input-div-icon"
[icon]="_githubIcon">
</fa-icon>
<a
class="btn footer-btn"
href="https://github.com/HideyoshiNakazone"
role="button"
>
<fa-icon class="input-div-icon" [icon]="_githubIcon"> </fa-icon>
</a>
</section>
<!-- Section: Social media -->
@@ -29,9 +33,11 @@
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3" style="background-color: #2E2E2E;">
<div class="text-center p-3" style="background-color: #2e2e2e">
© 2023 Copyright:
<a class="text-white" href="https://hideyoshi.com.br/">Hideyoshi Solutions</a>
<a class="text-white" href="https://hideyoshi.com.br/"
>Hideyoshi Solutions</a
>
</div>
<!-- Copyright -->
</footer>

View File

@@ -3,19 +3,19 @@ import { ComponentFixture, TestBed } from '@angular/core/testing';
import { FooterComponent } from './footer.component';
describe('FooterComponent', () => {
let component: FooterComponent;
let fixture: ComponentFixture<FooterComponent>;
let component: FooterComponent;
let fixture: ComponentFixture<FooterComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [FooterComponent]
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [FooterComponent],
});
fixture = TestBed.createComponent(FooterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
fixture = TestBed.createComponent(FooterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -1,11 +1,14 @@
import {Component} from '@angular/core';
import {faGithub, faLinkedinIn, faTwitter} from "@fortawesome/free-brands-svg-icons";
import { Component } from '@angular/core';
import {
faGithub,
faLinkedinIn,
faTwitter,
} from '@fortawesome/free-brands-svg-icons';
@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.css']
styleUrls: ['./footer.component.css'],
})
export class FooterComponent {
_githubIcon = faGithub;