feat: Create initial landing page (CAS-8) (!11)

Co-authored-by: Phan Huy Tran <p.tran@neusta.de>
Reviewed-on: https://git.simonis.lol/projects/casino/pulls/11
Reviewed-by: Constantin Simonis <constantin@simonis.lol>
Reviewed-by: lziemke <lea.z4@schule.bremen.de>
This commit is contained in:
Huy 2025-02-12 07:43:05 +00:00
parent 35bfa3be7f
commit 2cd1c6d8fd
3 changed files with 15 additions and 1 deletions

View file

@ -1,3 +1,6 @@
import { Routes } from '@angular/router';
import {LandingPageComponent} from "./landing-page/landing-page.component";
export const routes: Routes = [];
export const routes: Routes = [
{ path: '', component: LandingPageComponent }
];

View file

@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-landing-page',
standalone: true,
imports: [],
templateUrl: './landing-page.component.html',
})
export class LandingPageComponent {
}