Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Contact Cylithrix - AI Investing Platform</title> | |
| <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> | |
| </head> | |
| <body class="bg-gradient-to-br from-blue-900 to-gray-900 text-white"> | |
| <nav class="sticky top-0 bg-blue-900/80 backdrop-blur-md z-50"> | |
| <div class="container mx-auto px-6 py-4 flex justify-between items-center"> | |
| <div class="text-2xl font-bold">Cylithrix</div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="index.html" class="hover:text-blue-300 transition">Home</a> | |
| <a href="features.html" class="hover:text-blue-300 transition">Features</a> | |
| <a href="about.html" class="hover:text-blue-300 transition">About</a> | |
| <a href="ml-hub.html" class="hover:text-blue-300 transition">ML Hub</a> | |
| <a href="blog.html" class="hover:text-blue-300 transition">Blog</a> | |
| <a href="#" class="text-blue-300">Contact</a> | |
| </div> | |
| <button class="md:hidden"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </nav> | |
| <main> | |
| <section class="py-20"> | |
| <div class="container mx-auto px-6"> | |
| <div class="max-w-4xl mx-auto text-center mb-16"> | |
| <h1 class="text-4xl font-bold mb-6" data-aos="fade-up">Get In Touch</h1> | |
| <p class="text-xl text-gray-300" data-aos="fade-up" data-aos-delay="100"> | |
| We'd love to hear from you about our AI investing platform | |
| </p> | |
| </div> | |
| <div class="grid md:grid-cols-2 gap-12 mb-20" id="contact-sections"> | |
| <div class="bg-gray-800/50 p-8 rounded-xl" data-aos="fade-right"> | |
| <h2 class="text-2xl font-bold mb-8">Contact Information</h2> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="bg-blue-600 p-3 rounded-lg mr-4"> | |
| <i data-feather="mail" class="w-6 h-6"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-bold mb-1">Email</h3> | |
| <p class="text-gray-300">contact@cynithrix.com</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="bg-blue-600 p-3 rounded-lg mr-4"> | |
| <i data-feather="map-pin" class="w-6 h-6"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-bold mb-1">Headquarters</h3> | |
| <p class="text-gray-300">123 AI Avenue, Tech City</p> | |
| <p class="text-gray-300">San Francisco, CA 94107</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="bg-blue-600 p-3 rounded-lg mr-4"> | |
| <i data-feather="clock" class="w-6 h-6"></i> | |
| </div> | |
| <div> | |
| <h3 class="font-bold mb-1">Support Hours</h3> | |
| <p class="text-gray-300">Monday - Friday</p> | |
| <p class="text-gray-300">9:00 AM - 6:00 PM PST</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12"> | |
| <h3 class="font-bold mb-4">Follow Us</h3> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="bg-gray-700 hover:bg-gray-600 p-3 rounded-full transition"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="bg-gray-700 hover:bg-gray-600 p-3 rounded-full transition"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| <a href="#" class="bg-gray-700 hover:bg-gray-600 p-3 rounded-full transition"> | |
| <i data-feather="github"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="bg-gray-800/50 p-8 rounded-xl" data-aos="fade-left"> | |
| <h2 class="text-2xl font-bold mb-8">Send Us a Message</h2> | |
| <form> | |
| <div class="space-y-6"> | |
| <div> | |
| <label for="name" class="block text-sm font-medium mb-2">Name</label> | |
| <input type="text" id="name" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-sm font-medium mb-2">Email</label> | |
| <input type="email" id="email" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| </div> | |
| <div> | |
| <label for="subject" class="block text-sm font-medium mb-2">Subject</label> | |
| <select id="subject" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500"> | |
| <option>General Inquiry</option> | |
| <option>Technical Support</option> | |
| <option>Partnership Opportunities</option> | |
| <option>Press Inquiry</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label for="message" class="block text-sm font-medium mb-2">Message</label> | |
| <textarea id="message" rows="4" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea> | |
| </div> | |
| <button type="submit" class="w-full px-6 py-3 bg-blue-600 hover:bg-blue-500 rounded-lg font-medium transition"> | |
| Send Message | |
| </button> | |
| </div> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <footer class="bg-gray-900 py-12"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <div class="mb-6 md:mb-0"> | |
| <div class="text-2xl font-bold mb-2">Cylithrix</div> | |
| <p class="text-gray-400">AI-Powered Stock Market Intelligence</p> | |
| </div> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="github"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between"> | |
| <div class="text-gray-500 text-sm mb-4 md:mb-0"> | |
| © 2023 Cylithrix. All rights reserved. | |
| </div> | |
| <div class="flex flex-col md:flex-row space-y-2 md:space-y-0 md:space-x-6 text-sm"> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a> | |
| <a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| AOS.init(); | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |