fix: console errors - null crash, 404s und fehlende Bilder
- account.ts: null-Guard vor normalizeUser() wenn kein User im LocalStorage - index.html: plain-JS Dateien (cart, booking, checkout, main) von dist/ auf src/ umgestellt - index.html: dolby.png -> Dolby.png und dbox.png -> dbox.jpg (falsche Dateinamen) - style.css: placeholder-Bilder auf vorhandene Dateien umgestellt (shelter.jpg, dbox.jpg, popcorn.jpg) - Projekt-Setup (package.json, tsconfig.json, src/) initial commitet Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -2902,15 +2902,15 @@ body {
|
||||
}
|
||||
|
||||
.inline-halls .inline-media {
|
||||
background-image: linear-gradient(120deg, rgba(0, 113, 227, 0.3), rgba(7, 10, 16, 0.55)), url('img/placeholder-hall.jpg');
|
||||
background-image: linear-gradient(120deg, rgba(0, 113, 227, 0.3), rgba(7, 10, 16, 0.55)), url('img/shelter.jpg');
|
||||
}
|
||||
|
||||
.inline-dbox .inline-media {
|
||||
background-image: linear-gradient(120deg, rgba(255, 176, 0, 0.2), rgba(8, 12, 18, 0.62)), url('img/placeholder-dbox.jpg');
|
||||
background-image: linear-gradient(120deg, rgba(255, 176, 0, 0.2), rgba(8, 12, 18, 0.62)), url('img/dbox.jpg');
|
||||
}
|
||||
|
||||
.inline-collectors .inline-media {
|
||||
background-image: linear-gradient(120deg, rgba(185, 124, 255, 0.15), rgba(8, 12, 18, 0.62)), url('img/placeholder-collector.jpg');
|
||||
background-image: linear-gradient(120deg, rgba(185, 124, 255, 0.15), rgba(8, 12, 18, 0.62)), url('img/popcorn.jpg');
|
||||
}
|
||||
|
||||
.inline-content {
|
||||
|
||||
Reference in New Issue
Block a user