Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>About - ChatGPT Clone</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| </head> | |
| <body class="bg-gray-900 text-white min-h-screen flex flex-col"> | |
| <custom-navbar></custom-navbar> | |
| <div class="container mx-auto px-4 py-12 relative z-10 flex-grow"> | |
| <div class="max-w-3xl mx-auto"> | |
| <h1 class="text-4xl font-bold mb-8 text-center">About ChatGPT Clone</h1> | |
| <div class="bg-gray-800 rounded-xl p-8 mb-8"> | |
| <h2 class="text-2xl font-bold mb-4 text-blue-400">What is this?</h2> | |
| <p class="mb-4 text-gray-300"> | |
| This is a fully functional ChatGPT clone that allows you to interact with OpenAI's GPT models | |
| using your own API key. It provides a clean, modern interface similar to the official ChatGPT | |
| experience. | |
| </p> | |
| <p class="mb-4 text-gray-300"> | |
| The application is built with modern web technologies including HTML, CSS (Tailwind), and | |
| JavaScript. It features a responsive design that works on all devices. | |
| </p> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8 mb-8"> | |
| <h2 class="text-2xl font-bold mb-4 text-blue-400">How to Use</h2> | |
| <ol class="list-decimal list-inside space-y-3 text-gray-300"> | |
| <li>Obtain an API key from <a href="https://platform.openai.com/" target="_blank" class="text-blue-400 hover:underline">OpenAI Platform</a></li> | |
| <li>Enter your API key in the configuration section on the home page</li> | |
| <li>Start chatting with the AI assistant by typing messages in the input field</li> | |
| <li>Your conversations are private and not stored on any servers</li> | |
| </ol> | |
| </div> | |
| <div class="bg-gray-800 rounded-xl p-8"> | |
| <h2 class="text-2xl font-bold mb-4 text-blue-400">Privacy & Security</h2> | |
| <p class="mb-4 text-gray-300"> | |
| Your API key is stored locally in your browser's localStorage and is never sent to any | |
| server except OpenAI's official API endpoints. We do not collect or store any of your | |
| conversation data. | |
| </p> | |
| <p class="text-gray-300"> | |
| This is an open-source project for educational purposes. You can view the source code | |
| on <a href="#" class="text-blue-400 hover:underline">GitHub</a>. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <custom-footer></custom-footer> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script>feather.replace();</script> | |
| </body> | |
| </html> |