diff --git a/src/app/about/about-page.component.html b/src/app/about/about-page.component.html
new file mode 100644
index 0000000..2f299c1
--- /dev/null
+++ b/src/app/about/about-page.component.html
@@ -0,0 +1,55 @@
+
+ Sobre
+
+
+
+
+
+ Sobre
+
+
+
+
+
+
+ Nome:
+
+
+ Aldo Bernardes Maciel
+
+
+
+
+ Email:
+
+
+ aldo-maciel@hotmail.com
+
+
+
+
+ Telefone:
+
+
+ (47) 99241 7414
+
+
+
+
+ Github
+
+
+ Linkedin
+
+
+
+
+ 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.
+
+
+
diff --git a/src/app/about/about-page.component.ts b/src/app/about/about-page.component.ts
new file mode 100644
index 0000000..94aab80
--- /dev/null
+++ b/src/app/about/about-page.component.ts
@@ -0,0 +1,8 @@
+import { Component } from '@angular/core';
+
+@Component({
+ selector: 'app-about',
+ templateUrl: 'about-page.component.html'
+})
+export class AboutPage {
+}
diff --git a/src/app/about/about.module.ts b/src/app/about/about.module.ts
new file mode 100644
index 0000000..fc35717
--- /dev/null
+++ b/src/app/about/about.module.ts
@@ -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 {
+}