Spaces:
Running
Running
File size: 24,772 Bytes
34f52fb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 |
<!DOCTYPE html>
<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> |