diff --git a/html/kidsai/index.html b/html/kidsai/index.html index 1e08b0d..a3db348 100755 --- a/html/kidsai/index.html +++ b/html/kidsai/index.html @@ -3,7 +3,7 @@ - KidsAI Explorer - Think, Learn, Discover! + KidsAI Explorer - Think, Learn, and Discover! @@ -15,6 +15,7 @@ + @@ -23,6 +24,9 @@ + + +
@@ -38,11 +42,11 @@
- -

Hi there, young explorer! 🚀

-

I'm here to help you become a super smart problem solver! Instead of giving you answers, I'll help you think like a detective and find solutions yourself!

+

Hello, young explorer! 🚀

+

Welcome! I'm here to help you explore and understand the world. Let's think together and find answers step by step!

- +
@@ -105,31 +109,31 @@
-

Popular Questions from Other Young Explorers

+

Questions from Other Curious Kids

-
+
☀️ -

Why do we have different seasons?

+

Why do we have seasons?

-
+
🕊️ -

How do birds fly?

+

How do birds stay in the air?

-
+
💧 -

Why is water wet?

+

What makes water feel wet?

💻

How do computers work?

-
+
🌙 -

Why do we dream?

+

Why do people dream?

-
+
🌈 -

How do rainbows form?

+

How are rainbows created?

@@ -137,11 +141,8 @@ @@ -155,60 +156,11 @@

Thinking of the best way to help you explore...

- - + + - - - diff --git a/html/kidsai/loading-handler.js b/html/kidsai/loading-handler.js new file mode 100644 index 0000000..dc802e6 --- /dev/null +++ b/html/kidsai/loading-handler.js @@ -0,0 +1,20 @@ +// Loading screen handler +console.log('📜 Loading handler script loaded'); + +// Hide loading immediately when this script runs +document.addEventListener('DOMContentLoaded', function() { + const loading = document.getElementById('loading'); + if (loading) { + loading.style.display = 'none'; + loading.classList.add('hidden'); + } +}); + +// Emergency fallback +setTimeout(function() { + const loading = document.getElementById('loading'); + if (loading) { + loading.style.display = 'none'; + loading.classList.add('hidden'); + } +}, 100);