Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <link rel="icon" href="https://huggingface.co/spaces/vericudebuget/AIselector/resolve/main/icon.png"> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>AI Website Selector</title> | |
| <!-- Preconnect to external domains for faster resource loading --> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link rel="preconnect" href="https://cdnjs.cloudflare.com"> | |
| <link rel="preconnect" href="https://huggingface.co"> | |
| <!-- Load Google Fonts with <link> instead of @import --> | |
| <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet"> | |
| <style> | |
| :root { | |
| --primary-dark: #0a192f; | |
| --primary-light: #172a45; | |
| --accent: #64ffda; | |
| --text: #ccd6f6; | |
| --text-secondary: #8892b0; | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| font-family: 'Montserrat', sans-serif; | |
| } | |
| body { | |
| background-color: var(--primary-dark); | |
| color: var(--text); | |
| min-height: 100vh; | |
| padding: 2rem; | |
| } | |
| .container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| } | |
| header { | |
| text-align: center; | |
| margin-bottom: 3rem; | |
| } | |
| h1 { | |
| font-size: 2.5rem; | |
| margin-bottom: 1rem; | |
| color: var(--accent); | |
| } | |
| .grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |
| gap: 2rem; | |
| } | |
| .card { | |
| background-color: var(--primary-light); | |
| border-radius: 10px; | |
| padding: 1.5rem; | |
| transition: transform 0.3s ease, box-shadow 0.3s ease; | |
| cursor: pointer; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); | |
| } | |
| .card::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 4px; | |
| background: var(--accent); | |
| transform: scaleX(0); | |
| transition: transform 0.3s ease; | |
| } | |
| .card:hover::before { | |
| transform: scaleX(1); | |
| } | |
| .card-content { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 1rem; | |
| } | |
| .card-header { | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| } | |
| .icon { | |
| width: 40px; | |
| height: 40px; | |
| border-radius: 8px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| background-color: var(--primary-dark); | |
| } | |
| .icon i { | |
| font-size: 1.5rem; | |
| color: var(--accent); | |
| } | |
| .card h2 { | |
| font-size: 1.25rem; | |
| font-weight: 600; | |
| } | |
| .card p { | |
| color: var(--text-secondary); | |
| font-size: 0.9rem; | |
| line-height: 1.5; | |
| } | |
| .visit-btn { | |
| display: inline-block; | |
| padding: 0.75rem 1.5rem; | |
| background-color: transparent; | |
| border: 1px solid var(--accent); | |
| color: var(--accent); | |
| text-decoration: none; | |
| border-radius: 5px; | |
| font-weight: 500; | |
| transition: background-color 0.3s ease; | |
| text-align: center; | |
| margin-top: auto; | |
| } | |
| .visit-btn:hover { | |
| background-color: rgba(100, 255, 218, 0.1); | |
| } | |
| @media (max-width: 768px) { | |
| body { | |
| padding: 1rem; | |
| } | |
| h1 { | |
| font-size: 2rem; | |
| } | |
| .grid { | |
| grid-template-columns: 1fr; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <header> | |
| <h1>AI Website Selector</h1> | |
| <p>Choose your preferred AI platform</p> | |
| </header> | |
| <div class="grid"> | |
| <div class="card" onclick="window.location.href='https://www.hailuo.ai/'"> | |
| <div class="card-content"> | |
| <div class="card-header"> | |
| <div class="icon"> | |
| <i class="fas fa-robot"></i> | |
| </div> | |
| <h2>Hailuo AI</h2> | |
| </div> | |
| <p>Advanced AI platform for natural language processing and generation</p> | |
| <a href="https://www.hailuo.ai/" class="visit-btn">Visit Platform</a> | |
| </div> | |
| </div> | |
| <div class="card" onclick="window.location.href='https://chat.deepseek.com/'"> | |
| <div class="card-content"> | |
| <div class="card-header"> | |
| <div class="icon"> | |
| <i class="fas fa-brain"></i> | |
| </div> | |
| <h2>DeepSeek</h2> | |
| </div> | |
| <p>Intelligent conversational AI for deep learning and problem-solving</p> | |
| <a href="https://chat.deepseek.com/" class="visit-btn">Visit Platform</a> | |
| </div> | |
| </div> | |
| <div class="card" onclick="window.location.href='https://chatgpt.com/'"> | |
| <div class="card-content"> | |
| <div class="card-header"> | |
| <div class="icon"> | |
| <i class="fas fa-comment-dots"></i> | |
| </div> | |
| <h2>ChatGPT</h2> | |
| </div> | |
| <p>OpenAI's powerful language model for interactive conversations</p> | |
| <a href="https://chatgpt.com/" class="visit-btn">Visit Platform</a> | |
| </div> | |
| </div> | |
| <div class="card" onclick="window.location.href='https://claude.ai/new'"> | |
| <div class="card-content"> | |
| <div class="card-header"> | |
| <div class="icon"> | |
| <i class="fas fa-lightbulb"></i> | |
| </div> | |
| <h2>Claude</h2> | |
| </div> | |
| <p>Anthropic's advanced AI assistant for comprehensive task handling</p> | |
| <a href="https://claude.ai/new" class="visit-btn">Visit Platform</a> | |
| </div> | |
| </div> | |
| <div class="card" onclick="window.location.href='https://cloud.sambanova.ai/'"> | |
| <div class="card-content"> | |
| <div class="card-header"> | |
| <div class="icon"> | |
| <i class="fas fa-cloud"></i> | |
| </div> | |
| <h2>SambaNova</h2> | |
| </div> | |
| <p>Enterprise AI solutions for accelerated computing and ML</p> | |
| <a href="https://cloud.sambanova.ai/" class="visit-btn">Visit Platform</a> | |
| </div> | |
| </div> | |
| <div class="card" onclick="window.location.href='https://console.groq.com/playground'"> | |
| <div class="card-content"> | |
| <div class="card-header"> | |
| <div class="icon"> | |
| <i class="fas fa-microchip"></i> | |
| </div> | |
| <h2>Groq</h2> | |
| </div> | |
| <p>High-performance AI computing platform for rapid inference</p> | |
| <a href="https://console.groq.com/playground" class="visit-btn">Visit Platform</a> | |
| </div> | |
| </div> | |
| <div class="card" onclick="window.location.href='https://aistudio.google.com/u/0/prompts/new_chat'"> | |
| <div class="card-content"> | |
| <div class="card-header"> | |
| <div class="icon"> | |
| <i class="fab fa-google"></i> | |
| </div> | |
| <h2>Google AI Studio</h2> | |
| </div> | |
| <p>Google's AI platform for developing and testing language models</p> | |
| <a href="https://aistudio.google.com/u/0/prompts/new_chat" class="visit-btn">Visit Platform</a> | |
| </div> | |
| </div> | |
| <div class="card" onclick="window.location.href='https://convolite.github.io/professional.html'"> | |
| <div class="card-content"> | |
| <div class="card-header"> | |
| <div class="icon"> | |
| <i class="fas fa-code"></i> | |
| </div> | |
| <h2>Convolite</h2> | |
| </div> | |
| <p>Professional AI tools and services for developers</p> | |
| <a href="https://convolite.github.io/professional.html" class="visit-btn">Visit Platform</a> | |
| </div> | |
| </div> | |
| <div class="card" onclick="window.location.href='https://duckduckgo.com/?q=DuckDuckGo+AI+Chat&ia=chat&duckai=1'"> | |
| <div class="card-content"> | |
| <div class="card-header"> | |
| <div class="icon"> | |
| <i class="fas fa-search"></i> | |
| </div> | |
| <h2>DuckDuckGo AI</h2> | |
| </div> | |
| <p>Privacy-focused AI chat and search platform</p> | |
| <a href="https://duckduckgo.com/?q=DuckDuckGo+AI+Chat&ia=chat&duckai=1" class="visit-btn">Visit Platform</a> | |
| </div> | |
| </div> | |
| <div class="card" onclick="window.location.href='https://www.perplexity.ai/'"> | |
| <div class="card-content"> | |
| <div class="card-header"> | |
| <div class="icon"> | |
| <i class="fas fa-circle"></i> | |
| </div> | |
| <h2>Perplexity AI</h2> | |
| </div> | |
| <p>Advanced search capabilities.</p> | |
| <a href="https://www.perplexity.ai/" class="visit-btn">Visit Platform</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |