Spaces:
Running
Running
Update index.html
Browse files- index.html +21 -0
index.html
CHANGED
@@ -86,6 +86,27 @@
|
|
86 |
<label class="flex items-center space-x-3 cursor-pointer"><input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500" data-setting="showMenus" checked><span>Show restaurant menus</span></label>
|
87 |
<label class="flex items-center space-x-3 cursor-pointer"><input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500" data-setting="showNavigation"><span>Show AR navigation guides</span></label>
|
88 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
</div>
|
90 |
<div>
|
91 |
<h4 class="font-medium text-gray-800 mb-2">AI Assistant</h4>
|
|
|
86 |
<label class="flex items-center space-x-3 cursor-pointer"><input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500" data-setting="showMenus" checked><span>Show restaurant menus</span></label>
|
87 |
<label class="flex items-center space-x-3 cursor-pointer"><input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500" data-setting="showNavigation"><span>Show AR navigation guides</span></label>
|
88 |
</div>
|
89 |
+
<div id="glassesModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center hidden z-50">
|
90 |
+
<div class="bg-gradient-to-br from-blue-900 to-indigo-700 rounded-xl p-6 max-w-sm w-full mx-4 text-white">
|
91 |
+
<div class="flex justify-between items-center mb-4">
|
92 |
+
<h3 class="text-xl font-bold">Pair Smart Glasses</h3>
|
93 |
+
<button id="closeGlassesModal" class="text-white hover:text-gray-300">
|
94 |
+
<i class="fas fa-times"></i>
|
95 |
+
</button>
|
96 |
+
</div>
|
97 |
+
<div class="text-center mb-6">
|
98 |
+
<div class="inline-block bg-white bg-opacity-20 rounded-full p-4 mb-4">
|
99 |
+
<i class="fas fa-glasses text-4xl"></i>
|
100 |
+
</div>
|
101 |
+
<p>Enable Bluetooth and select your device to enable hands-free AR navigation.</p>
|
102 |
+
</div>
|
103 |
+
<button id="pairBtn" class="w-full bg-white text-indigo-900 py-3 rounded-lg font-bold flex items-center justify-center hover:bg-gray-200">
|
104 |
+
<i class="fas fa-link mr-2"></i> Find and Pair Device
|
105 |
+
</button>
|
106 |
+
</div>
|
107 |
+
</div>
|
108 |
+
<script src="main.js" defer></script>
|
109 |
+
</body>
|
110 |
</div>
|
111 |
<div>
|
112 |
<h4 class="font-medium text-gray-800 mb-2">AI Assistant</h4>
|