Claude init file + div. improvements

This commit is contained in:
Patrick Müller
2026-05-02 14:29:23 +02:00
parent 8b0d1ca228
commit 55748260d0
11 changed files with 439 additions and 44 deletions
@@ -7,10 +7,16 @@ import {Component, OnInit} from '@angular/core';
})
export class LandingpageComponent implements OnInit {
constructor() {
}
copied = false;
ngOnInit(): void {
}
constructor() {}
ngOnInit(): void {}
copyUrl(): void {
navigator.clipboard.writeText('https://api.nachklang.art/calendar/events/public/ical').then(() => {
this.copied = true;
setTimeout(() => { this.copied = false; }, 2500);
});
}
}