#!/bin/bash # šŸš€ QUICK BLACKROAD STATUS CHECK... echo "\ud83d\ude80 QUICK BLACKROAD STATUS CHECK..." echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" # Test all components quickly echo "🧠 Lucidia:" curl -I -s https://blackroad.io/lucidia/ | head -1 echo -e "\nšŸ›”ļø Guardian:" curl -I -s https://blackroad.io/guardian/ | head -1 echo -e "\nšŸ“š Codex:" curl -I -s https://blackroad.io/codex/ | head -1 echo -e "\nšŸ” Login:" curl -I -s https://blackroad.io/login/ | head -1 echo -e "\nšŸ  Main Site:" curl -I -s https://blackroad.io/ | head -1 echo -e "\nšŸ“Š Dashboard:" curl -I -s https://blackroad.io/dashboard.html | head -1 # Quick success count echo -e "\nšŸŽÆ SUCCESS COUNT:" success=0 if curl -I -s https://blackroad.io/lucidia/ | grep -q "200"; then echo "āœ… Lucidia working" ((success++)) fi if curl -I -s https://blackroad.io/guardian/ | grep -q "200"; then echo "āœ… Guardian working" ((success++)) fi if curl -I -s https://blackroad.io/codex/ | grep -q "200"; then echo "āœ… Codex working" ((success++)) fi if curl -I -s https://blackroad.io/login/ | grep -q "200"; then echo "āœ… Login working" ((success++)) fi if curl -I -s https://blackroad.io/ | grep -q "200"; then echo "āœ… Main Site working" ((success++)) fi if curl -I -s https://blackroad.io/dashboard.html | grep -q "200"; then echo "āœ… Dashboard working" ((success++)) fi echo -e "\nšŸ† RESULT: $success/6 components online!" if [ $success -eq 6 ]; then echo -e "\nšŸŽ‰ COMPLETE SUCCESS! ALL BLACKROAD APPS WORKING!" elif [ $success -ge 4 ]; then echo -e "\nšŸŽ‰ MAJOR SUCCESS! Most apps working!" elif [ $success -ge 2 ]; then echo -e "\nšŸŽÆ Good progress! Core apps working!" else echo -e "\nšŸ”§ Still working on getting more online..." fi echo -e "\n🌐 Access your working components at:" if curl -I -s https://blackroad.io/lucidia/ | grep -q "200"; then echo " 🧠 https://blackroad.io/lucidia/" fi if curl -I -s https://blackroad.io/guardian/ | grep -q "200"; then echo " šŸ›”ļø https://blackroad.io/guardian/" fi if curl -I -s https://blackroad.io/codex/ | grep -q "200"; then echo " šŸ“š https://blackroad.io/codex/" fi if curl -I -s https://blackroad.io/login/ | grep -q "200"; then echo " šŸ” https://blackroad.io/login/" fi if curl -I -s https://blackroad.io/ | grep -q "200"; then echo " šŸ  https://blackroad.io/" fi if curl -I -s https://blackroad.io/dashboard.html | grep -q "200"; then echo " šŸ“Š https://blackroad.io/dashboard.html" fi