Spaces:
Running
Running
Ctrl+K

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>RaznetSolutionsAI</title> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> <link rel="stylesheet" href="styles.css"> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> </head> <body class="gradient-bg text-gray-800 min-h-screen flex flex-col"> <header class="bg-white shadow p-4 flex justify-between items-center"> <div class="flex items-center space-x-4"> <img src="https://via.placeholder.com/40" alt="Logo" class="h-10 w-10"> <h1 class="text-2xl font-bold">RaznetSolutionsAI</h1> </div> <div class="relative"> <button id="menuButton" class="text-gray-600 hover:text-gray-800"> <svg class="h-6 w-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/> </svg> </button> <ul id="menu" class="menu"> <li class="px-4 py-2 hover:bg-gray-100 cursor-pointer">Home</li> <li class="px-4 py-2 hover:bg-gray-100 cursor-pointer">Profile</li> <li class="px-4 py-2 hover:bg-gray-100 cursor-pointer">Weather</li> <li class="px-4 py-2 hover:bg-gray-100 cursor-pointer">Logout</li> </ul> </div> </header> <main class="flex-grow p-4"> <section class="max-w-2xl mx-auto"> <h2 class="text-3xl font-semibold mb-4">What do you want to know?</h2> <p class="mb-6">Ask RaznetSolutionsAI anything - from tech tips to life advice, I'm here to help!</p> <div class="grid grid-cols-1 sm:grid-cols-2 gap-4 mb-6"> <button class="chat-bubble fade-in bg-white p-4 rounded-lg shadow hover:bg-gray-100" data-question="Explain quantum computing">Explain quantum computing<br><span class="text-sm text-gray-600">in simple terms</span></button> <button class="chat-bubble fade-in bg-white p-4 rounded-lg shadow hover:bg-gray-100" data-question="Creative dinner recipe">Creative dinner recipe<br><span class="text-sm text-gray-600">for tonight</span></button> <button class="chat-bubble fade-in bg-white p-4 rounded-lg shadow hover:bg-gray-100" data-question="Productivity tips">Productivity tips<br><span class="text-sm text-gray-600">to work smarter</span></button> <button class="chat-bubble fade-in bg-white p-4 rounded-lg shadow hover:bg-gray-100" data-question="Teach photosynthesis">Teach photosynthesis<br><span class="text-sm text-gray-600">like I'm 5</span></button> </div> <div class="bg-white p-4 rounded-lg shadow"> <div id="chatArea" class="h-64 overflow-y-auto mb-4 p-4 bg-gray-100 rounded"></div> <div class="flex space-x-2"> <input id="userInput" type="text" class="flex-grow p-2 border rounded" placeholder="Type your message..."> <button id="sendButton" class="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600">Send</button> </div> <input type="file" id="fileUpload" class="mt-2" accept=".csv,.json"> <canvas id="dataChart" class="mt-2 hidden"></canvas> <div class="mt-2 flex items-center"> <input id="agreeCheck" type="checkbox" class="mr-2"> <label for="agreeCheck" class="text-sm">By messaging RaznetSolutionsAI, you agree to our <a href="#" class="text-blue-500">Terms</a> and <a href="#" class="text-blue-500">Privacy Policy</a></label> </div> </div> </section> </main> <footer class="bg-white p-4 text-center"> <p>© 2025 RaznetSolutionsAI. All rights reserved.</p> </footer> <div id="settingsModal" class="modal"> <div class="modal-content"> <h2 class="text-xl font-semibold mb-4">Settings</h2> <label class="block mb-2"><input id="darkMode" type="checkbox" class="mr-2">Enable Dark Mode</label> <label class="block mb-4"><input id="notifications" type="checkbox" class="mr-2">Enable Notifications</label> <button id="closeSettings" class="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600">Save & Close</button> </div> </div> <div id="profileModal" class="profile-modal"> <div class="profile-content"> <h2 class="text-xl font-semibold mb-4">User Profile</h2> <p><strong>Name:</strong> John Doe</p> <p><strong>Email:</strong> [email protected]</p> <p><strong>Joined:</strong> August 15, 2025</p> <button id="closeProfile" class="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600 mt-4">Close</button> </div> </div> <div id="weatherModal" class="modal"> <div class="modal-content"> <h2 class="text-xl font-semibold mb-4">Current Weather</h2> <p id="weatherInfo">Loading...</p> <button id="closeWeather" class="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600 mt-4">Close</button> </div> </div> <script src="script.js"></script> </body> </html> - Initial Deployment
9aa70eb
verified