diff --git a/app/park/[id]/page.tsx b/app/park/[id]/page.tsx index 7588f43..ce9a635 100644 --- a/app/park/[id]/page.tsx +++ b/app/park/[id]/page.tsx @@ -131,7 +131,25 @@ export default async function ParkPage({ params, searchParams }: PageProps) { {/* ── Ride Status ─────────────────────────────────────────────────── */}
- + + via queue-times.com + + ) : undefined}> Rides {liveRides ? ( @@ -174,12 +192,12 @@ function formatShortDate(iso: string): string { // ── Sub-components ───────────────────────────────────────────────────────── -function SectionHeading({ children }: { children: React.ReactNode }) { +function SectionHeading({ children, aside }: { children: React.ReactNode; aside?: React.ReactNode }) { return (
{children} + {aside}
); } diff --git a/components/LiveRidePanel.tsx b/components/LiveRidePanel.tsx index 662594d..57f379b 100644 --- a/components/LiveRidePanel.tsx +++ b/components/LiveRidePanel.tsx @@ -115,26 +115,6 @@ export function LiveRidePanel({ liveRides, parkOpenToday }: LiveRidePanelProps) {closedRides.map((ride) => )} - {/* ── Attribution ──────────────────────────────────────────────────── */} -
- Powered by{" "} - - Queue-Times.com - - {" "}· Updates every 5 minutes -
); }