-
Notifications
You must be signed in to change notification settings - Fork 0
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
FerranAD
committed
Nov 21, 2023
1 parent
7648a02
commit a4907b7
Showing
13 changed files
with
189 additions
and
2 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
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,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { Routes, RouterModule } from '@angular/router'; | ||
|
||
import { AboutPage } from './about.page'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
component: AboutPage | ||
} | ||
]; | ||
|
||
@NgModule({ | ||
imports: [RouterModule.forChild(routes)], | ||
exports: [RouterModule], | ||
}) | ||
export class AboutPageRoutingModule {} |
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,22 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { FormsModule } from '@angular/forms'; | ||
|
||
import { IonicModule } from '@ionic/angular'; | ||
|
||
import { AboutPageRoutingModule } from './about-routing.module'; | ||
|
||
import { AboutPage } from './about.page'; | ||
import {TranslateModule} from "@ngx-translate/core"; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
FormsModule, | ||
IonicModule, | ||
AboutPageRoutingModule, | ||
TranslateModule | ||
], | ||
declarations: [AboutPage] | ||
}) | ||
export class AboutPageModule {} |
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,37 @@ | ||
<ion-header [translucent]="true"> | ||
<ion-toolbar> | ||
<ion-buttons slot="start"> | ||
<ion-menu-button></ion-menu-button> | ||
</ion-buttons> | ||
<ion-title>{{'ABOUT.HEADER' | translate }}</ion-title> | ||
</ion-toolbar> | ||
</ion-header> | ||
|
||
<ion-content [fullscreen]="true" class="ion-padding"> | ||
<ion-header collapse="condense"> | ||
<ion-toolbar> | ||
<ion-title size="large">about</ion-title> | ||
</ion-toolbar> | ||
</ion-header> | ||
<ion-card> | ||
<ion-card-header> | ||
<ion-card-title> | ||
{{'ABOUT.CARDHEADER1' | translate}} | ||
</ion-card-title> | ||
<ion-card-content> | ||
{{'ABOUT.BODY' | translate}} | ||
</ion-card-content> | ||
<ion-card-title> | ||
{{'ABOUT.CARDHEADER2' | translate}} | ||
</ion-card-title> | ||
</ion-card-header> | ||
<ion-card-content> | ||
{{'ABOUT.BODY2' | translate}} | ||
<ion-button class="custom-button" expand="full" color="primary" href="https://github.com/RefuAPP/"> | ||
{{'ABOUT.LEARNMORE' | translate}} | ||
<ion-icon slot="end" name="logo-github"></ion-icon> | ||
</ion-button> | ||
</ion-card-content> | ||
<ion-img src="assets/img/aboutus-cartoon.jpg"></ion-img> | ||
</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,36 @@ | ||
ion-content { | ||
--background: var(--ion-background-color); | ||
} | ||
|
||
ion-card { | ||
margin: 20px; | ||
border-radius: 10px; | ||
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); | ||
transition: all 0.3s ease-in-out; | ||
} | ||
|
||
ion-card:hover { | ||
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); | ||
} | ||
|
||
ion-card-content { | ||
font-size: 18px; | ||
padding: 20px; | ||
} | ||
|
||
ion-img { | ||
height: 100%; | ||
padding: 5%; | ||
border-radius: 50px; | ||
object-fit: cover; | ||
} | ||
|
||
.custom-button { | ||
margin-top: 40px; | ||
white-space: normal; | ||
transition: all 0.3s ease-in-out; | ||
} | ||
|
||
.custom-button:hover { | ||
transform: scale(1.02); | ||
} |
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,17 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { AboutPage } from './about.page'; | ||
|
||
describe('AboutPage', () => { | ||
let component: AboutPage; | ||
let fixture: ComponentFixture<AboutPage>; | ||
|
||
beforeEach(async(() => { | ||
fixture = TestBed.createComponent(AboutPage); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
})); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
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,15 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-about', | ||
templateUrl: './about.page.html', | ||
styleUrls: ['./about.page.scss'], | ||
}) | ||
export class AboutPage implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
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
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.