// pages.jsx — assembled Home + Subpage + Mobile (Tailwind for bespoke sections)
const HOME_STATIONS = [
{id: 'start', label: 'Start'},
{id: 'news', label: 'Aktuelles'},
{id: 'plan', label: 'Reise planen'},
{id: 'angebote', label: 'Angebote'},
{id: 'ablauf', label: 'So funktionierts'},
{id: 'zahlen', label: 'In Zahlen'},
{id: 'ueber', label: 'Über uns'},
{id: 'lines', label: 'Liniennetz'},
{id: 'karriere', label: 'Karriere'},
{id: 'stimmen', label: 'Stimmen'},
];
function HomePage() {
return (
);
}
// ─────────────────────────────────────────────────────────────
// SubPage — Angebot & Dienstleistung overview hub
// ─────────────────────────────────────────────────────────────
function SubPage() {
return (
, title: 'Velotransport', body: 'Ihr Velo darf unter gewissen Voraussetzungen mit — gültiges öV-Ticket inklusive.'},
{icon: , title: 'Handicap', body: 'Reisende mit eingeschränkter Mobilität sollen das Busnetz ohne Hürden nutzen können.'},
{icon: , title: 'Fundbüro', body: 'Fundgegenstände aus den Linienbussen können am Folgetag ab 9.30 Uhr abgeholt werden.'},
{icon: , title: 'Buswerbung', body: 'Wirkungsvolle Werbeplattform auf allen wichtigen Verkehrsachsen in Uri.'},
]}
/>
}
/>
);
}
// ─────────────────────────────────────────────────────────────
// Mobile homepage — same blocks, mobile chrome + adapted layout
// ─────────────────────────────────────────────────────────────
function HomePageMobile() {
return (
{/* Hero */}
Unterwegs mitAuto AG Uri
Ihr zuverlässiger Mobilitätspartner im Kanton Uri.
Mehr erfahren
{/* Sticky-ish Fahrplan widget overlapping */}
{/* Störungen banner */}
2 Störungen aktiv
Linien 402 & 108
{/* Quick links */}
Schnellzugriff
{[
{icon:
, title: 'Tickets'},
{icon:
, title: 'Linien'},
{icon:
, title: 'Fahrplan'},
{icon:
, title: 'Karriere'},
].map((c, i) => (
))}
{/* Stats inline (2 col) */}
{[
{icon:
, value: '28', unit: '', label: 'Linien'},
{icon:
, value: '180', unit: '', label: 'Haltestellen'},
{icon:
, value: '3', unit: 'Mio.', label: 'Fahrgäste / Jahr'},
{icon:
, value: '100', unit: '%', label: 'Pünktlichkeit'},
].map((s, i) => (
{s.icon}
{s.value}{s.unit}
{s.label}
))}
{/* Cards grid (horizontal scroll) */}
Spezialangebote
{[
{title: 'Gotthard-Rundfahrt', bg: 'bg-mountain-sunset'},
{title: 'Urnersee-Ticket', bg: 'bg-lake'},
{title: 'Schneespass', bg: 'bg-ski'},
].map((c, i) => (
))}
{/* News */}
{[
{date: '12. April', title: 'Neue Elektrobusse im Einsatz', bg: 'bg-bus-night'},
{date: '05. April', title: 'Fahrplanwechsel Sommer', bg: 'bg-mountain-day'},
].map((it, i) => (
))}
{/* Stops — metro-style how-it-works */}
{/* CTA - mobile */}
Jetzt bewerben
Werde Teil unseres Teams
Offene Stellen bei Auto AG Uri — vom Chauffeur bis zur Mechatronikerin.
Alle Jobs
{/* Footer compact */}
Ihr Mobilitätspartner im Kanton Uri — seit 1922.
© 2026 Auto AG Uri
);
}
Object.assign(window, { HomePage, SubPage, HomePageMobile, GruppenreisenPage, SaisonalePage, MGruppenreisenPage, MSaisonalePage });
// ─────────────────────────────────────────────────────────────
// Gruppenreisen page (desktop)
// ─────────────────────────────────────────────────────────────
function GruppenreisenPage() {
return (
, value: 'ab 10', label: 'Personen'},
{icon: , value: '−30 %', label: 'Gruppenrabatt'},
{icon: , value: '2 Werktage', label: 'Vorlaufzeit'},
{icon: , value: 'Schattdorf', label: 'AAGU-Schalter'},
]}
/>
, label: 'Telefon', value: '+41 41 874 72 72'},
{icon: , label: 'E-Mail', value: 'gruppen@aagu.ch'},
{icon: , label: 'Schalter', value: 'Ried 1, 6467 Schattdorf'},
]}
/>
}
/>
);
}
// ─────────────────────────────────────────────────────────────
// Saisonale Angebote / Schächentaler Höhenweg (desktop)
// ─────────────────────────────────────────────────────────────
function SaisonalePage() {
return (
, value: '4 Luftseilbahnen', label: 'Eggberge · Ruogig · Biel-Kinzig · Ratzi'},
{icon: , value: 'Linie 408', label: 'Flüelen – Linthal'},
{icon: , value: 'Mai – Okt', label: 'Saisonal'},
{icon: , value: 'flexibel', label: 'Berg- oder Talfahrt'},
]}
/>
}
/>
);
}
// ─────────────────────────────────────────────────────────────
// Mobile: Gruppenreisen
// ─────────────────────────────────────────────────────────────
function MGruppenreisenPage() {
return (
, value: 'ab 10', label: 'Personen'},
{icon: , value: '−30 %', label: 'Gruppenrabatt'},
{icon: , value: '2 Werktage',label: 'Vorlaufzeit'},
{icon: , value: 'Schattdorf',label: 'Schalter'},
]}/>
}
/>
);
}
// ─────────────────────────────────────────────────────────────
// Mobile: Saisonale Angebote / Schächentaler Höhenweg
// ─────────────────────────────────────────────────────────────
function MSaisonalePage() {
return (
, value: '4 Bahnen', label: 'Luftseilbahnen'},
{icon: , value: 'Linie 408', label: 'Flüelen – Linthal'},
{icon: , value: 'Mai–Okt', label: 'Saisonal'},
{icon: , value: 'flexibel', label: 'Route'},
]}/>
}
/>
);
}