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

Co-authored-by: Phan Huy Tran <p.tran@neusta.de>
Reviewed-on: #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 committed by Jan-Marlon Leibl
parent 5ce483b23b
commit a07f7a1f74
Signed by: jleibl
GPG Key ID: E7B6F77BF5EDB6F7
3 changed files with 13 additions and 5 deletions

View File

@ -1,9 +1,6 @@
import { Routes } from '@angular/router';
import { LandingComponent } from './landing/landing.component';
import {LandingPageComponent} from "./landing-page/landing-page.component";
export const routes: Routes = [
{
path: '',
component: LandingComponent,
},
{ 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 {
}