-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0cee6b7
commit 7d26e49
Showing
3 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<ion-toolbar> | ||
<ion-title class="ion-text-xl-capitalize" color="dark">Sobre</ion-title> | ||
</ion-toolbar> | ||
|
||
<ion-content [fullscreen]="true"> | ||
<ion-header collapse="condense"> | ||
<ion-toolbar> | ||
<ion-title size="large">Sobre</ion-title> | ||
</ion-toolbar> | ||
</ion-header> | ||
<ion-card> | ||
<ion-grid> | ||
<ion-row> | ||
<ion-col size="md"> | ||
Nome: | ||
</ion-col> | ||
<ion-col size="lg"> | ||
Aldo Bernardes Maciel | ||
</ion-col> | ||
</ion-row> | ||
<ion-row> | ||
<ion-col size="md"> | ||
Email: | ||
</ion-col> | ||
<ion-col size="lg"> | ||
[email protected] | ||
</ion-col> | ||
</ion-row> | ||
<ion-row> | ||
<ion-col size="md"> | ||
Telefone: | ||
</ion-col> | ||
<ion-col size="lg"> | ||
(47) 99241 7414 | ||
</ion-col> | ||
</ion-row> | ||
<ion-row> | ||
<ion-col size="2"> | ||
<a href="https://github.com/aldo-maciel">Github</a> | ||
</ion-col> | ||
<ion-col size="2"> | ||
<a href="https://www.linkedin.com/in/aldo-bernardes-maciel/">Linkedin</a> | ||
</ion-col> | ||
</ion-row> | ||
</ion-grid> | ||
<ion-card-content> | ||
Desenvolvedor de software com experiência em GWT, Angular, Java, Vue, React, JavaScript, CSS3, HTML5, | ||
NodeJS, NPM, Bower entre outras tecnologias, apaixonado por aprender novas tecnologias. | ||
Sempre pronto para ajudar as pessoas a atingir seus objetivos e cumprir suas expectativas. Trabalha muito | ||
bem em grupo ou individualmente com foco em qualidade e produtividade. Trabalhando diariamente para | ||
aperfeiçoar e atingir objetivos pessoais. Juntos, acredito que podemos tornar o mundo um lugar melhor, | ||
melhorando a vida das pessoal dia após dia. | ||
</ion-card-content> | ||
</ion-card> | ||
</ion-content> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-about', | ||
templateUrl: 'about-page.component.html' | ||
}) | ||
export class AboutPage { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { IonicModule } from '@ionic/angular'; | ||
import { RouterModule } from '@angular/router'; | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { FormsModule } from '@angular/forms'; | ||
|
||
import { AboutPage } from '@/app/about/about-page.component'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
IonicModule, | ||
CommonModule, | ||
FormsModule, | ||
RouterModule.forChild([ { path: '', component: AboutPage } ]) | ||
], | ||
declarations: [ AboutPage ] | ||
}) | ||
export class AboutPageModule { | ||
} |