This commit is contained in:
Tizian.Breuch
2025-08-13 23:06:27 +02:00
parent b33e800c10
commit 2da416ca1f
17 changed files with 365 additions and 340 deletions

View File

@@ -0,0 +1,13 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-landingpage',
imports: [],
templateUrl: './landingpage.component.html',
styleUrl: './landingpage.component.css',
})
export class LandingpageComponent {
onSubmit() {
console.log('Formular abgeschickt!');
}
}