Added About and Team components with routing

This commit introduces new "About" and "Team" components, integrating them into the application and updating the routing module.
This commit is contained in:
Peter
2025-04-06 13:03:59 +02:00
parent 2eb619b253
commit 6e459767ed
11 changed files with 229 additions and 5 deletions
+44
View File
@@ -0,0 +1,44 @@
<ng-container>
<app-header [current_page]="'rules'" height="460px" background_image="/public/img/backgrounds/staff.png">
<div class="title" header-content>
<h1>Staffing Team</h1>
<h2>The team that makes Altitude happen. Your owners, admins, moderators, and trainees are all working together to
create Altitude, to create home. This is where the magic happens.</h2>
</div>
</app-header>
<main>
<section class="darkmodeSection">
<div class="container" style="padding: 50px 0 0 0; justify-content: center;">
<h2 class="sectionTitle">Management</h2>
<div class="member">
<img src="https://crafatar.com/avatars/55e46bc32a294c53850fdbd944dc5c5f?overlay"
alt="akastijn's Minecraft skin">
<h2>akastijn</h2>
<p>Owner</p>
</div>
<div class="member">
<img src="https://crafatar.com/avatars/0b06c1b9ae5845d5af60731e4c788dc8?overlay"
alt="akalexu's Minecraft skin">
<h2>akalexu</h2>
<p>Manager</p>
</div>
</div>
</section>
<section class="darkmodeSectionThree">
<div class="container" style="padding: 50px 0 0 0; justify-content: center;">
<h2 class="sectionTitle">Admins</h2>
</div>
</section>
<section class="darkmodeSection">
<div class="container" style="padding: 50px 0 0 0; justify-content: center;">
<h2 class="sectionTitle">Head Moderators</h2>
</div>
</section>
<section class="darkmodeSectionThree">
<div class="container" style="padding: 50px 0 0 0; justify-content: center;">
<h2 class="sectionTitle">Moderators</h2>
</div>
</section>
</main>
</ng-container>
+21
View File
@@ -0,0 +1,21 @@
.sectionTitle {
flex: 0 0 100%;
text-align: center;
padding-bottom: 20px;
font-size: 2em;
}
.member {
width: 33%;
min-width: 250px;
padding-bottom: 50px;
text-align: center;
}
.member img {
padding-bottom: 15px;
}
.member p {
font-family: 'opensans-bold', sans-serif;
}
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { TeamComponent } from './team.component';
describe('TeamComponent', () => {
let component: TeamComponent;
let fixture: ComponentFixture<TeamComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [TeamComponent]
})
.compileComponents();
fixture = TestBed.createComponent(TeamComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
+11
View File
@@ -0,0 +1,11 @@
import {Component} from '@angular/core';
@Component({
selector: 'app-team',
standalone: false,
templateUrl: './team.component.html',
styleUrl: './team.component.scss'
})
export class TeamComponent {
scrollService: any;
}