Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #13 from nitrotap/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
nitrotap authored Jun 7, 2023
2 parents 0f70438 + eaaf966 commit 7e4e8ad
Show file tree
Hide file tree
Showing 49 changed files with 1,713 additions and 623 deletions.
7 changes: 5 additions & 2 deletions client/src/app/about/about.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@ import { AboutPageRoutingModule } from './about-routing.module';

import { AboutPage } from './about.page';

import { NavComponent } from '../nav/nav.component';

@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
AboutPageRoutingModule
AboutPageRoutingModule,
NavComponent
],
declarations: [AboutPage]
})
export class AboutPageModule {}
export class AboutPageModule { }
62 changes: 36 additions & 26 deletions client/src/app/about/about.page.html
Original file line number Diff line number Diff line change
@@ -1,31 +1,41 @@
<ion-header>
<ion-header [translucent]="true">
<ion-toolbar>
<ion-title>
About Us
</ion-title>
<ion-title>About Us</ion-title>
</ion-toolbar>
</ion-header>

<ion-content>
<ion-list>
<ion-item *ngFor="let member of members">
<ion-avatar slot="start">
<img [src]="member.avatar" alt="{{ member.name }} Avatar">
</ion-avatar>
<ion-label>
<h2>{{ member.name }}</h2>
<p>Email: <a [href]="'mailto:'+member.email">{{ member.email }}</a></p>
<p>GitHub:
<a [href]="member.github" target="_blank" rel="noopener noreferrer">{{ member.github }}</a>
</p>
<p>LinkedIn:
<a [href]="member.linkedin" target="_blank" rel="noopener noreferrer">{{ member.linkedin }}</a>
</p>
<p>Personal Website:
<a [href]="member.website" target="_blank" rel="noopener noreferrer">{{ member.website }}</a>
</p>
<p>{{ member.bio }}</p>
</ion-label>
</ion-item>
</ion-list>
<ion-content [fullscreen]="true">

<app-nav></app-nav>
<ion-header>
<ion-toolbar>
<ion-title>
Project Contributors
</ion-title>
</ion-toolbar>
</ion-header>

<ion-content>
<ion-list>
<ion-item *ngFor="let member of members">
<ion-avatar slot="start">
<img [src]="member.avatar" alt="{{ member.name }} Avatar">
</ion-avatar>
<ion-label>
<h2>{{ member.name }}</h2>
<p>Email: <a [href]="'mailto:'+member.email">{{ member.email }}</a></p>
<p>GitHub:
<a [href]="member.github" target="_blank" rel="noopener noreferrer">{{ member.github }}</a>
</p>
<p>LinkedIn:
<a [href]="member.linkedin" target="_blank" rel="noopener noreferrer">{{ member.linkedin }}</a>
</p>
<p>Personal Website:
<a [href]="member.website" target="_blank" rel="noopener noreferrer">{{ member.website }}</a>
</p>
<p>{{ member.bio }}</p>
</ion-label>
</ion-item>
</ion-list>
</ion-content>
</ion-content>
8 changes: 8 additions & 0 deletions client/src/app/about/about.page.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
ion-card, ion-title, ion-card-subtitle {
--ion-item-border-color: #025E73;
--ion-item-background: #80A7BF;
--ion-text-color: #012E40;
overflow: visible;
color: black;
text-align: center;
}
4 changes: 4 additions & 0 deletions client/src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ const routes: Routes = [
path: 'task',
loadChildren: () => import('./task/task.module').then(m => m.TaskPageModule)
},
{
path: 'results',
loadChildren: () => import('./results/results.module').then( m => m.ResultsPageModule)
},



Expand Down
6 changes: 5 additions & 1 deletion client/src/app/education/education.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ import { EducationPageRoutingModule } from './education-routing.module';

import { EducationPage } from './education.page';

import { NavComponent } from '../nav/nav.component';


@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
EducationPageRoutingModule
EducationPageRoutingModule,
NavComponent
],
declarations: [EducationPage]
})
Expand Down
Loading

0 comments on commit 7e4e8ad

Please sign in to comment.