feat: build dark fantasy application shell

This commit is contained in:
Bastian Wagner
2026-08-18 22:36:21 +02:00
parent 6304703d67
commit b9e5c66c8e
28 changed files with 633 additions and 362 deletions

View File

@@ -0,0 +1,14 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-world-page',
template: '<section class="world-route" aria-label="Weltansicht"></section>',
styles: [
`
.world-route {
min-block-size: 100%;
}
`,
],
})
export class WorldPageComponent {}