From a07f7a1f74cd2c4bbb8a4f4d431ab3785f12d114 Mon Sep 17 00:00:00 2001 From: Huy Date: Wed, 12 Feb 2025 07:43:05 +0000 Subject: [PATCH] feat: Create initial landing page (CAS-8) (!11) Co-authored-by: Phan Huy Tran Reviewed-on: https://git.simonis.lol/projects/casino/pulls/11 Reviewed-by: Constantin Simonis Reviewed-by: lziemke --- frontend/src/app/app.routes.ts | 7 ++----- .../src/app/landing-page/landing-page.component.html | 0 .../src/app/landing-page/landing-page.component.ts | 11 +++++++++++ 3 files changed, 13 insertions(+), 5 deletions(-) create mode 100644 frontend/src/app/landing-page/landing-page.component.html create mode 100644 frontend/src/app/landing-page/landing-page.component.ts diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts index 36b5bb5..3a96b8f 100644 --- a/frontend/src/app/app.routes.ts +++ b/frontend/src/app/app.routes.ts @@ -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 } ]; diff --git a/frontend/src/app/landing-page/landing-page.component.html b/frontend/src/app/landing-page/landing-page.component.html new file mode 100644 index 0000000..e69de29 diff --git a/frontend/src/app/landing-page/landing-page.component.ts b/frontend/src/app/landing-page/landing-page.component.ts new file mode 100644 index 0000000..ed8aba1 --- /dev/null +++ b/frontend/src/app/landing-page/landing-page.component.ts @@ -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 { + +}