/**
* Root loading state -- shown during route transitions.
* Renders a skeleton that matches the forum layout structure.
*/
export default function RootLoading() {
return (
{/* Heading skeleton */}
{/* Topic list skeleton */}
{Array.from({ length: 5 }, (_, i) => (
{/* Avatar placeholder */}
{/* Title */}
{/* Meta line */}
{/* Reply count */}
))}
Loading forum content
)
}