cylithrix / index.html
youssef3146's picture
contiue - Follow Up Deployment
cb6e6ee verified
<!DOCTYPE html>
<html>
<head>
<title>My app</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8">
<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>
</head>
<body class="flex justify-center items-center h-screen overflow-hidden bg-white font-sans text-center px-6">
<nav class="absolute top-0 left-0 right-0 py-4 px-6 flex justify-between items-center">
<div class="text-xl font-bold">Cylithrix</div>
<div class="hidden md:flex space-x-6">
<a href="#" class="text-white hover:text-blue-300 transition">Home</a>
<a href="features.html" class="text-white hover:text-blue-300 transition">Features</a>
<a href="about.html" class="text-white hover:text-blue-300 transition">About</a>
<a href="ml-hub.html" class="text-white hover:text-blue-300 transition">ML Hub</a>
<a href="blog.html" class="text-white hover:text-blue-300 transition">Blog</a>
<a href="contact.html" class="text-white hover:text-blue-300 transition">Contact</a>
</div>
<button class="md:hidden text-white">
<i data-feather="menu"></i>
</button>
</nav>
<div class="w-full max-w-4xl mx-auto" data-aos="fade-up">
<span class="text-xs rounded-full mb-4 inline-block px-3 py-1 border border-blue-500/20 bg-blue-500/10 text-blue-300">AI-POWERED INVESTING</span>
<div class="absolute bottom-10 left-0 right-0 text-center">
<a href="#features" class="text-blue-300 hover:text-white transition animate-bounce">
<i data-feather="chevron-down" class="w-8 h-8"></i>
</a>
</div>
<h1 class="text-4xl lg:text-6xl font-bold mb-6" data-aos="fade-up" data-aos-delay="100">
<span class="text-2xl lg:text-4xl text-gray-300 block font-medium mb-2">Welcome to</span>
Cylithrix
</h1>
<p class="text-xl text-gray-300 mb-8 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="200">
Revolutionizing stock market investing through artificial intelligence and machine learning.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-3 sm:space-y-0 sm:space-x-4" data-aos="fade-up" data-aos-delay="300">
<a href="features.html" class="px-6 py-3 bg-blue-600 hover:bg-blue-500 rounded-lg font-medium transition text-center">
Explore AI Tools
</a>
<a href="#" class="px-6 py-3 border border-white/20 hover:border-white/40 rounded-lg font-medium transition text-center">
Join the Beta
</a>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<section id="features" class="py-20 bg-gray-900/50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-12">Key Features</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-800/50 p-6 rounded-xl" data-aos="fade-up">
<div class="bg-blue-600 p-3 rounded-lg w-12 h-12 flex items-center justify-center mb-4">
<i data-feather="activity"></i>
</div>
<h3 class="text-xl font-bold mb-3">Automated Investing</h3>
<p class="text-gray-300">Let our AI manage your portfolio based on your risk profile and goals.</p>
</div>
<div class="bg-gray-800/50 p-6 rounded-xl" data-aos="fade-up" data-aos-delay="100">
<div class="bg-blue-600 p-3 rounded-lg w-12 h-12 flex items-center justify-center mb-4">
<i data-feather="trending-up"></i>
</div>
<h3 class="text-xl font-bold mb-3">AI Predictions</h3>
<p class="text-gray-300">Advanced machine learning models forecast market movements.</p>
</div>
<div class="bg-gray-800/50 p-6 rounded-xl" data-aos="fade-up" data-aos-delay="200">
<div class="bg-blue-600 p-3 rounded-lg w-12 h-12 flex items-center justify-center mb-4">
<i data-feather="shield"></i>
</div>
<h3 class="text-xl font-bold mb-3">Risk Management</h3>
<p class="text-gray-300">Comprehensive tools to protect your investments.</p>
</div>
</div>
</div>
</section>
<script>
feather.replace();
AOS.init();
</script>
<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>
</body>
</html>