Spaces:
Running
Running
Update index.html
Browse files- index.html +41 -0
index.html
CHANGED
@@ -76,6 +76,47 @@
|
|
76 |
<div id="objectDescription" class="text-gray-700 mb-4"></div>
|
77 |
</div>
|
78 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
<script src="main.js" defer></script>
|
80 |
</body>
|
81 |
</html>
|
|
|
76 |
<div id="objectDescription" class="text-gray-700 mb-4"></div>
|
77 |
</div>
|
78 |
</div>
|
79 |
+
<div id="settingsModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center hidden z-50">
|
80 |
+
<div class="bg-white rounded-xl p-6 max-w-sm w-full mx-4">
|
81 |
+
<div class="flex justify-between items-center mb-6">
|
82 |
+
<h3 class="text-xl font-bold text-gray-800">Settings</h3>
|
83 |
+
<button id="closeSettingsModal" class="text-gray-500 hover:text-gray-800">
|
84 |
+
<i class="fas fa-times"></i>
|
85 |
+
</button>
|
86 |
+
</div>
|
87 |
+
|
88 |
+
<div class="space-y-4">
|
89 |
+
<div>
|
90 |
+
<h4 class="font-medium text-gray-800 mb-2">AR Preferences</h4>
|
91 |
+
<div class="space-y-2">
|
92 |
+
<label class="flex items-center space-x-3 cursor-pointer">
|
93 |
+
<input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500" data-setting="showHistorical" checked>
|
94 |
+
<span>Show historical information</span>
|
95 |
+
</label>
|
96 |
+
<label class="flex items-center space-x-3 cursor-pointer">
|
97 |
+
<input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500" data-setting="showMenus" checked>
|
98 |
+
<span>Show restaurant menus</span>
|
99 |
+
</label>
|
100 |
+
<label class="flex items-center space-x-3 cursor-pointer">
|
101 |
+
<input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500" data-setting="showNavigation">
|
102 |
+
<span>Show AR navigation guides</span>
|
103 |
+
</label>
|
104 |
+
</div>
|
105 |
+
</div>
|
106 |
+
<div>
|
107 |
+
<h4 class="font-medium text-gray-800 mb-2">AI Assistant</h4>
|
108 |
+
<div class="space-y-2">
|
109 |
+
<label class="flex items-center space-x-3 cursor-pointer">
|
110 |
+
<input type="checkbox" class="rounded text-indigo-600 focus:ring-indigo-500" data-setting="voiceResponses" checked>
|
111 |
+
<span>Voice responses</span>
|
112 |
+
</label>
|
113 |
+
</div>
|
114 |
+
</div>
|
115 |
+
</div>
|
116 |
+
</div>
|
117 |
+
</div>
|
118 |
+
<script src="main.js" defer></script>
|
119 |
+
</body>
|
120 |
<script src="main.js" defer></script>
|
121 |
</body>
|
122 |
</html>
|