completionId: cgen-ed626ff2eb5f4e409e8544289b97d564

cgen-ed626ff2eb5f4e409e8544289b97d564
This commit is contained in:
Builder.io 2025-11-06 19:40:29 +00:00
parent f545ce3496
commit 7f4bc4eb37

View file

@ -100,17 +100,28 @@ export default function LoadingScreen({
{/* Animated Loading Bars */} {/* Animated Loading Bars */}
<div className="space-y-2"> <div className="space-y-2">
<div className="flex justify-center space-x-1"> <div className="flex justify-center space-x-1">
{[...Array(5)].map((_, i) => ( {[...Array(5)].map((_, i) => {
<div const colorMap: Record<string, string> = {
key={i} "from-yellow-500 to-yellow-400": "bg-yellow-400",
className="w-1 bg-aethex-400 rounded-full animate-pulse" "from-green-500 to-green-400": "bg-green-400",
style={{ "from-blue-500 to-blue-400": "bg-blue-400",
height: `${20 + i * 10}px`, "from-red-500 to-red-400": "bg-red-400",
animationDelay: `${i * 0.2}s`, "from-cyan-500 to-cyan-400": "bg-cyan-400",
animationDuration: "1s", "from-aethex-500 to-neon-blue": "bg-aethex-400",
}} };
/> const barColor = colorMap[accentColor] || "bg-aethex-400";
))} return (
<div
key={i}
className={`w-1 ${barColor} rounded-full animate-pulse`}
style={{
height: `${20 + i * 10}px`,
animationDelay: `${i * 0.2}s`,
animationDuration: "1s",
}}
/>
);
})}
</div> </div>
</div> </div>