/** * Full-screen loading spinner rendered during SSR and initial hydration. * Uses inline SVG + styles because Tailwind may not be loaded yet on the server. * Respects the user's OS color scheme so dark-mode users don't get a white flash. */ export function DefaultSpinner() { return (
); }