Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Architech: Imagine AI. Then Build It.</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"> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Roboto:wght@300;400;500;700&display=swap'); | |
body { | |
font-family: 'Roboto', sans-serif; | |
background-color: #0a0a0f; | |
color: #e0e0e0; | |
} | |
.holographic-bg { | |
background: | |
radial-gradient(circle at 20% 30%, rgba(103, 58, 183, 0.15) 0%, transparent 40%), | |
radial-gradient(circle at 80% 70%, rgba(33, 150, 243, 0.15) 0%, transparent 40%), | |
linear-gradient(to bottom, #0a0a0f 0%, #12121a 100%); | |
position: relative; | |
overflow: hidden; | |
} | |
.holographic-bg::before { | |
content: ""; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
background: | |
url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E"), | |
linear-gradient(135deg, rgba(103, 58, 183, 0.1) 0%, rgba(33, 150, 243, 0.1) 50%, rgba(76, 175, 80, 0.1) 100%); | |
pointer-events: none; | |
} | |
.cyber-glow { | |
text-shadow: 0 0 10px rgba(33, 150, 243, 0.7); | |
} | |
.cyber-border { | |
border: 1px solid rgba(103, 58, 183, 0.3); | |
box-shadow: 0 0 15px rgba(33, 150, 243, 0.3); | |
} | |
.cyber-card { | |
background: rgba(20, 20, 30, 0.7); | |
backdrop-filter: blur(10px); | |
border: 1px solid rgba(103, 58, 183, 0.2); | |
transition: all 0.3s ease; | |
} | |
.cyber-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3); | |
border-color: rgba(33, 150, 243, 0.5); | |
} | |
.holographic-line { | |
height: 1px; | |
background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.5), transparent); | |
} | |
.terminal { | |
background: rgba(10, 15, 20, 0.8); | |
border: 1px solid rgba(33, 150, 243, 0.3); | |
font-family: 'Courier New', monospace; | |
position: relative; | |
} | |
.terminal::before { | |
content: ""; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
height: 30px; | |
background: linear-gradient(90deg, rgba(33, 150, 243, 0.1), rgba(103, 58, 183, 0.1)); | |
border-bottom: 1px solid rgba(33, 150, 243, 0.2); | |
} | |
.terminal-header { | |
position: absolute; | |
top: 5px; | |
left: 10px; | |
display: flex; | |
gap: 5px; | |
} | |
.terminal-dot { | |
width: 12px; | |
height: 12px; | |
border-radius: 50%; | |
} | |
.terminal-dot.red { background: #ff5f56; } | |
.terminal-dot.yellow { background: #ffbd2e; } | |
.terminal-dot.green { background: #27c93f; } | |
.typewriter { | |
overflow: hidden; | |
border-right: 2px solid rgba(33, 150, 243, 0.8); | |
white-space: nowrap; | |
margin: 0 auto; | |
letter-spacing: 0.15em; | |
animation: | |
typing 3.5s steps(40, end), | |
blink-caret 0.75s step-end infinite; | |
} | |
@keyframes typing { | |
from { width: 0 } | |
to { width: 100% } | |
} | |
@keyframes blink-caret { | |
from, to { border-color: transparent } | |
50% { border-color: rgba(33, 150, 243, 0.8); } | |
} | |
.holographic-pulse { | |
animation: pulse 2s infinite alternate; | |
} | |
@keyframes pulse { | |
from { box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.4); } | |
to { box-shadow: 0 0 0 10px rgba(33, 150, 243, 0); } | |
} | |
.grid-pattern { | |
background-image: | |
linear-gradient(rgba(33, 150, 243, 0.1) 1px, transparent 1px), | |
linear-gradient(90deg, rgba(33, 150, 243, 0.1) 1px, transparent 1px); | |
background-size: 30px 30px; | |
} | |
.cyber-button { | |
background: linear-gradient(135deg, rgba(103, 58, 183, 0.8), rgba(33, 150, 243, 0.8)); | |
border: none; | |
color: white; | |
transition: all 0.3s ease; | |
position: relative; | |
overflow: hidden; | |
} | |
.cyber-button::before { | |
content: ""; | |
position: absolute; | |
top: 0; | |
left: -100%; | |
width: 100%; | |
height: 100%; | |
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); | |
transition: all 0.5s ease; | |
} | |
.cyber-button:hover::before { | |
left: 100%; | |
} | |
.cyber-button-outline { | |
background: transparent; | |
border: 1px solid rgba(33, 150, 243, 0.8); | |
color: rgba(33, 150, 243, 0.8); | |
transition: all 0.3s ease; | |
} | |
.cyber-button-outline:hover { | |
background: rgba(33, 150, 243, 0.1); | |
color: white; | |
} | |
.holographic-grid { | |
position: relative; | |
} | |
.holographic-grid::before { | |
content: ""; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
background: | |
linear-gradient(rgba(33, 150, 243, 0.05) 1px, transparent 1px), | |
linear-gradient(90deg, rgba(33, 150, 243, 0.05) 1px, transparent 1px); | |
background-size: 20px 20px; | |
pointer-events: none; | |
} | |
</style> | |
</head> | |
<body class="holographic-bg"> | |
<!-- Navigation --> | |
<nav class="bg-black bg-opacity-50 backdrop-filter backdrop-blur-lg fixed w-full z-50 border-b border-gray-800"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16 items-center"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 flex items-center"> | |
<div class="h-8 w-8 rounded-full bg-gradient-to-br from-purple-600 to-blue-500 flex items-center justify-center mr-2"> | |
<i class="fas fa-robot text-white text-sm"></i> | |
</div> | |
<span class="text-xl font-bold text-white font-['Orbitron'] tracking-tight">ARCHITECH</span> | |
</div> | |
</div> | |
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> | |
<a href="#features" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium transition duration-300">FEATURES</a> | |
<a href="#how-it-works" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium transition duration-300">HOW IT WORKS</a> | |
<a href="#pricing" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium transition duration-300">PRICING</a> | |
<a href="#testimonials" class="text-gray-300 hover:text-white px-3 py-2 text-sm font-medium transition duration-300">TESTIMONIALS</a> | |
</div> | |
<div class="flex items-center"> | |
<a href="#" class="cyber-button px-4 py-2 rounded-md text-sm font-medium transition duration-300">GET STARTED</a> | |
</div> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section class="pt-32 pb-24 relative overflow-hidden"> | |
<div class="absolute inset-0 grid-pattern"></div> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10"> | |
<div class="md:flex md:items-center md:justify-between"> | |
<div class="md:w-1/2 mb-12 md:mb-0"> | |
<div class="text-blue-400 text-sm font-medium mb-4 flex items-center"> | |
<span class="h-px w-8 bg-blue-400 mr-2"></span> | |
THE FUTURE OF AI CREATION | |
</div> | |
<h1 class="text-4xl md:text-6xl font-bold leading-tight mb-6 text-white font-['Orbitron']"> | |
<span class="typewriter cyber-glow">IMAGINE AI. THEN BUILD IT.</span> | |
</h1> | |
<p class="text-xl md:text-2xl mb-8 text-gray-300 max-w-lg"> | |
Create custom Large Language Models without writing a single line of code. | |
</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<a href="#" class="cyber-button px-6 py-3 rounded-md text-lg font-semibold text-center transition duration-300"> | |
START BUILDING <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
<a href="#how-it-works" class="cyber-button-outline px-6 py-3 rounded-md text-lg font-semibold text-center transition duration-300"> | |
SEE HOW IT WORKS | |
</a> | |
</div> | |
<div class="mt-8 flex items-center space-x-6"> | |
<div class="flex items-center"> | |
<div class="flex -space-x-2"> | |
<img class="w-8 h-8 rounded-full border border-blue-400" src="https://randomuser.me/api/portraits/women/12.jpg" alt=""> | |
<img class="w-8 h-8 rounded-full border border-blue-400" src="https://randomuser.me/api/portraits/men/43.jpg" alt=""> | |
<img class="w-8 h-8 rounded-full border border-blue-400" src="https://randomuser.me/api/portraits/women/34.jpg" alt=""> | |
</div> | |
<span class="ml-3 text-sm text-gray-400">Join 10,000+ builders</span> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2 relative"> | |
<div class="terminal rounded-xl p-6 shadow-2xl transform rotate-1 w-full max-w-md mx-auto"> | |
<div class="terminal-header"> | |
<div class="terminal-dot red"></div> | |
<div class="terminal-dot yellow"></div> | |
<div class="terminal-dot green"></div> | |
</div> | |
<div class="mt-10 p-4"> | |
<p class="text-green-400 font-mono text-sm mb-2"> | |
<span class="text-purple-400">User></span> "I need an AI that can analyze customer feedback and generate weekly reports with key insights and action items." | |
</p> | |
<p class="text-blue-400 font-mono text-sm mb-2"> | |
<span class="text-green-400">Architech></span> Generating optimized architecture... | |
</p> | |
<p class="text-green-400 font-mono text-sm mb-1"> | |
<span class="text-green-400">✓</span> Sentiment Analysis Module | |
</p> | |
<p class="text-green-400 font-mono text-sm mb-1"> | |
<span class="text-green-400">✓</span> Topic Modeling Layer | |
</p> | |
<p class="text-green-400 font-mono text-sm mb-1"> | |
<span class="text-green-400">✓</span> Report Generation Engine | |
</p> | |
<p class="text-green-400 font-mono text-sm mb-2"> | |
<span class="text-green-400">✓</span> API Endpoints Configured | |
</p> | |
<p class="text-blue-400 font-mono text-sm mb-4"> | |
<span class="text-blue-400">Status></span> Ready to deploy! [<span class="text-purple-400 cursor-pointer">Deploy Now</span>] | |
</p> | |
<div class="holographic-line w-full my-2"></div> | |
<div class="flex justify-between items-center mt-4"> | |
<div class="text-xs text-gray-500 font-mono">ARCHITECH v3.1.4</div> | |
<div class="text-xs text-gray-500 font-mono">CONNECTION: SECURE</div> | |
</div> | |
</div> | |
</div> | |
<div class="absolute -bottom-8 -left-8 w-32 h-32 bg-blue-400 rounded-full opacity-10 blur-xl"></div> | |
<div class="absolute -top-8 -right-8 w-40 h-40 bg-purple-400 rounded-full opacity-10 blur-xl"></div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Features Section --> | |
<section id="features" class="py-20 relative"> | |
<div class="holographic-grid"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4 font-['Orbitron']">WHY CHOOSE ARCHITECH?</h2> | |
<div class="holographic-line w-24 mx-auto my-4"></div> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
The future of AI creation is here—effortless, powerful, and accessible to everyone. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="w-16 h-16 bg-gradient-to-br from-purple-600 to-blue-500 rounded-full flex items-center justify-center mb-6"> | |
<i class="fas fa-code text-white text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3 text-white">NO CODING REQUIRED</h3> | |
<p class="text-gray-400"> | |
Break down technical barriers and bring your AI ideas to life with simple natural language. | |
</p> | |
<div class="holographic-line w-full mt-4"></div> | |
</div> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="w-16 h-16 bg-gradient-to-br from-blue-500 to-green-500 rounded-full flex items-center justify-center mb-6"> | |
<i class="fas fa-bolt text-white text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3 text-white">FASTER INNOVATION</h3> | |
<p class="text-gray-400"> | |
Create powerful AI models in minutes, not months. Accelerate your time-to-market dramatically. | |
</p> | |
<div class="holographic-line w-full mt-4"></div> | |
</div> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="w-16 h-16 bg-gradient-to-br from-green-500 to-yellow-500 rounded-full flex items-center justify-center mb-6"> | |
<i class="fas fa-cogs text-white text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3 text-white">TAILORED TO YOU</h3> | |
<p class="text-gray-400"> | |
Whether for business, research, or creativity, Architech adapts to your specific needs. | |
</p> | |
<div class="holographic-line w-full mt-4"></div> | |
</div> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="w-16 h-16 bg-gradient-to-br from-red-500 to-purple-600 rounded-full flex items-center justify-center mb-6"> | |
<i class="fas fa-shield-alt text-white text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold mb-3 text-white">SCALABLE & SECURE</h3> | |
<p class="text-gray-400"> | |
From small projects to enterprise-grade AI, we provide the flexibility and security to grow. | |
</p> | |
<div class="holographic-line w-full mt-4"></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- How It Works Section --> | |
<section id="how-it-works" class="py-20 bg-gradient-to-b from-gray-900 to-black relative overflow-hidden"> | |
<div class="absolute inset-0 opacity-10" style="background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cGF0aCBkPSJNMjUgMTVMMTUgMjVMMjUgMzVNMjUgMTVMMzUgMjVMMjUgMzUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvc3ZnPg==')"></div> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4 font-['Orbitron']">HOW ARCHITECH WORKS</h2> | |
<div class="holographic-line w-24 mx-auto my-4"></div> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
Three simple steps from imagination to deployment | |
</p> | |
</div> | |
<div class="flex flex-col md:flex-row items-center justify-between mb-12"> | |
<div class="md:w-5/12 mb-8 md:mb-0"> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<div class="w-10 h-10 bg-gradient-to-br from-purple-600 to-blue-500 rounded-full flex items-center justify-center text-white font-bold mr-4">1</div> | |
<h3 class="text-xl font-semibold text-white">SPEAK YOUR AI</h3> | |
</div> | |
<p class="text-gray-400"> | |
Describe your ideal AI model in plain language. No technical jargon needed. Just tell us what you want your AI to do, how it should behave, and what problems it should solve. | |
</p> | |
</div> | |
</div> | |
<div class="md:w-5/12 relative"> | |
<div class="cyber-card p-6 rounded-xl overflow-hidden"> | |
<div class="terminal-header absolute top-4 left-4"> | |
<div class="terminal-dot red"></div> | |
<div class="terminal-dot yellow"></div> | |
<div class="terminal-dot green"></div> | |
</div> | |
<img src="https://images.unsplash.com/photo-1571171637578-41bc2dd41cd2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Person speaking" class="rounded-lg w-full h-auto"> | |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4"> | |
<p class="text-white font-mono text-sm">USER_INPUT: "Create an AI that can..."</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="flex flex-col md:flex-row-reverse items-center justify-between mb-12"> | |
<div class="md:w-5/12 mb-8 md:mb-0"> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<div class="w-10 h-10 bg-gradient-to-br from-purple-600 to-blue-500 rounded-full flex items-center justify-center text-white font-bold mr-4">2</div> | |
<h3 class="text-xl font-semibold text-white">INSTANT BLUEPRINT</h3> | |
</div> | |
<p class="text-gray-400"> | |
Architech's AI instantly translates your description into an optimized architecture. We handle the neural network design, parameter tuning, and infrastructure setup automatically. | |
</p> | |
</div> | |
</div> | |
<div class="md:w-5/12 relative"> | |
<div class="cyber-card p-6 rounded-xl overflow-hidden"> | |
<div class="terminal-header absolute top-4 left-4"> | |
<div class="terminal-dot red"></div> | |
<div class="terminal-dot yellow"></div> | |
<div class="terminal-dot green"></div> | |
</div> | |
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="AI architecture" class="rounded-lg w-full h-auto"> | |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4"> | |
<p class="text-white font-mono text-sm">ARCHITECTURE_GENERATED: ✓</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="flex flex-col md:flex-row items-center justify-between"> | |
<div class="md:w-5/12 mb-8 md:mb-0"> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<div class="w-10 h-10 bg-gradient-to-br from-purple-600 to-blue-500 rounded-full flex items-center justify-center text-white font-bold mr-4">3</div> | |
<h3 class="text-xl font-semibold text-white">ONE-CLICK DEPLOYMENT</h3> | |
</div> | |
<p class="text-gray-400"> | |
With a single click, your custom AI is trained and deployed. Access it through our dashboard or integrate it into your applications via API. We handle all the infrastructure complexity. | |
</p> | |
</div> | |
</div> | |
<div class="md:w-5/12 relative"> | |
<div class="cyber-card p-6 rounded-xl overflow-hidden"> | |
<div class="terminal-header absolute top-4 left-4"> | |
<div class="terminal-dot red"></div> | |
<div class="terminal-dot yellow"></div> | |
<div class="terminal-dot green"></div> | |
</div> | |
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Deployment" class="rounded-lg w-full h-auto"> | |
<div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4"> | |
<p class="text-white font-mono text-sm">STATUS: READY_TO_DEPLOY [<span class="text-green-400">DEPLOY_NOW</span>]</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Who's It For Section --> | |
<section class="py-20 relative overflow-hidden"> | |
<div class="absolute inset-0 bg-gradient-to-br from-blue-900/10 to-purple-900/10"></div> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4 font-['Orbitron']">WHO'S IT FOR?</h2> | |
<div class="holographic-line w-24 mx-auto my-4"></div> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
Architech empowers everyone to create custom AI solutions | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> | |
<div class="cyber-card p-6 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 bg-gradient-to-br from-purple-600 to-blue-500 rounded-full flex items-center justify-center text-white mr-4"> | |
<i class="fas fa-rocket text-xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-white">STARTUPS & ENTREPRENEURS</h3> | |
</div> | |
<p class="text-gray-400"> | |
Build AI-driven businesses without expensive engineering teams. Validate ideas quickly and scale effortlessly. | |
</p> | |
<div class="mt-4"> | |
<span class="inline-block bg-blue-900/30 text-blue-400 text-xs px-2 py-1 rounded">FAST PROTOTYPING</span> | |
</div> | |
</div> | |
<div class="cyber-card p-6 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 bg-gradient-to-br from-blue-500 to-green-500 rounded-full flex items-center justify-center text-white mr-4"> | |
<i class="fas fa-laptop-code text-xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-white">DEVELOPERS & ENGINEERS</h3> | |
</div> | |
<p class="text-gray-400"> | |
Accelerate LLM deployment with seamless customization. Focus on building great products instead of infrastructure. | |
</p> | |
<div class="mt-4"> | |
<span class="inline-block bg-green-900/30 text-green-400 text-xs px-2 py-1 rounded">API ACCESS</span> | |
</div> | |
</div> | |
<div class="cyber-card p-6 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 bg-gradient-to-br from-green-500 to-yellow-500 rounded-full flex items-center justify-center text-white mr-4"> | |
<i class="fas fa-flask text-xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-white">RESEARCHERS & ACADEMICS</h3> | |
</div> | |
<p class="text-gray-400"> | |
Rapidly prototype and test AI models for groundbreaking discoveries. No more waiting for compute resources. | |
</p> | |
<div class="mt-4"> | |
<span class="inline-block bg-yellow-900/30 text-yellow-400 text-xs px-2 py-1 rounded">RESEARCH TOOLS</span> | |
</div> | |
</div> | |
<div class="cyber-card p-6 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<div class="w-12 h-12 bg-gradient-to-br from-yellow-500 to-red-500 rounded-full flex items-center justify-center text-white mr-4"> | |
<i class="fas fa-palette text-xl"></i> | |
</div> | |
<h3 class="text-lg font-semibold text-white">CREATORS & INNOVATORS</h3> | |
</div> | |
<p class="text-gray-400"> | |
Design unique AI tools that push creative boundaries. Bring your wildest ideas to life without technical constraints. | |
</p> | |
<div class="mt-4"> | |
<span class="inline-block bg-red-900/30 text-red-400 text-xs px-2 py-1 rounded">CREATIVE AI</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Pricing Section --> | |
<section id="pricing" class="py-20 bg-gradient-to-b from-gray-900 to-black relative overflow-hidden"> | |
<div class="absolute inset-0 opacity-20" style="background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cGF0aCBkPSJNMjUgMTVMMTUgMjVMMjUgMzVNMjUgMTVMMzUgMjVMMjUgMzUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvc3ZnPg==')"></div> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4 font-['Orbitron']">SIMPLE, TRANSPARENT PRICING</h2> | |
<div class="holographic-line w-24 mx-auto my-4"></div> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
Choose the plan that fits your needs. No hidden fees, cancel anytime. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto"> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="text-center mb-6"> | |
<h3 class="text-xl font-semibold mb-2 text-white">FREE</h3> | |
<p class="text-gray-400 mb-4">Experiment with AI creation</p> | |
<div class="text-4xl font-bold mb-4 text-white">$0<span class="text-lg text-gray-400">/month</span></div> | |
<a href="#" class="block cyber-button-outline px-6 py-3 rounded-md font-medium transition duration-300">GET STARTED</a> | |
</div> | |
<ul class="space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-300">Up to 2 basic LLMs</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-300">Community support</span> | |
</li> | |
<li class="flex items-center text-gray-500"> | |
<i class="fas fa-times text-red-400 mr-2"></i> | |
<span>No API access</span> | |
</li> | |
<li class="flex items-center text-gray-500"> | |
<i class="fas fa-times text-red-400 mr-2"></i> | |
<span>Limited training capacity</span> | |
</li> | |
</ul> | |
</div> | |
<div class="cyber-card p-8 rounded-xl border-2 border-blue-500 relative glow"> | |
<div class="absolute top-0 right-0 bg-gradient-to-r from-blue-500 to-purple-600 text-white text-xs font-bold px-3 py-1 rounded-bl-lg rounded-tr-lg">POPULAR</div> | |
<div class="text-center mb-6"> | |
<h3 class="text-xl font-semibold mb-2 text-white">PRO</h3> | |
<p class="text-gray-400 mb-4">For serious builders</p> | |
<div class="text-4xl font-bold mb-4 text-white">$15<span class="text-lg text-gray-400">/month</span></div> | |
<a href="#" class="block cyber-button px-6 py-3 rounded-md font-medium transition duration-300">GET STARTED</a> | |
</div> | |
<ul class="space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-300">Up to 10 advanced AIs</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-300">Priority support</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-300">Full API access</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-300">Expanded training capacity</span> | |
</li> | |
</ul> | |
</div> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="text-center mb-6"> | |
<h3 class="text-xl font-semibold mb-2 text-white">ENTERPRISE</h3> | |
<p class="text-gray-400 mb-4">For organizations</p> | |
<div class="text-4xl font-bold mb-4 text-white">$30<span class="text-lg text-gray-400">/month</span></div> | |
<a href="#" class="block cyber-button-outline px-6 py-3 rounded-md font-medium transition duration-300">CONTACT SALES</a> | |
</div> | |
<ul class="space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-300">Unlimited AI creation</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-300">24/7 dedicated support</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-300">Enterprise-grade security</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-300">Custom SLAs</span> | |
</li> | |
</ul> | |
</div> | |
</div> | |
<div class="text-center mt-12"> | |
<p class="text-gray-400"> | |
Need something custom? <a href="#" class="text-blue-400 hover:text-blue-300 font-medium">CONTACT OUR TEAM</a> for enterprise solutions. | |
</p> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials Section --> | |
<section id="testimonials" class="py-20 relative overflow-hidden"> | |
<div class="absolute inset-0 bg-gradient-to-b from-black to-blue-900/10"></div> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10"> | |
<div class="text-center mb-16"> | |
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4 font-['Orbitron']">WHAT OUR USERS SAY</h2> | |
<div class="holographic-line w-24 mx-auto my-4"></div> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto"> | |
Don't just take our word for it. Hear from people who've built amazing things with Architech. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full border border-blue-400 mr-4"> | |
<div> | |
<h4 class="font-semibold text-white">SARAH JOHNSON</h4> | |
<p class="text-blue-400 text-sm">Founder, Insightlytics</p> | |
</div> | |
</div> | |
<p class="text-gray-300 italic"> | |
"As a non-technical founder, Architech has been a game-changer. I built a customer sentiment analysis tool in 15 minutes that would have taken months and thousands of dollars to develop traditionally." | |
</p> | |
<div class="flex mt-4"> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
</div> | |
<div class="mt-4 text-xs text-blue-400 font-mono">MODEL_DEPLOYED: SENTIMENT_ANALYZER_V2</div> | |
</div> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="David Chen" class="w-12 h-12 rounded-full border border-blue-400 mr-4"> | |
<div> | |
<h4 class="font-semibold text-white">DAVID CHEN</h4> | |
<p class="text-blue-400 text-sm">AI Researcher, Stanford</p> | |
</div> | |
</div> | |
<p class="text-gray-300 italic"> | |
"Architech has transformed how we prototype research ideas. We can test hypotheses about model architectures in minutes instead of weeks. It's like having an entire engineering team at your fingertips." | |
</p> | |
<div class="flex mt-4"> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
</div> | |
<div class="mt-4 text-xs text-blue-400 font-mono">MODEL_DEPLOYED: RESEARCH_PROTOTYPE_7B</div> | |
</div> | |
<div class="cyber-card p-8 rounded-xl"> | |
<div class="flex items-center mb-4"> | |
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Maria Rodriguez" class="w-12 h-12 rounded-full border border-blue-400 mr-4"> | |
<div> | |
<h4 class="font-semibold text-white">MARIA RODRIGUEZ</h4> | |
<p class="text-blue-400 text-sm">Creative Director</p> | |
</div> | |
</div> | |
<p class="text-gray-300 italic"> | |
"I created an AI that generates poetry in the style of different historical periods for an interactive museum exhibit. The creative possibilities with Architech are endless—it's like magic for bringing ideas to life." | |
</p> | |
<div class="flex mt-4"> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
<i class="fas fa-star text-yellow-400"></i> | |
</div> | |
<div class="mt-4 text-xs text-blue-400 font-mono">MODEL_DEPLOYED: POETIC_GENERATOR_V3</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- CTA Section --> | |
<section class="relative py-20 overflow-hidden"> | |
<div class="absolute inset-0 bg-gradient-to-r from-blue-900/50 to-purple-900/50"></div> | |
<div class="absolute inset-0" style="background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cGF0aCBkPSJNMjUgMTVMMTUgMjVMMjUgMzVNMjUgMTVMMzUgMjVMMjUgMzUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz48L3N2Zz4=')"></div> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10 text-center"> | |
<h2 class="text-3xl md:text-5xl font-bold text-white mb-6 font-['Orbitron'] cyber-glow">READY TO BUILD YOUR AI?</h2> | |
<div class="holographic-line w-32 mx-auto my-6"></div> | |
<p class="text-xl text-gray-300 max-w-3xl mx-auto mb-8"> | |
Your ideas deserve to be built—fast, easy, and without technical barriers. With Architech, if you can dream it, you can build it. | |
</p> | |
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4"> | |
<a href="#" class="cyber-button px-8 py-4 rounded-md text-lg font-semibold transition duration-300"> | |
START YOUR FREE TRIAL <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
<a href="#" class="cyber-button-outline px-8 py-4 rounded-md text-lg font-semibold transition duration-300"> | |
SCHEDULE A DEMO | |
</a> | |
</div> | |
<div class="mt-8"> | |
<p class="text-gray-400 text-sm">NO CREDIT CARD REQUIRED • 14-DAY FREE TRIAL</p> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-black bg-opacity-80 py-12 border-t border-gray-800 backdrop-filter backdrop-blur-lg"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
<div class="md:col-span-2"> | |
<div class="flex items-center mb-4"> | |
<div class="h-8 w-8 rounded-full bg-gradient-to-br from-purple-600 to-blue-500 flex items-center justify-center mr-2"> | |
<i class="fas fa-robot text-white text-sm"></i> | |
</div> | |
<span class="text-xl font-bold text-white font-['Orbitron'] tracking-tight">ARCHITECH</span> | |
</div> | |
<p class="text-gray-400 mb-4"> | |
The future of AI creation—where anyone can build custom Large Language Models without writing a single line of code. | |
</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-twitter text-xl"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-linkedin text-xl"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-github text-xl"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-discord text-xl"></i> | |
</a> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-white mb-4 font-['Orbitron']">PRODUCT</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Features</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Pricing</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Use Cases</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Integrations</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-white mb-4 font-['Orbitron']">COMPANY</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">About</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Blog</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Careers</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> | |
</ul> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
<p class="text-gray-500 text-sm mb-4 md:mb-0"> | |
© 2023 ARCHITECH. ALL RIGHTS RESERVED. | |
</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm transition duration-300">PRIVACY POLICY</a> | |
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm transition duration-300">TERMS OF SERVICE</a> | |
<a href="#" class="text-gray-500 hover:text-gray-300 text-sm transition duration-300">COOKIES</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Simple animation for the pricing cards | |
document.addEventListener('DOMContentLoaded', function() { | |
const pricingCards = document.querySelectorAll('.cyber-card'); | |
pricingCards.forEach(card => { | |
card.addEventListener('mouseenter', function() { | |
this.style.transition = 'all 0.3s ease'; | |
}); | |
card.addEventListener('mouseleave', function() { | |
this.style.transition = 'all 0.3s ease'; | |
}); | |
}); | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
}); | |
}); | |
// Terminal typing effect for the hero section | |
const terminalTexts = [ | |
"USER_INPUT: 'Create an AI that can analyze customer feedback...'", | |
"ARCHITECTURE_GENERATED: ✓", | |
"MODULE_LOADED: sentiment_analysis", | |
"MODULE_LOADED: topic_modeling", | |
"STATUS: READY_TO_DEPLOY" | |
]; | |
let currentTerminalText = 0; | |
const terminalElement = document.querySelector('.terminal p:last-child'); | |
if (terminalElement) { | |
setInterval(() => { | |
terminalElement.textContent = terminalTexts[currentTerminalText]; | |
currentTerminalText = (currentTerminalText + 1) % terminalTexts.length; | |
}, 3000); | |
} | |
}); | |
</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=BathSalt-1/architech-1" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body> | |
</html> |