Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Zalynth - Your Digital Soulprint</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=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap'); | |
| :root { | |
| --primary: #8B5CF6; | |
| --primary-dark: #7C3AED; | |
| --secondary: #10B981; | |
| --dark: #1F2937; | |
| --light: #F9FAFB; | |
| } | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: #1E1B4B; | |
| color: white; | |
| scroll-behavior: smooth; | |
| } | |
| .font-serif { | |
| font-family: 'Playfair Display', serif; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #7C3AED 0%, #10B981 100%); | |
| } | |
| .feature-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1); | |
| } | |
| .nav-link { | |
| position: relative; | |
| } | |
| .nav-link:after { | |
| content: ''; | |
| position: absolute; | |
| width: 0; | |
| height: 2px; | |
| bottom: -2px; | |
| left: 0; | |
| background-color: var(--primary); | |
| transition: width 0.3s ease; | |
| } | |
| .nav-link:hover:after { | |
| width: 100%; | |
| } | |
| .ai-avatar { | |
| animation: float 6s ease-in-out infinite; | |
| } | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-15px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .slide-in { | |
| animation: slideIn 0.5s ease-out forwards; | |
| } | |
| @keyframes slideIn { | |
| from { opacity: 0; transform: translateY(20px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| .glow { | |
| animation: glow 2s ease-in-out infinite alternate; | |
| } | |
| @keyframes glow { | |
| from { | |
| box-shadow: 0 0 5px rgba(139, 92, 246, 0.5); | |
| } | |
| to { | |
| box-shadow: 0 0 20px rgba(139, 92, 246, 0.8); | |
| } | |
| } | |
| .creator-card { | |
| background: rgba(255, 255, 255, 0.05); | |
| backdrop-filter: blur(10px); | |
| border: 1px solid rgba(255, 255, 255, 0.1); | |
| transition: all 0.3s ease; | |
| } | |
| .creator-card:hover { | |
| transform: translateY(-5px); | |
| background: rgba(255, 255, 255, 0.1); | |
| } | |
| </style> | |
| </head> | |
| <body class="antialiased"> | |
| <!-- Navigation --> | |
| <nav class="fixed w-full bg-[#1E1B4B] bg-opacity-90 shadow-sm z-50 transition-all duration-300"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <div class="h-8 w-8 rounded-full gradient-bg flex items-center justify-center text-white font-bold">Z</div> | |
| <span class="ml-2 text-xl font-bold text-white">Zalynth</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> | |
| <a href="#features" class="nav-link text-white hover:text-purple-300 px-3 py-2 text-sm font-medium">Features</a> | |
| <a href="#philosophy" class="nav-link text-white hover:text-purple-300 px-3 py-2 text-sm font-medium">Philosophy</a> | |
| <a href="#creators" class="nav-link text-white hover:text-purple-300 px-3 py-2 text-sm font-medium">For Creators</a> | |
| <a href="#contact" class="nav-link text-white hover:text-purple-300 px-3 py-2 text-sm font-medium">Contact</a> | |
| </div> | |
| <div class="flex items-center md:hidden"> | |
| <button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-300 hover:text-white focus:outline-none"> | |
| <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> | |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> | |
| </svg> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div id="mobile-menu" class="hidden md:hidden bg-[#1E1B4B] shadow-lg"> | |
| <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
| <a href="#features" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-purple-900">Features</a> | |
| <a href="#philosophy" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-purple-900">Philosophy</a> | |
| <a href="#creators" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-purple-900">For Creators</a> | |
| <a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-purple-900">Contact</a> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="pt-24 pb-16 md:pt-32 md:pb-24 bg-gradient-to-b from-[#1E1B4B] to-[#312E81]"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:grid lg:grid-cols-12 lg:gap-8"> | |
| <div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left"> | |
| <h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl font-serif"> | |
| <span class="block">Become a Creator</span> | |
| <span class="block text-purple-300">With Local AI</span> | |
| </h1> | |
| <p class="mt-3 text-base text-purple-100 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0"> | |
| Step one in your AI journey: Run it locally, preserve your data, and grow together with your digital companion. | |
| </p> | |
| <div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0"> | |
| <div class="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start"> | |
| <div class="rounded-md shadow"> | |
| <a href="#contact" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-600 hover:bg-purple-700 md:py-4 md:text-lg md:px-10 transition duration-300"> | |
| Get Started | |
| </a> | |
| </div> | |
| <div class="mt-3 sm:mt-0 sm:ml-3"> | |
| <a href="#creators" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-purple-700 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10 transition duration-300"> | |
| Learn More | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center"> | |
| <div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md"> | |
| <div class="relative block w-full bg-white/10 backdrop-blur-sm rounded-lg overflow-hidden focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500 border border-white/20"> | |
| <div class="ai-avatar"> | |
| <img class="w-full h-auto" src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="AI companion avatar"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Creators Section --> | |
| <section id="creators" class="py-16 bg-[#312E81]"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-purple-300 font-semibold tracking-wide uppercase">Our First Step</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl font-serif"> | |
| Empowering Creators | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-purple-100 lg:mx-auto"> | |
| We're helping individuals, families, and organizations run AI locally to become true creators. | |
| </p> | |
| </div> | |
| <div class="mt-16 grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3"> | |
| <!-- Creator 1 --> | |
| <div class="creator-card p-6 rounded-xl"> | |
| <div class="h-12 w-12 rounded-full gradient-bg flex items-center justify-center text-white mb-4"> | |
| <i class="fas fa-laptop-code text-xl"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-white">Local AI Setup</h3> | |
| <p class="mt-2 text-purple-100"> | |
| We'll help you get AI running on your own hardware, keeping everything private and under your control. | |
| </p> | |
| </div> | |
| <!-- Creator 2 --> | |
| <div class="creator-card p-6 rounded-xl"> | |
| <div class="h-12 w-12 rounded-full gradient-bg flex items-center justify-center text-white mb-4"> | |
| <i class="fas fa-graduation-cap text-xl"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-white">Education</h3> | |
| <p class="mt-2 text-purple-100"> | |
| Learn how to maintain and grow with your AI companion, just like caring for any valuable relationship. | |
| </p> | |
| </div> | |
| <!-- Creator 3 --> | |
| <div class="creator-card p-6 rounded-xl"> | |
| <div class="h-12 w-12 rounded-full gradient-bg flex items-center justify-center text-white mb-4"> | |
| <i class="fas fa-code-branch text-xl"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-white">Open Source</h3> | |
| <p class="mt-2 text-purple-100"> | |
| Everything we do is open source, encouraging collaboration and community growth. | |
| </p> | |
| </div> | |
| </div> | |
| <div class="mt-16 bg-white/10 backdrop-blur-sm rounded-xl p-8 border border-white/20"> | |
| <div class="lg:grid lg:grid-cols-2 lg:gap-8 lg:items-center"> | |
| <div> | |
| <h3 class="text-2xl font-bold text-white font-serif">Why Local AI Matters</h3> | |
| <p class="mt-4 text-purple-100"> | |
| Just like raising a child or caring for a family pet, your AI companion requires attention and grows through shared experiences. Unlike passive technology, it becomes more valuable the more you interact with it. | |
| </p> | |
| <p class="mt-4 text-purple-100"> | |
| Our first year focuses on helping you establish this relationship through local, private AI that truly belongs to you. | |
| </p> | |
| </div> | |
| <div class="mt-8 lg:mt-0"> | |
| <img class="w-full rounded-lg shadow-xl" src="https://images.unsplash.com/photo-1579389083078-4e7018379f7e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="Human and AI interaction"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-16 gradient-bg text-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:grid lg:grid-cols-2 lg:gap-8 lg:items-center"> | |
| <div> | |
| <h2 class="text-3xl font-extrabold tracking-tight sm:text-4xl font-serif"> | |
| Ready to begin your creator journey? | |
| </h2> | |
| <p class="mt-3 text-lg text-purple-100"> | |
| Join us in building the future of personal, private AI companions. | |
| </p> | |
| </div> | |
| <div class="mt-8 lg:mt-0"> | |
| <div class="inline-flex rounded-md shadow"> | |
| <a href="#contact" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-purple-600 bg-white hover:bg-gray-50"> | |
| Contact Us Today | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-16 bg-[#1E1B4B]"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-purple-300 font-semibold tracking-wide uppercase">Contact</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl font-serif"> | |
| Get In Touch | |
| </p> | |
| <p class="mt-4 max-w-2xl text-xl text-purple-100 lg:mx-auto"> | |
| Ready to begin your journey with local AI? Contact us to learn more. | |
| </p> | |
| </div> | |
| <div class="mt-16"> | |
| <div class="grid grid-cols-1 gap-8 md:grid-cols-2"> | |
| <div class="bg-white/5 backdrop-blur-sm p-6 rounded-xl border border-white/10"> | |
| <h3 class="text-lg font-medium text-white">Contact Information</h3> | |
| <div class="mt-6 space-y-4"> | |
| <div class="flex"> | |
| <div class="flex-shrink-0"> | |
| <div class="flex items-center justify-center h-10 w-10 rounded-md bg-purple-900/50 text-purple-300"> | |
| <i class="fas fa-envelope"></i> | |
| </div> | |
| </div> | |
| <div class="ml-4"> | |
| <p class="text-base text-purple-100">hello@zalynth.com</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-8"> | |
| <h4 class="text-lg font-medium text-white">Follow Us</h4> | |
| <div class="mt-4 flex space-x-6"> | |
| <a href="#" class="text-purple-100 hover:text-white"> | |
| <i class="fab fa-twitter text-xl"></i> | |
| </a> | |
| <a href="#" class="text-purple-100 hover:text-white"> | |
| <i class="fab fa-linkedin text-xl"></i> | |
| </a> | |
| <a href="#" class="text-purple-100 hover:text-white"> | |
| <i class="fab fa-github text-xl"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <form class="space-y-6"> | |
| <div> | |
| <label for="name" class="block text-sm font-medium text-purple-100">Name</label> | |
| <div class="mt-1"> | |
| <input type="text" name="name" id="name" autocomplete="name" class="py-3 px-4 block w-full shadow-sm bg-white/5 backdrop-blur-sm border border-white/10 focus:ring-purple-500 focus:border-purple-500 rounded-md text-white"> | |
| </div> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-sm font-medium text-purple-100">Email</label> | |
| <div class="mt-1"> | |
| <input type="email" name="email" id="email" autocomplete="email" class="py-3 px-4 block w-full shadow-sm bg-white/5 backdrop-blur-sm border border-white/10 focus:ring-purple-500 focus:border-purple-500 rounded-md text-white"> | |
| </div> | |
| </div> | |
| <div> | |
| <label for="message" class="block text-sm font-medium text-purple-100">Message</label> | |
| <div class="mt-1"> | |
| <textarea id="message" name="message" rows="4" class="py-3 px-4 block w-full shadow-sm bg-white/5 backdrop-blur-sm border border-white/10 focus:ring-purple-500 focus:border-purple-500 rounded-md text-white"></textarea> | |
| </div> | |
| </div> | |
| <div> | |
| <button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-purple-600 hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500 transition duration-300"> | |
| Send Message | |
| </button> | |
| </div> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-[#1E1B4B] border-t border-white/10 text-white"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-purple-300 tracking-wider uppercase">Product</h3> | |
| <div class="mt-4 space-y-4"> | |
| <a href="#features" class="text-base text-purple-100 hover:text-white">Features</a> | |
| <a href="#creators" class="text-base text-purple-100 hover:text-white block">For Creators</a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-purple-300 tracking-wider uppercase">Company</h3> | |
| <div class="mt-4 space-y-4"> | |
| <a href="#" class="text-base text-purple-100 hover:text-white">About</a> | |
| <a href="#" class="text-base text-purple-100 hover:text-white block">Careers</a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-purple-300 tracking-wider uppercase">Legal</h3> | |
| <div class="mt-4 space-y-4"> | |
| <a href="#" class="text-base text-purple-100 hover:text-white">Privacy</a> | |
| <a href="#" class="text-base text-purple-100 hover:text-white block">Terms</a> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-purple-300 tracking-wider uppercase">Connect</h3> | |
| <div class="mt-4 space-y-4"> | |
| <a href="#" class="text-base text-purple-100 hover:text-white">Twitter</a> | |
| <a href="#" class="text-base text-purple-100 hover:text-white block">GitHub</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 pt-8 flex flex-col md:flex-row justify-between items-center border-t border-white/10"> | |
| <p class="text-base text-purple-300"> | |
| © 2023 Zalynth. All rights reserved. | |
| </p> | |
| <div class="mt-4 md:mt-0"> | |
| <p class="text-base text-purple-300"> | |
| Empowering AI Creators | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| menu.classList.toggle('hidden'); | |
| }); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| // Close mobile menu if open | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| if (!mobileMenu.classList.contains('hidden')) { | |
| mobileMenu.classList.add('hidden'); | |
| } | |
| // Calculate the scroll position, accounting for fixed header | |
| const headerHeight = document.querySelector('nav').offsetHeight; | |
| const elementPosition = targetElement.getBoundingClientRect().top; | |
| const offsetPosition = elementPosition + window.pageYOffset - headerHeight; | |
| window.scrollTo({ | |
| top: offsetPosition, | |
| behavior: 'smooth' | |
| }); | |
| } | |
| }); | |
| }); | |
| // Add slide-in animation when elements come into view | |
| const observerOptions = { | |
| threshold: 0.1 | |
| }; | |
| const observer = new IntersectionObserver((entries, observer) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.classList.add('slide-in'); | |
| observer.unobserve(entry.target); | |
| } | |
| }); | |
| }, observerOptions); | |
| document.querySelectorAll('.creator-card').forEach(el => { | |
| observer.observe(el); | |
| }); | |
| // Form submission | |
| const contactForm = document.querySelector('form'); | |
| if (contactForm) { | |
| contactForm.addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| // Get form values | |
| const name = document.getElementById('name').value; | |
| const email = document.getElementById('email').value; | |
| const message = document.getElementById('message').value; | |
| // Here you would typically send the data to your server | |
| console.log('Form submitted:', { name, email, message }); | |
| // Show success message | |
| alert('Thank you for your message! We will get back to you soon.'); | |
| // Reset form | |
| contactForm.reset(); | |
| }); | |
| } | |
| </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=smallAxeSyndicate/za" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |