Create an ai chatbot selection page for logged in users that has the same header and footer from the index.html
53fe820 verified | <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>FurryChat.ai - Introduction</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> | |
| <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> | |
| <script src="https://unpkg.com/three@0.132.2/build/three.min.js"></script> | |
| <script src="https://unpkg.com/@react-three/fiber@7.0.24/dist/react-three-fiber.js"></script> | |
| <script src="https://unpkg.com/@react-three/drei@8.0.2/dist/drei.umd.js"></script> | |
| <script src="https://unpkg.com/react@17.0.2/umd/react.production.min.js"></script> | |
| <script src="https://unpkg.com/react-dom@17.0.2/umd/react-dom.production.min.js"></script> | |
| <script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script> | |
| <style> | |
| .chat-container { | |
| height: calc(100vh - 180px); | |
| overflow-y: auto; | |
| scroll-behavior: smooth; | |
| } | |
| .message { | |
| max-width: 80%; | |
| animation: fadeIn 0.3s ease-in; | |
| } | |
| @keyframes fadeIn { | |
| from { opacity: 0; transform: translateY(10px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| .typing-indicator { | |
| display: inline-flex; | |
| align-items: center; | |
| } | |
| .typing-dot { | |
| width: 8px; | |
| height: 8px; | |
| border-radius: 50%; | |
| background-color: #9CA3AF; | |
| margin: 0 2px; | |
| animation: typing 1.4s infinite ease-in-out; | |
| } | |
| .typing-dot:nth-child(2) { | |
| animation-delay: 0.2s; | |
| } | |
| .typing-dot:nth-child(3) { | |
| animation-delay: 0.4s; | |
| } | |
| @keyframes typing { | |
| 0%, 60%, 100% { transform: translateY(0); } | |
| 30% { transform: translateY(-5px); } | |
| } | |
| ::-webkit-scrollbar { | |
| width: 6px; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| border-radius: 10px; | |
| } | |
| ::-webkit-scrollbar-thumb { | |
| background: #c5c5c5; | |
| border-radius: 10px; | |
| } | |
| ::-webkit-scrollbar-thumb:hover { | |
| background: #a8a8a8; | |
| } | |
| /* 3D Model Viewer Styles */ | |
| model-viewer { | |
| width: 100%; | |
| height: 100%; | |
| background-color: #f8fafc; | |
| border-radius: 10px; | |
| } | |
| .animation-controls { | |
| background: rgba(255, 255, 255, 0.9); | |
| padding: 15px; | |
| border-radius: 10px; | |
| margin-top: 10px; | |
| box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); | |
| } | |
| .animation-buttons { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 8px; | |
| margin-top: 10px; | |
| } | |
| .animation-btn { | |
| flex: 1; | |
| min-width: 80px; | |
| padding: 8px 12px; | |
| background: #3b82f6; | |
| color: white; | |
| border: none; | |
| border-radius: 6px; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| font-size: 12px; | |
| font-weight: 500; | |
| } | |
| .animation-btn:hover { | |
| background: #2563eb; | |
| } | |
| .animation-btn.active { | |
| background: #1d4ed8; | |
| } | |
| .upload-section { | |
| background: rgba(255, 255, 255, 0.9); | |
| padding: 15px; | |
| border-radius: 10px; | |
| margin-top: 10px; | |
| box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); | |
| } | |
| .upload-btn { | |
| display: block; | |
| width: 100%; | |
| padding: 10px; | |
| background: #10b981; | |
| color: white; | |
| border: none; | |
| border-radius: 8px; | |
| font-weight: bold; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| margin-top: 10px; | |
| } | |
| .upload-btn:hover { | |
| background: #059669; | |
| } | |
| .model-info { | |
| margin-top: 10px; | |
| font-size: 12px; | |
| text-align: center; | |
| color: #6b7280; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Hero Section with Vanta.js Background --> | |
| <div id="vanta-bg" class="absolute top-0 left-0 w-full h-screen z-0"></div> | |
| <div class="relative z-10"> | |
| <!-- Navigation --> | |
| <nav class="bg-white bg-opacity-90 backdrop-blur-sm shadow-sm py-4 px-6"> | |
| <div class="container mx-auto flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <img src="https://huggingface.co/spaces/Andrewbluebird/furry-tales-digital-whiskers/resolve/main/images/FurryChatLogo complete.png" alt="FurryChat Logo" class="w-[150px] h-[75px] rounded-lg"> | |
| </div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="IntroPage.html" class="text-blue-600 font-medium transition-colors">Home</a> | |
| <a href="characters.html" class="text-gray-600 hover:text-blue-600 transition-colors">Characters</a> | |
| <a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">Features</a> | |
| <a href="#" class="text-gray-600 hover:text-blue-600 transition-colors">About</a> | |
| </div> | |
| <a href="SignIn.html" class="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 transition-colors"> | |
| Login | |
| </a> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="py-20 px-4 relative"> | |
| <div class="container mx-auto text-center"> | |
| <h1 class="text-5xl md:text-6xl font-bold mb-6 text-gray-800">Where <span class="text-blue-600">Furry Friends</span> Come to Life</h1> | |
| <p class="text-xl md:text-2xl text-gray-600 max-w-4xl mx-auto mb-10"> | |
| AI-powered roleplay with your favorite anthropomorphic characters. Create, chat, and bond with your digital furry companions. | |
| </p> | |
| <div class="flex flex-col md:flex-row justify-center gap-4"> | |
| <a href="SignIn.html" class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-lg font-semibold transition-colors"> | |
| Login | |
| </a> | |
| <a href="#" class="bg-white hover:bg-gray-100 text-gray-800 px-8 py-3 rounded-lg font-semibold border border-gray-200 transition-colors"> | |
| Meet Our Characters | |
| </a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Featured Characters --> | |
| <section class="py-16 px-4"> | |
| <div class="container mx-auto"> | |
| <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Meet Our <span class="text-blue-600">Furry Pals</span></h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <!-- Character 1 --> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow"> | |
| <img src="http://static.photos/animals/640x360/1" alt="Luna the Wolf" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2 text-gray-800">Luna the Wolf</h3> | |
| <p class="text-gray-600 mb-4">Mystical and wise, Luna guides with ancestral knowledge.</p> | |
| <a href="#" class="inline-block text-blue-600 hover:text-blue-700 font-medium">Chat with Luna →</a> | |
| </div> | |
| </div> | |
| <!-- Character 2 --> | |
| <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow"> | |
| <img src="http://static.photos/animals/640x360/2" alt="Rex the Fox" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-2 text-gray-800">Rex the Fox</h3> | |
| <p class="text-gray-600 mb-4">Clever and playful, Rex always has a trick up his sleeve.</p> | |
| <a href="#" class="inline-block text-blue-600 hover:text-blue-700 font-medium">Chat with Rex →</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section (changed from Chat section) --> | |
| <section class="py-16 px-4"> | |
| <div class="container mx-auto"> | |
| <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Amazing <span class="text-blue-600">Features</span></h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="text-center"> | |
| <div class="bg-blue-100 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4"> | |
| <i data-feather="cpu" class="text-blue-600 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Advanced AI</h3> | |
| <p class="text-gray-600">Our characters learn and remember your preferences for more natural conversations.</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="bg-blue-100 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4"> | |
| <i data-feather="sliders" class="text-blue-600 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Customization</h3> | |
| <p class="text-gray-600">Create your own furry character with unique traits and personality.</p> | |
| </div> | |
| <div class="text-center"> | |
| <div class="bg-blue-100 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4"> | |
| <i data-feather="globe" class="text-blue-600 w-8 h-8"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-2">Multi-platform</h3> | |
| <p class="text-gray-600">Chat anywhere, anytime - web, mobile, and desktop apps available.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800 text-white mt-16 py-8"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center space-x-2"> | |
| <img src="https://huggingface.co/spaces/Andrewbluebird/furry-tales-digital-whiskers/resolve/main/images/FurryChatLogo complete.png" alt="FurryChat Logo" class="w-[150px] h-[75px] rounded-lg"> | |
| </div> | |
| <p class="text-gray-400">Perfect AI Furry roleplay haven powered by advanced artificial intelligence.</p> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Product</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Features</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Pricing</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">API</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Community</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Furry AI Gallery</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Furry AI Avatar Marketplace</a></li> | |
| <li><a href="https://discord.gg/NKaAqn5q" class="hover:text-white transition-colors">Discord server</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Company</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">About</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Blog</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Careers</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Support</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition-colors">Help Center</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Contact</a></li> | |
| <li><a href="#" class="hover:text-white transition-colors">Privacy Policy</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-700 mt-8 pt-6 text-center text-gray-400"> | |
| <p>© 2025 MultiForce Entertainment Technologies LTD. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| </div> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> |