Added new pages with fitting content: skyblock, custom features, guide book, ranks, commandlist, reducing lag, staff powers

This commit is contained in:
Peter
2025-05-30 22:19:36 +02:00
parent c4c17b3adc
commit 20dcebbab9
35 changed files with 2272 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
import {Component} from '@angular/core';
import {HeaderComponent} from "../header/header.component";
import {RouterLink} from '@angular/router';
import {ALTITUDE_VERSION} from '../constant';
@Component({
selector: 'app-guide',
imports: [
HeaderComponent,
RouterLink
],
templateUrl: './guide.component.html',
styleUrl: './guide.component.scss'
})
export class GuideComponent {
protected readonly ALTITUDE_VERSION = ALTITUDE_VERSION;
}