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:
parent
5ce483b23b
commit
a07f7a1f74
@ -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 }
|
||||
];
|
||||
|
11
frontend/src/app/landing-page/landing-page.component.ts
Normal file
11
frontend/src/app/landing-page/landing-page.component.ts
Normal 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 {
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user