feat: Create initial landing page (CAS-8) #11
@ -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 }
|
||||
];
|
||||
|
@ -0,0 +1 @@
|
||||
<p>landing-page works!</p>
|
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