diff --git a/frontend/src/app/app.component.ts b/frontend/src/app/app.component.ts
index 19be632..5eb598f 100644
--- a/frontend/src/app/app.component.ts
+++ b/frontend/src/app/app.component.ts
@@ -15,29 +15,29 @@ import { MatButtonModule } from '@angular/material/button';
- Rome-based theatre company
- Reservations, confirmation, and entrance check-in
+ Laboratori teatrali & produzioni audio/visive
+ Direzione artistica a cura di Ernesto Estatico
@@ -50,12 +50,12 @@ import { MatButtonModule } from '@angular/material/button';
@@ -115,16 +115,12 @@ import { MatButtonModule } from '@angular/material/button';
text-decoration: none;
}
- .brand-mark {
- display: inline-grid;
- place-items: center;
- width: 48px;
- height: 48px;
- border-radius: 14px;
- background: linear-gradient(145deg, var(--azionelab-accent), var(--azionelab-accent-soft));
- color: #fff8f2;
- font-weight: 700;
- box-shadow: 0 14px 30px rgba(111, 40, 33, 0.18);
+ .brand-logo {
+ width: 58px;
+ height: 58px;
+ display: block;
+ object-fit: contain;
+ filter: drop-shadow(0 14px 30px rgba(111, 40, 33, 0.16));
}
.brand-text {
diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts
index 5ff2f8d..3e57c3b 100644
--- a/frontend/src/app/app.routes.ts
+++ b/frontend/src/app/app.routes.ts
@@ -9,10 +9,10 @@ import { ShowListPageComponent } from './pages/show-list-page.component';
export const appRoutes: Routes = [
{ path: '', component: HomePageComponent, title: 'AzioneLab' },
- { path: 'shows', component: ShowListPageComponent, title: 'Shows | AzioneLab' },
- { path: 'shows/:slug', component: ShowDetailPlaceholderPageComponent, title: 'Show detail | AzioneLab' },
- { path: 'performances/:id/book', component: BookingPlaceholderPageComponent, title: 'Book | AzioneLab' },
- { path: 'reservations/confirm', component: ReservationConfirmPageComponent, title: 'Confirm reservation | AzioneLab' },
+ { path: 'shows', component: ShowListPageComponent, title: 'Spettacoli | AzioneLab' },
+ { path: 'shows/:slug', component: ShowDetailPlaceholderPageComponent, title: 'Scheda spettacolo | AzioneLab' },
+ { path: 'performances/:id/book', component: BookingPlaceholderPageComponent, title: 'Prenotazione | AzioneLab' },
+ { path: 'reservations/confirm', component: ReservationConfirmPageComponent, title: 'Conferma prenotazione | AzioneLab' },
{ path: 'check-in', component: CheckInPlaceholderPageComponent, title: 'Check-in | AzioneLab' },
{ path: '**', redirectTo: '' },
];
diff --git a/frontend/src/app/pages/booking-placeholder-page.component.ts b/frontend/src/app/pages/booking-placeholder-page.component.ts
index ac99a7b..eb2704d 100644
--- a/frontend/src/app/pages/booking-placeholder-page.component.ts
+++ b/frontend/src/app/pages/booking-placeholder-page.component.ts
@@ -29,22 +29,22 @@ type ApiValidationErrors = Record
;
template: `
- Before you submit
- Reservations are activated only after email confirmation.
+ Prima di inviare
+ La prenotazione si attiva solo dopo la conferma via email.
- - Your confirmation link arrives at the email address you provide.
- - Seat availability is checked on the server before confirmation.
- - The QR code is generated only after the reservation becomes confirmed.
+ - Il link di conferma arriva all'indirizzo email che inserisci.
+ - La disponibilita' viene verificata sul server prima della conferma.
+ - Il QR code viene generato solo dopo la conferma della prenotazione.
@@ -57,11 +57,11 @@ type ApiValidationErrors = Record
;
mark_email_read
-
Reservation created
-
Check your email to confirm the booking and unlock the QR code for admission.
+
Richiesta inviata
+
Controlla la tua email per confermare la prenotazione e ottenere il QR code per l'ingresso.
- mail Open the confirmation email
- verified Confirm your reservation
+ mail Apri l'email di conferma
+ verified Conferma la tua prenotazione
@@ -69,16 +69,16 @@ type ApiValidationErrors = Record