"use client"; import { useEffect } from "react"; import Link from "next/link"; export default function ParkError({ error, reset }: { error: Error & { digest?: string }; reset: () => void }) { useEffect(() => { console.error(error); }, [error]); return (

Could not load this park

Try again in a moment, or head back to the calendar.

Back to calendar
); }