All checks were successful
Build and Deploy / Build & Push (push) Successful in 1m6s
- WeekNav: add keydown listener for ArrowLeft/ArrowRight week nav - EmptyState: replace dev-facing "No data scraped yet" + npm commands with customer-friendly "Schedule not available yet" message Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
662 B
TypeScript
21 lines
662 B
TypeScript
export function EmptyState() {
|
|
return (
|
|
<div style={{
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
padding: "80px 24px",
|
|
gap: 12,
|
|
color: "var(--color-text-muted)",
|
|
}}>
|
|
<div style={{ fontSize: "2rem" }}>📅</div>
|
|
<div style={{ fontSize: "1rem", fontWeight: 600, color: "var(--color-text)" }}>Schedule not available yet</div>
|
|
<div style={{ fontSize: "0.85rem", textAlign: "center", lineHeight: 1.6 }}>
|
|
Park hours for this period haven't been published yet.<br />
|
|
Check back closer to your visit.
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|