Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>ArchiTech AI | Smart Design Studio</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Space+Grotesk:wght@400;600;700&display=swap'); | |
| body { | |
| font-family: 'Archivo', sans-serif; | |
| overflow-x: hidden; | |
| } | |
| .gradient-text { | |
| background: linear-gradient(90deg, #3b82f6, #8b5cf6); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .design-canvas { | |
| border: 2px dashed rgba(59, 130, 246, 0.5); | |
| transition: all 0.3s ease; | |
| } | |
| .design-canvas:hover { | |
| border-color: rgba(59, 130, 246, 0.8); | |
| } | |
| .ai-command-input { | |
| transition: all 0.3s ease; | |
| } | |
| .ai-command-input:focus { | |
| box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); | |
| } | |
| .pen-connect-animation { | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { transform: scale(1); opacity: 1; } | |
| 50% { transform: scale(1.05); opacity: 0.8; } | |
| 100% { transform: scale(1); opacity: 1; } | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Vanta.js Background --> | |
| <div id="vanta-bg" class="fixed inset-0 -z-10"></div> | |
| <!-- Navigation --> | |
| <nav class="bg-white/80 backdrop-blur-md shadow-sm fixed w-full z-50"> | |
| <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"> | |
| <i data-feather="pen-tool" class="text-indigo-600 mr-2"></i> | |
| <span class="text-xl font-bold text-gray-800">Archi<span class="gradient-text">Tech</span> AI</span> | |
| </div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Home</a> | |
| <a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">2D Design</a> | |
| <a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">3D Systems</a> | |
| <a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">AI Tools</a> | |
| <a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Smart Pens</a> | |
| </div> | |
| <button class="md:hidden"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| <div class="hidden md:block"> | |
| <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-lg font-medium flex items-center"> | |
| <i data-feather="download" class="mr-2"></i> Get App | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid md:grid-cols-2 gap-12 items-center"> | |
| <div> | |
| <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6 leading-tight"> | |
| Revolutionizing Architecture with <span class="gradient-text">AI-Powered Design</span> | |
| </h1> | |
| <p class="text-lg text-gray-600 mb-8"> | |
| Sketch, design, and visualize architectural projects effortlessly with our intelligent AI assistant. | |
| From precise 2D layouts to immersive 3D models - all with voice commands and our Smart Pen technology. | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4"> | |
| <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg font-medium flex items-center justify-center"> | |
| <i data-feather="play" class="mr-2"></i> Watch Demo | |
| </button> | |
| <button class="border border-indigo-600 text-indigo-600 hover:bg-indigo-50 px-6 py-3 rounded-lg font-medium flex items-center justify-center"> | |
| <i data-feather="shopping-bag" class="mr-2"></i> Get Smart Pen | |
| </button> | |
| </div> | |
| </div> | |
| <div class="relative"> | |
| <div class="bg-white p-4 rounded-xl shadow-xl border border-gray-100"> | |
| <div class="design-canvas h-80 w-full bg-gray-50 rounded-lg relative overflow-hidden" id="demoCanvas"> | |
| <!-- This would be the interactive canvas --> | |
| <div class="absolute inset-0 flex items-center justify-center"> | |
| <p class="text-gray-400">Interactive Design Area</p> | |
| </div> | |
| </div> | |
| <div class="mt-4"> | |
| <div class="flex items-center bg-gray-100 rounded-lg p-3 ai-command-input"> | |
| <i data-feather="mic" class="text-indigo-600 mr-3"></i> | |
| <input type="text" placeholder="Try saying: 'Draw a straight wall 5m long here'" class="bg-transparent w-full focus:outline-none"> | |
| <button class="ml-2 bg-indigo-600 text-white p-2 rounded-full"> | |
| <i data-feather="send" class="w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="absolute -bottom-6 -right-6 bg-indigo-100 p-4 rounded-full shadow-lg pen-connect-animation"> | |
| <i data-feather="bluetooth" class="text-indigo-600 w-6 h-6"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="py-16 px-4 sm:px-6 lg:px-8 bg-white/50 backdrop-blur-sm"> | |
| <div class="max-w-7xl mx-auto"> | |
| <h2 class="text-3xl font-bold text-center text-gray-900 mb-12">Powerful Features for Architects</h2> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Feature 1 --> | |
| <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 hover:shadow-md transition-all"> | |
| <div class="bg-indigo-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="edit-3" class="text-indigo-600"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-3">AI-Assisted Sketching</h3> | |
| <p class="text-gray-600"> | |
| Simply point with your Smart Pen and command the AI to create precise elements like walls, doors, and windows. | |
| </p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 hover:shadow-md transition-all"> | |
| <div class="bg-indigo-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="box" class="text-indigo-600"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-3">Instant 3D Conversion</h3> | |
| <p class="text-gray-600"> | |
| Transform your 2D sketches into fully-realized 3D models with a single command, complete with materials and lighting. | |
| </p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 hover:shadow-md transition-all"> | |
| <div class="bg-indigo-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4"> | |
| <i data-feather="pen-tool" class="text-indigo-600"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-3">Smart Pen Technology</h3> | |
| <p class="text-gray-600"> | |
| Our proprietary Smart Pens detect position, pressure, and angle for the most natural digital drafting experience. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- How It Works Section --> | |
| <section class="py-20 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto"> | |
| <h2 class="text-3xl font-bold text-center text-gray-900 mb-4">How ArchiTech AI Works</h2> | |
| <p class="text-lg text-gray-600 text-center mb-12 max-w-3xl mx-auto"> | |
| Transforming your architectural workflow with intuitive AI commands and precision design tools | |
| </p> | |
| <div class="grid md:grid-cols-4 gap-6"> | |
| <!-- Step 1 --> | |
| <div class="relative"> | |
| <div class="bg-indigo-600 text-white w-10 h-10 rounded-full flex items-center justify-center font-bold absolute -left-1 -top-1 z-10">1</div> | |
| <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 h-full pt-12"> | |
| <h3 class="text-lg font-bold text-gray-800 mb-2">Connect Your Smart Pen</h3> | |
| <p class="text-gray-600"> | |
| Pair your ArchiTech Smart Pen via Bluetooth for millimeter-accurate positioning. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Step 2 --> | |
| <div class="relative"> | |
| <div class="bg-indigo-600 text-white w-10 h-10 rounded-full flex items-center justify-center font-bold absolute -left-1 -top-1 z-10">2</div> | |
| <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 h-full pt-12"> | |
| <h3 class="text-lg font-bold text-gray-800 mb-2">Point & Command</h3> | |
| <p class="text-gray-600"> | |
| Position your pen and say "Draw a 5m wall here" or "Add window at this point". | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Step 3 --> | |
| <div class="relative"> | |
| <div class="bg-indigo-600 text-white w-10 h-10 rounded-full flex items-center justify-center font-bold absolute -left-1 -top-1 z-10">3</div> | |
| <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 h-full pt-12"> | |
| <h3 class="text-lg font-bold text-gray-800 mb-2">AI Creates Perfect Elements</h3> | |
| <p class="text-gray-600"> | |
| Our AI generates perfectly straight lines, right angles, and to-scale elements instantly. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Step 4 --> | |
| <div class="relative"> | |
| <div class="bg-indigo-600 text-white w-10 h-10 rounded-full flex items-center justify-center font-bold absolute -left-1 -top-1 z-10">4</div> | |
| <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100 h-full pt-12"> | |
| <h3 class="text-lg font-bold text-gray-800 mb-2">Convert to 3D</h3> | |
| <p class="text-gray-600"> | |
| Toggle to 3D view to see your design come to life with realistic materials and lighting. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Smart Pen Section --> | |
| <section class="py-20 px-4 sm:px-6 lg:px-8 bg-indigo-50"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid md:grid-cols-2 gap-12 items-center"> | |
| <div class="order-2 md:order-1"> | |
| <h2 class="text-3xl font-bold text-gray-900 mb-6">ArchiTech Smart Pen</h2> | |
| <p class="text-lg text-gray-600 mb-6"> | |
| Our proprietary Smart Pen technology revolutionizes architectural drafting with: | |
| </p> | |
| <ul class="space-y-4 mb-8"> | |
| <li class="flex items-start"> | |
| <i data-feather="check-circle" class="text-indigo-600 mr-3 mt-1"></i> | |
| <span class="text-gray-700">Sub-millimeter positional accuracy</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check-circle" class="text-indigo-600 mr-3 mt-1"></i> | |
| <span class="text-gray-700">2048 levels of pressure sensitivity</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check-circle" class="text-indigo-600 mr-3 mt-1"></i> | |
| <span class="text-gray-700">60° angle detection for natural drafting</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-feather="check-circle" class="text-indigo-600 mr-3 mt-1"></i> | |
| <span class="text-gray-700">Built-in microphone for voice commands</span> | |
| </li> | |
| </ul> | |
| <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg font-medium flex items-center"> | |
| <i data-feather="shopping-bag" class="mr-2"></i> Order Now ($129) | |
| </button> | |
| </div> | |
| <div class="order-1 md:order-2 flex justify-center"> | |
| <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-200 relative"> | |
| <img src="http://static.photos/technology/640x360/42" alt="Smart Pen" class="rounded-lg w-full max-w-md"> | |
| <div class="absolute -bottom-4 -right-4 bg-indigo-600 text-white px-4 py-2 rounded-full shadow-lg"> | |
| New Generation 3.0 | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="py-20 px-4 sm:px-6 lg:px-8 bg-white"> | |
| <div class="max-w-7xl mx-auto"> | |
| <h2 class="text-3xl font-bold text-center text-gray-900 mb-12">Trusted by Leading Architects</h2> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Testimonial 1 --> | |
| <div class="bg-gray-50 p-6 rounded-xl border border-gray-200"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full overflow-hidden mr-4"> | |
| <img src="http://static.photos/people/200x200/1" alt="Sarah Johnson" class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-gray-800">Sarah Johnson</h4> | |
| <p class="text-sm text-gray-500">Principal Architect, DesignCo</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600"> | |
| "ArchiTech AI has cut our initial design phase time by 60%. The ability to quickly sketch and convert to 3D is revolutionary." | |
| </p> | |
| <div class="flex mt-4"> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| </div> | |
| </div> | |
| <!-- Testimonial 2 --> | |
| <div class="bg-gray-50 p-6 rounded-xl border border-gray-200"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full overflow-hidden mr-4"> | |
| <img src="http://static.photos/people/200x200/2" alt="Michael Chen" class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-gray-800">Michael Chen</h4> | |
| <p class="text-sm text-gray-500">Design Director, UrbanForm</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600"> | |
| "The Smart Pen's precision combined with AI commands makes this the most efficient drafting tool I've ever used." | |
| </p> | |
| <div class="flex mt-4"> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| </div> | |
| </div> | |
| <!-- Testimonial 3 --> | |
| <div class="bg-gray-50 p-6 rounded-xl border border-gray-200"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 rounded-full overflow-hidden mr-4"> | |
| <img src="http://static.photos/people/200x200/3" alt="Elena Rodriguez" class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-gray-800">Elena Rodriguez</h4> | |
| <p class="text-sm text-gray-500">Founder, StudioE</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600"> | |
| "What used to take hours now takes minutes. The AI understands architectural terminology perfectly." | |
| </p> | |
| <div class="flex mt-4"> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="text-yellow-400 w-4 h-4 fill-current"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-16 px-4 sm:px-6 lg:px-8 bg-gradient-to-r from-indigo-600 to-purple-600 text-white"> | |
| <div class="max-w-4xl mx-auto text-center"> | |
| <h2 class="text-3xl font-bold mb-6">Ready to Transform Your Design Process?</h2> | |
| <p class="text-lg mb-8 opacity-90"> | |
| Join thousands of architects using ArchiTech AI to create better designs faster. | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4 justify-center"> | |
| <button class="bg-white text-indigo-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium flex items-center justify-center"> | |
| <i data-feather="download" class="mr-2"></i> Download Now | |
| </button> | |
| <button class="bg-transparent border-2 border-white hover:bg-white/10 px-6 py-3 rounded-lg font-medium flex items-center justify-center"> | |
| <i data-feather="video" class="mr-2"></i> Watch Tutorial | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="max-w-7xl mx-auto"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center mb-4"> | |
| <i data-feather="pen-tool" class="text-indigo-400 mr-2"></i> | |
| <span class="text-xl font-bold">Archi<span class="text-indigo-400">Tech</span> AI</span> | |
| </div> | |
| <p class="text-gray-400 mb-4"> | |
| Revolutionizing architectural design with AI-powered tools and Smart Pen technology. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="instagram"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="youtube"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Product</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Features</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Smart Pens</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Tutorials</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Company</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Resources</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Community</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">API Docs</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Webinars</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-400 text-sm mb-4 md:mb-0"> | |
| © 2023 ArchiTech AI. All rights reserved. | |
| </p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a> | |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a> | |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Cookie Policy</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Initialize Vanta.js background | |
| VANTA.NET({ | |
| el: "#vanta-bg", | |
| mouseControls: true, | |
| touchControls: true, | |
| gyroControls: false, | |
| minHeight: 200.00, | |
| minWidth: 200.00, | |
| scale: 1.00, | |
| scaleMobile: 1.00, | |
| color: 0x6366f1, | |
| backgroundColor: 0xf8fafc, | |
| points: 9.00, | |
| maxDistance: 22.00, | |
| spacing: 18.00 | |
| }); | |
| // Initialize feather icons | |
| feather.replace(); | |
| // Demo animation for the canvas | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const canvas = document.getElementById('demoCanvas'); | |
| canvas.addEventListener('click', function() { | |
| this.classList.add('bg-indigo-50'); | |
| setTimeout(() => { | |
| this.classList.remove('bg-indigo-50'); | |
| }, 300); | |
| // This would be where actual canvas interactions would happen | |
| const demoText = this.querySelector('p'); | |
| demoText.textContent = "AI drawing: 5m straight wall"; | |
| demoText.classList.add('text-indigo-600', 'font-medium'); | |
| setTimeout(() => { | |
| demoText.textContent = "Interactive Design Area"; | |
| demoText.classList.remove('text-indigo-600', 'font-medium'); | |
| }, 2000); | |
| }); | |
| }); | |
| </script> | |
| </body> | |
| </html> | |