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

Merged
ptran merged 2 commits from feature/create-landing-page into main 2025-02-12 07:43:06 +00:00
3 changed files with 16 additions and 1 deletions
Showing only changes of commit dd34a3e006 - Show all commits

View File

@ -1,3 +1,6 @@
import { Routes } from '@angular/router'; 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 @@
<p>landing-page works!</p>

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 {
}