Files
community-rule/app/(marketing)/loading.tsx
T
2026-05-26 06:59:52 -06:00

15 lines
440 B
TypeScript

/**
* Lightweight skeleton shown while the next marketing route streams. Matches
* the page background so navigations feel instant on the user's phone instead
* of stalling on the previous page until RSC payload arrives.
*/
export default function MarketingRouteLoading() {
return (
<div
className="min-h-screen w-full bg-[var(--color-surface-default-primary)]"
aria-busy="true"
aria-live="polite"
/>
);
}