A loading placeholder for a sidebar navigation, with a logo header, a list of icon-and-label nav rows, and a user profile row at the bottom.
import { Skeleton16 } from "@/components/ui/skeleton-16"; export default function Default() { return ( <div className="flex min-h-[420px] w-full items-center justify-center bg-background p-8"> <Skeleton16 /> </div> ); }