optionsmL / contact.html
Jnakkash's picture
empty - Follow Up Deployment
a7f4caf verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StockLens - Contact Us</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>
<script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.contact-card {
transition: all 0.5s ease;
}
.contact-card:hover {
transform: scale(1.02);
}
</style>
</head>
<body class="bg-gray-50">
<!-- Header -->
<header class="gradient-bg text-white">
<div class="container mx-auto px-4 py-8">
<div class="flex justify-between items-center">
<div class="flex items-center">
<a href="index.html" class="flex items-center">
<i data-feather="trending-up" class="h-8 w-8 mr-2"></i>
<h1 class="text-2xl font-bold">StockLens</h1>
</a>
</div>
<nav class="hidden md:block">
<ul class="flex space-x-6">
<li><a href="index.html" class="hover:underline">Home</a></li>
<li><a href="backtesting.html" class="hover:underline">Backtesting</a></li>
<li><a href="historical-data.html" class="hover:underline">Historical Data</a></li>
<li><a href="documentation.html" class="hover:underline">Documentation</a></li>
<li><a href="contact.html" class="hover:underline font-bold">Contact</a></li>
</ul>
</nav>
<button class="极md:hidden">
<i data-feather="menu" class="h-6 w-6"></i>
</button>
</div>
<div class="mt-12 text-center" data-aos="fade-up">
<h2 class="text-4xl md:text-5xl font-bold mb-4">Contact StockLens</h2>
<p class="text-xl max-w-2xl mx-auto">Get in touch with our team for support, feature requests, or partnership opportunities</p>
</div>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-12">
<!-- Contact Form -->
<section class="mb-16" data-aos="fade-up">
<div class="bg-white rounded-xl shadow-lg p-6 md:p-8 max-w-4xl mx-auto">
<h2 class="text-2xl font-bold mb-6 text-gray-800">Send us a Message</h2>
<form id="contactForm">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-2">Full Name</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="Your name" required>
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="your.email@example.com" required>
</div>
</div>
<div class="mb-6">
<label for="subject" class="block text-sm font-medium text-gray-700 mb-2">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="What is this regarding?" required>
</div>
<div class="mb-6">
<label for="message" class="block text-sm font-medium text-gray-700 mb-2">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="Please describe your inquiry in detail..." required></textarea>
</div>
<button type="submit" class="w-full bg-indigo-600 text-white py-3 px-6 rounded-lg font-medium hover:bg-indigo-700 transition duration-300 flex items-center justify-center">
<i data-feather="send" class="mr-2 h-5 w-5"></i>
Send Message
</button>
</form>
</div>
</section>
<!-- Contact Information -->
<section class="mb-16" data-aos="fade-up">
<h2 class="text-3xl font-bold text-center mb-12 text-gray-800">Other Ways to Reach Us</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-xl shadow-md text-center contact-card">
<div class="bg-blue-100 p-3 rounded-lg inline-block mb-4">
<i data-feather="mail" class="h-6 w-6 text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Email</h3>
<p class="text-gray-600 mb-4">Send us an email for general inquiries</p>
<a href="mailto:support@stocklens.ai" class="text-indigo-600 font-medium hover:underline">support@stocklens.ai</a>
</div>
<div class="bg-white p-6 rounded-xl shadow-md text-center contact-card">
<div class="bg-green-100 p-3 rounded-lg inline-block mb-4">
<i data-feather="message-square" class="h-6 w-6 text-green-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Live Chat</h3>
<p class="text-gray-600 mb-4">Get immediate help from our support team</p>
<button class="bg-indigo-600 text-white py-2 px-4 rounded-lg text-sm font-medium hover:bg-indigo-700">Start Chat</button>
</div>
<div class="bg-white p-6 rounded-xl shadow-md text-center contact-card">
<div class="bg-purple-100 p-3 rounded-lg inline-block mb-4">
<i data-feather="book" class="h-6 w-6 text-purple-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2 text-gray-800">Documentation</h3>
<p class="text-gray-600 mb-4">Find answers in our comprehensive guides</p>
<a href="documentation.html" class="text-indigo-600 font-medium hover:underline">View Documentation</a>
</div>
</div>
</section>
<!-- FAQ Preview -->
<section class="mb-16" data-aos="fade-up">
<div class="bg-white rounded-xl shadow-lg p-6 md:p-8">
<h2 class="text-2xl font-bold mb-6 text-gray-800">Common Questions</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">How do I get an API key?</h3>
<p class="text-gray-600">You can obtain a free API key from Polygon.io by signing up on their website. We've documented the process in our API Setup guide.</p>
</div>
<div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">Can I request a new feature?</h3>
<p class="text-gray-600">Absolutely! We welcome feature requests and incorporate user feedback into our development roadmap regularly.</p>
</div>
<div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">Do you offer enterprise solutions?</h3>
<p class="text-gray-600">Yes, we provide customized enterprise solutions for financial institutions and trading firms. Contact us for more information.</p>
</div>
<div>
<h3 class="text-lg font-semibold text-gray-800 mb-2">How often are models updated?</h3>
<p class="text-gray-600">Our base models are updated quarterly, but you can retrain with current data anytime using your API key and the latest market data.</p>
</div>
</div>
<div class="mt-8 text-center">
<a href="documentation.html" class="inline-flex items-center text-indigo-600 hover:text-indigo-700 font-medium">
<span>View Full Documentation</span>
<i data-feather="arrow-right" class="ml-2 h-4 w-4"></i>
</a>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="container mx-auto px极-4">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div>
<极div class="flex items-center mb-4">
<a href="index.html" class="flex items-center">
<i data-feather="trending-up" class="h-6 w-6 mr-2 text-indigo-400"></i>
<h3 class="text-xl font-bold">StockLens</h3>
</a>
</div>
<p class="text-gray-400">Advanced AI-powered stock prediction using LSTM neural networks and comprehensive technical analysis.</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="documentation.html" class="text-gray-400 hover:text-white">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">API Reference</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Tutorial极s</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter" class="h-5 w-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="github" class="h-5 w-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="linkedin" class="h-5 w-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="mail" class="h-5 w-5"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-sm text-center text-gray-400">
<p>© 2023 StockLens. All rights reserved. Contact information is for support purposes only.</p>
</div>
</div>
</footer>
<script>
// Initialize animations and icons
document.addEventListener('DOMContentLoaded', function() {
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
feather.replace();
// Simulate form submission
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you within 24 hours.');
this.reset();
});
});
</script>
</body>
</html>