in components/scene.tsx [76:82]
async function showMoons(moons: string[]) {
for (const moon of moons) {
triggerAnimation(moon);
// small delay to make the moons appear sequentially
await new Promise((resolve) => setTimeout(resolve, 100));
}
}