import React, { useId } from 'react'; export function AuthSkeleton() { const id = useId().replace(/:/g, ''); const shimmerKeyframes = ` @keyframes shimmer-${id} { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } } `; const shimmer = { background: 'linear-gradient(90deg, var(--skeleton-base) 25%, var(--skeleton-shine) 50%, var(--skeleton-base) 75%)', backgroundSize: '800px 100%', animation: `shimmer-${id} 1.6s ease-in-out infinite`, borderRadius: '4px', } as React.CSSProperties; return ( <>