cortex-ai / index.html
Cortex-AI's picture
Design a modern, minimalist, and futuristic landing page for Cortex AI, a company that builds and sells autonomous AI agents for businesses. The website should feel premium and cutting-edge, with subtle motion effects and sleek micro-interactions. Requirements: • Layout: – Full-screen hero section with bold headline “Deploy Autonomous AI Agents for Your Business” and short paragraph explaining Cortex AI’s value. – Futuristic animated abstract AI visual (e.g., particle system or neural-network mesh) on the side. – Prominent CTAs: “Get Early Access”, “Watch Demo”. – Features section with animated cards describing: Custom Agents, Plug-and-Play Integration, 24/7 Autonomy. – Testimonial slider with grayscale client logos and smooth auto-scroll animation. – Footer with minimalist navigation and social icons. • Style: – Ultra-clean layout with lots of whitespace and glass-effect panels. – Soft gradients (moonlight, deep space), neon accent colors (electric blue / ultraviolet). – Futuristic sans-serif fonts (e.g. Space Grotesk, Syne, Eurostile). • Animations: – Smooth entrance animations (fade-in, slide-up) on scroll. – Hover effects on CTA buttons and cards (subtle glow or scale). – Animated hero visual (SVG/WebGL). - Initial Deployment
975c707 verified
Raw
History Blame Contribute Delete
26.3 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cortex AI | Autonomous AI Agents</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/ScrollTrigger.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');
:root {
--electric-blue: #00f0ff;
--ultraviolet: #a100f0;
--deep-space: #0a0a1a;
--moonlight: #e0e0ff;
}
body {
font-family: 'Space Grotesk', sans-serif;
background-color: var(--deep-space);
color: var(--moonlight);
overflow-x: hidden;
}
.syne {
font-family: 'Syne', sans-serif;
}
.hero-gradient {
background: linear-gradient(135deg, var(--deep-space) 0%, #1a1a3a 100%);
}
.glass-panel {
background: rgba(15, 15, 35, 0.6);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-primary {
background: linear-gradient(90deg, var(--electric-blue) 0%, var(--ultraviolet) 100%);
box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}
.btn-secondary {
border: 1px solid var(--electric-blue);
color: var(--electric-blue);
transition: all 0.3s ease;
}
.btn-secondary:hover {
background: rgba(0, 240, 255, 0.1);
box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}
.feature-card {
transition: all 0.4s ease;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}
.neon-text {
text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}
.neon-accent {
box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}
/* Particle animation container */
#particles-js {
position: absolute;
width: 50%;
height: 100%;
right: 0;
top: 0;
}
/* Scroll animations */
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* Testimonial slider */
.logo-slider {
animation: scroll 30s linear infinite;
}
@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
/* Responsive adjustments */
@media (max-width: 1024px) {
#particles-js {
width: 100%;
height: 50%;
top: auto;
bottom: 0;
}
}
</style>
</head>
<body class="antialiased">
<!-- Navigation -->
<nav class="glass-panel fixed w-full z-50 py-4 px-6 md:px-12">
<div class="flex justify-between items-center">
<div class="flex items-center">
<span class="text-2xl font-bold syne text-white">Cortex<span class="text-[#00f0ff]">AI</span></span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Solutions</a>
<a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Technology</a>
<a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Pricing</a>
<a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Resources</a>
</div>
<div class="hidden md:block">
<button class="btn-secondary px-6 py-2 rounded-full font-medium">Contact</button>
</div>
<button class="md:hidden text-white">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient min-h-screen flex flex-col md:flex-row items-center justify-center pt-20 md:pt-0 px-6 md:px-12 relative overflow-hidden">
<div class="container mx-auto flex flex-col md:flex-row items-center z-10">
<div class="md:w-1/2 mb-16 md:mb-0 fade-in">
<h1 class="text-4xl md:text-6xl lg:text-7xl font-bold syne leading-tight mb-6">
Deploy <span class="neon-text text-[#00f0ff]">Autonomous AI Agents</span> for Your Business
</h1>
<p class="text-lg md:text-xl text-[#e0e0ff] mb-10 max-w-lg">
Cortex AI builds intelligent agents that automate complex workflows, make data-driven decisions, and operate 24/7 to accelerate your business growth.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-6">
<button class="btn-primary px-8 py-4 rounded-full font-bold syne">
Get Early Access
</button>
<button class="btn-secondary px-8 py-4 rounded-full font-bold syne flex items-center justify-center space-x-2">
<i class="fas fa-play"></i>
<span>Watch Demo</span>
</button>
</div>
</div>
<div class="md:w-1/2 relative">
<div id="particles-js"></div>
<div class="absolute inset-0 flex items-center justify-center md:justify-start">
<div class="w-64 h-64 md:w-80 md:h-80 lg:w-96 lg:h-96 rounded-full neon-accent bg-gradient-to-br from-[#00f0ff20] to-[#a100f020] flex items-center justify-center">
<div class="w-3/4 h-3/4 rounded-full bg-gradient-to-br from-[#00f0ff10] to-[#a100f010] border border-[#00f0ff30] flex items-center justify-center">
<div class="w-1/2 h-1/2 rounded-full bg-gradient-to-br from-[#00f0ff15] to-[#a100f015] border border-[#00f0ff20]"></div>
</div>
</div>
</div>
</div>
</div>
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
<i class="fas fa-chevron-down text-[#00f0ff] text-2xl"></i>
</div>
</section>
<!-- Features Section -->
<section class="py-20 px-6 md:px-12">
<div class="container mx-auto">
<div class="text-center mb-20 fade-in">
<h2 class="text-3xl md:text-5xl font-bold syne mb-6">AI That Works <span class="text-[#00f0ff]">For You</span></h2>
<p class="text-[#e0e0ff] max-w-2xl mx-auto text-lg">
Our autonomous agents are designed to integrate seamlessly into your existing workflows while delivering measurable results.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card glass-panel rounded-2xl p-8 fade-in">
<div class="w-16 h-16 rounded-full bg-gradient-to-br from-[#00f0ff] to-[#a100f0] flex items-center justify-center mb-6">
<i class="fas fa-robot text-2xl text-white"></i>
</div>
<h3 class="text-2xl font-bold syne mb-4">Custom Agents</h3>
<p class="text-[#e0e0ff] mb-6">
Tailored AI solutions designed specifically for your business needs and industry requirements.
</p>
<a href="#" class="text-[#00f0ff] flex items-center space-x-2">
<span>Learn more</span>
<i class="fas fa-arrow-right"></i>
</a>
</div>
<!-- Feature 2 -->
<div class="feature-card glass-panel rounded-2xl p-8 fade-in" style="transition-delay: 0.1s">
<div class="w-16 h-16 rounded-full bg-gradient-to-br from-[#00f0ff] to-[#a100f0] flex items-center justify-center mb-6">
<i class="fas fa-plug text-2xl text-white"></i>
</div>
<h3 class="text-2xl font-bold syne mb-4">Plug-and-Play</h3>
<p class="text-[#e0e0ff] mb-6">
Seamless integration with your existing tech stack through our simple API and SDKs.
</p>
<a href="#" class="text-[#00f0ff] flex items-center space-x-2">
<span>Learn more</span>
<i class="fas fa-arrow-right"></i>
</a>
</div>
<!-- Feature 3 -->
<div class="feature-card glass-panel rounded-2xl p-8 fade-in" style="transition-delay: 0.2s">
<div class="w-16 h-16 rounded-full bg-gradient-to-br from-[#00f0ff] to-[#a100f0] flex items-center justify-center mb-6">
<i class="fas fa-clock text-2xl text-white"></i>
</div>
<h3 class="text-2xl font-bold syne mb-4">24/7 Autonomy</h3>
<p class="text-[#e0e0ff] mb-6">
Intelligent agents that never sleep, continuously optimizing and executing tasks around the clock.
</p>
<a href="#" class="text-[#00f0ff] flex items-center space-x-2">
<span>Learn more</span>
<i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Testimonial Section -->
<section class="py-20 px-6 bg-gradient-to-b from-[#0a0a1a] to-[#1a1a3a]">
<div class="container mx-auto">
<div class="text-center mb-16 fade-in">
<h2 class="text-3xl md:text-5xl font-bold syne mb-6">Trusted by <span class="text-[#00f0ff]">Innovators</span></h2>
<p class="text-[#e0e0ff] max-w-2xl mx-auto text-lg">
Leading companies across industries are transforming their operations with Cortex AI.
</p>
</div>
<div class="relative overflow-hidden py-8">
<div class="logo-slider flex space-x-16 items-center">
<!-- Duplicate logos for seamless looping -->
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=TechCorp" alt="TechCorp" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=NeuronX" alt="NeuronX" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=Quantum" alt="Quantum" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=SynthLabs" alt="SynthLabs" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=OmniSys" alt="OmniSys" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=Vertex" alt="Vertex" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=TechCorp" alt="TechCorp" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=NeuronX" alt="NeuronX" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=Quantum" alt="Quantum" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=SynthLabs" alt="SynthLabs" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=OmniSys" alt="OmniSys" class="h-12 opacity-70 hover:opacity-100 transition">
<img src="https://via.placeholder.com/180x60/0a0a1a/00f0ff?text=Vertex" alt="Vertex" class="h-12 opacity-70 hover:opacity-100 transition">
</div>
</div>
<div class="mt-16 glass-panel rounded-2xl p-8 md:p-12 max-w-4xl mx-auto fade-in">
<div class="flex items-start">
<div class="text-4xl text-[#00f0ff] mr-6">"</div>
<div>
<p class="text-xl md:text-2xl italic mb-6">
Cortex AI's autonomous agents have transformed our customer support operations, reducing response times by 80% while maintaining exceptional quality.
</p>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-gradient-to-br from-[#00f0ff] to-[#a100f0] mr-4"></div>
<div>
<h4 class="font-bold">Sarah Chen</h4>
<p class="text-[#e0e0ff] text-sm">CTO, TechCorp</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-28 px-6 relative overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-br from-[#00f0ff10] to-[#a100f010] z-0"></div>
<div class="container mx-auto text-center relative z-10">
<div class="glass-panel rounded-2xl p-8 md:p-16 max-w-4xl mx-auto fade-in">
<h2 class="text-3xl md:text-5xl font-bold syne mb-6">Ready to Deploy <span class="text-[#00f0ff]">AI Agents</span>?</h2>
<p class="text-[#e0e0ff] text-lg mb-10 max-w-2xl mx-auto">
Join the future of autonomous business operations. Get started today with our early access program.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<button class="btn-primary px-8 py-4 rounded-full font-bold syne">
Get Early Access
</button>
<button class="btn-secondary px-8 py-4 rounded-full font-bold syne">
Contact Sales
</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-[#0a0a1a] py-12 px-6">
<div class="container mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12">
<div>
<h3 class="text-2xl font-bold syne text-white mb-6">Cortex<span class="text-[#00f0ff]">AI</span></h3>
<p class="text-[#e0e0ff] mb-6">
Building the future of autonomous business intelligence.
</p>
<div class="flex space-x-4">
<a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition"><i class="fab fa-github"></i></a>
<a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition"><i class="fab fa-discord"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-bold text-white mb-6">Product</h4>
<ul class="space-y-3">
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Features</a></li>
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Solutions</a></li>
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Pricing</a></li>
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Demo</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold text-white mb-6">Resources</h4>
<ul class="space-y-3">
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Documentation</a></li>
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">API Reference</a></li>
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Blog</a></li>
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Community</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold text-white mb-6">Company</h4>
<ul class="space-y-3">
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">About</a></li>
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Careers</a></li>
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Contact</a></li>
<li><a href="#" class="text-[#e0e0ff] hover:text-[#00f0ff] transition">Legal</a></li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-[#1a1a3a] text-center text-[#e0e0ff] text-sm">
<p>© 2023 Cortex AI. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
// Initialize particles.js
document.addEventListener('DOMContentLoaded', function() {
if (document.getElementById('particles-js')) {
particlesJS('particles-js', {
"particles": {
"number": {
"value": 80,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#00f0ff"
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 5
}
},
"opacity": {
"value": 0.5,
"random": true,
"anim": {
"enable": true,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 3,
"random": true,
"anim": {
"enable": true,
"speed": 2,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": true,
"distance": 150,
"color": "#00f0ff",
"opacity": 0.2,
"width": 1
},
"move": {
"enable": true,
"speed": 1,
"direction": "none",
"random": true,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": true,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "grab"
},
"onclick": {
"enable": true,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 140,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
});
}
// Scroll animations
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, {
threshold: 0.1
});
fadeElements.forEach(element => {
fadeInObserver.observe(element);
});
// GSAP animations
gsap.registerPlugin(ScrollTrigger);
gsap.from(".hero-gradient h1", {
opacity: 0,
y: 50,
duration: 1,
ease: "power3.out"
});
gsap.from(".hero-gradient p", {
opacity: 0,
y: 50,
duration: 1,
delay: 0.3,
ease: "power3.out"
});
gsap.from(".hero-gradient .btn-primary", {
opacity: 0,
y: 50,
duration: 1,
delay: 0.6,
ease: "power3.out"
});
gsap.from(".hero-gradient .btn-secondary", {
opacity: 0,
y: 50,
duration: 1,
delay: 0.8,
ease: "power3.out"
});
// Animate feature cards on scroll
gsap.utils.toArray(".feature-card").forEach((card, i) => {
gsap.from(card, {
scrollTrigger: {
trigger: card,
start: "top 80%",
toggleActions: "play none none none"
},
opacity: 0,
y: 50,
duration: 0.8,
delay: i * 0.1,
ease: "back.out(1.7)"
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Cortex-AI/cortex-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>