genelang-com / index.html
tongxiaojun's picture
DNA Visualization 图片无法显示。 - Follow Up Deployment
12c91cf verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Genelang | Gene Language Technology</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>
.gradient-bg {
background: linear-gradient(135deg, #6B73FF 0%, #000DFF 50%, #00D4FF 100%);
}
.dna-animation {
position: relative;
height: 100px;
overflow: hidden;
}
.dna-strand {
position: absolute;
width: 100%;
height: 100%;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="3" fill="white"/><circle cx="30" cy="30" r="3" fill="white"/><circle cx="50" cy="10" r="3" fill="white"/><circle cx="70" cy="30" r="3" fill="white"/><circle cx="90" cy="10" r="3" fill="white"/><circle cx="10" cy="50" r="3" fill="white"/><circle cx="30" cy="70" r="3" fill="white"/><circle cx="50" cy="50" r="3" fill="white"/><circle cx="70" cy="70" r="3" fill="white"/><circle cx="90" cy="50" r="3" fill="white"/><circle cx="10" cy="90" r="3" fill="white"/><circle cx="30" cy="70" r="3" fill="white"/><circle cx="50" cy="90" r="3" fill="white"/><circle cx="70" cy="70" r="3" fill="white"/><circle cx="90" cy="90" r="3" fill="white"/><path d="M10,10 L30,30 L50,10 L70,30 L90,10" stroke="white" stroke-width="1" fill="none"/><path d="M10,50 L30,70 L50,50 L70,70 L90,50" stroke="white" stroke-width="1" fill="none"/><path d="M10,90 L30,70 L50,90 L70,70 L90,90" stroke="white" stroke-width="1" fill="none"/></svg>') repeat;
animation: dnaMove 20s linear infinite;
}
@keyframes dnaMove {
0% { background-position: 0 0; }
100% { background-position: 100px 100px; }
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.typewriter {
overflow: hidden;
border-right: .15em solid #3B82F6;
white-space: nowrap;
margin: 0 auto;
letter-spacing: .15em;
animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #3B82F6; }
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Header -->
<header class="gradient-bg text-white">
<div class="container mx-auto px-4 py-6">
<nav class="flex items-center justify-between">
<div class="flex items-center space-x-2">
<i class="fas fa-dna text-2xl"></i>
<span class="text-2xl font-bold">Genelang</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="hover:text-blue-200 transition">Home</a>
<a href="#features" class="hover:text-blue-200 transition">Features</a>
<a href="#technology" class="hover:text-blue-200 transition">Technology</a>
<a href="#pricing" class="hover:text-blue-200 transition">Pricing</a>
<a href="#contact" class="hover:text-blue-200 transition">Contact</a>
</div>
<div class="md:hidden">
<button id="mobile-menu-button" class="text-white focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden mt-4 pb-4">
<a href="#home" class="block py-2 hover:text-blue-200 transition">Home</a>
<a href="#features" class="block py-2 hover:text-blue-200 transition">Features</a>
<a href="#technology" class="block py-2 hover:text-blue-200 transition">Technology</a>
<a href="#pricing" class="block py-2 hover:text-blue-200 transition">Pricing</a>
<a href="#contact" class="block py-2 hover:text-blue-200 transition">Contact</a>
</div>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="gradient-bg text-white py-20">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Decoding the <span class="typewriter">Language of Genes</span></h1>
<p class="text-xl mb-8">Revolutionary technology that translates genetic information into actionable insights for healthcare, research, and biotechnology.</p>
<div class="flex space-x-4">
<button class="bg-white text-blue-600 px-6 py-3 rounded-full font-semibold hover:bg-blue-50 transition">Get Started</button>
<button class="border border-white text-white px-6 py-3 rounded-full font-semibold hover:bg-white hover:text-blue-600 transition">Learn More</button>
</div>
</div>
<div class="md:w-1/2 relative">
<div class="dna-animation">
<div class="dna-strand"></div>
</div>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/DNA_Structure%2BKey%2BLabelled.pn_NoBB.png/600px-DNA_Structure%2BKey%2BLabelled.pn_NoBB.png" alt="DNA Visualization" class="rounded-lg shadow-2xl mx-auto">
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Powerful Features</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Our platform offers cutting-edge capabilities to unlock the potential of genetic data</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="text-blue-500 mb-4">
<i class="fas fa-code text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Gene Sequence Analysis</h3>
<p class="text-gray-600">Advanced algorithms to interpret and analyze genetic sequences with unprecedented accuracy.</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="text-blue-500 mb-4">
<i class="fas fa-chart-line text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Predictive Modeling</h3>
<p class="text-gray-600">Machine learning models that predict phenotypic outcomes from genotypic data.</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md transition duration-300">
<div class="text-blue-500 mb-4">
<i class="fas fa-database text-4xl"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Comprehensive Database</h3>
<p class="text-gray-600">Access to the largest curated repository of genetic information and research findings.</p>
</div>
</div>
</div>
</section>
<!-- Technology Section -->
<section id="technology" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl font-bold mb-6">Our Proprietary Technology</h2>
<p class="text-gray-600 mb-6">Genelang's platform combines artificial intelligence, bioinformatics, and computational biology to create a revolutionary approach to genetic analysis.</p>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-brain text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold">Deep Learning Algorithms</h4>
<p class="text-gray-600">Neural networks trained on millions of genetic samples for precise pattern recognition.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-project-diagram text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold">Network Analysis</h4>
<p class="text-gray-600">Mapping gene-gene interactions and pathway analysis for comprehensive understanding.</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-shield-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-semibold">Secure Infrastructure</h4>
<p class="text-gray-600">Enterprise-grade security and compliance for sensitive genetic data.</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-100 p-6 rounded-xl">
<div class="relative h-64 mb-4">
<div class="absolute inset-0 bg-gradient-to-r from-blue-400 to-blue-600 rounded-lg opacity-75"></div>
<div class="absolute inset-0 flex items-center justify-center">
<i class="fas fa-dna text-white text-8xl opacity-50"></i>
</div>
</div>
<div class="text-center">
<h3 class="text-xl font-semibold mb-2">Interactive Gene Explorer</h3>
<p class="text-gray-600">Visualize and explore genetic relationships with our intuitive interface.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Simple, Transparent Pricing</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Choose the plan that fits your research needs</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto">
<!-- Basic Plan -->
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="p-8">
<h3 class="text-2xl font-semibold mb-2">Basic</h3>
<p class="text-gray-600 mb-6">For individual researchers and small labs</p>
<div class="mb-6">
<span class="text-4xl font-bold">$99</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Up to 10 samples/month</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Basic gene analysis</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Email support</span>
</li>
</ul>
<button class="w-full bg-gray-200 text-gray-800 py-3 rounded-lg font-semibold hover:bg-gray-300 transition">Get Started</button>
</div>
</div>
<!-- Pro Plan -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden transform scale-105">
<div class="bg-blue-600 text-white py-2 text-center font-semibold">
Most Popular
</div>
<div class="p-8">
<h3 class="text-2xl font-semibold mb-2">Professional</h3>
<p class="text-gray-600 mb-6">For research teams and medium-sized labs</p>
<div class="mb-6">
<span class="text-4xl font-bold">$499</span>
<span class="text-gray-500">/month</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Up to 100 samples/month</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Advanced analysis tools</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Priority support</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>API access</span>
</li>
</ul>
<button class="w-full bg-blue-600 text-white py-3 rounded-lg font-semibold hover:bg-blue-700 transition">Get Started</button>
</div>
</div>
<!-- Enterprise Plan -->
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="p-8">
<h3 class="text-2xl font-semibold mb-2">Enterprise</h3>
<p class="text-gray-600 mb-6">For large institutions and biotech companies</p>
<div class="mb-6">
<span class="text-4xl font-bold">Custom</span>
</div>
<ul class="space-y-3 mb-8">
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Unlimited samples</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>All advanced features</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>Dedicated account manager</span>
</li>
<li class="flex items-center">
<i class="fas fa-check text-green-500 mr-2"></i>
<span>On-premise deployment</span>
</li>
</ul>
<button class="w-full bg-gray-800 text-white py-3 rounded-lg font-semibold hover:bg-gray-900 transition">Contact Sales</button>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Trusted by Leading Researchers</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">What our users say about Genelang technology</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"Genelang's platform helped us identify novel genetic markers for our research in record time. The analysis tools are unparalleled."</p>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-gray-300 mr-4 overflow-hidden">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Dr. Sarah Chen" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-semibold">Dr. Sarah Chen</h4>
<p class="text-gray-500 text-sm">Geneticist, Stanford University</p>
</div>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"The predictive modeling capabilities have transformed our approach to personalized medicine. We're seeing results we never thought possible."</p>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-gray-300 mr-4 overflow-hidden">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Dr. James Wilson" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-semibold">Dr. James Wilson</h4>
<p class="text-gray-500 text-sm">Director, MIT Genomics Lab</p>
</div>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-xl">
<div class="flex items-center mb-4">
<div class="text-yellow-400 mr-2">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
<p class="text-gray-600 mb-6">"As a biotech startup, Genelang gave us access to enterprise-level genetic analysis without the enterprise-level costs. Game changer."</p>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-gray-300 mr-4 overflow-hidden">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Dr. Lisa Park" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-semibold">Dr. Lisa Park</h4>
<p class="text-gray-500 text-sm">CEO, GeneTech Solutions</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-900 text-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<h2 class="text-3xl font-bold mb-6">Get In Touch</h2>
<p class="text-gray-300 mb-8">Have questions about our technology or interested in a demo? Our team is ready to help.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-600 p-3 rounded-full mr-4">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-semibold">Email Us</h4>
<p class="text-gray-300">info@genelang.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-600 p-3 rounded-full mr-4">
<i class="fas fa-phone"></i>
</div>
<div>
<h4 class="font-semibold">Call Us</h4>
<p class="text-gray-300">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-600 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-semibold">Visit Us</h4>
<p class="text-gray-300">123 Genome Way, San Francisco, CA 94107</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="bg-gray-800 p-8 rounded-xl">
<div class="mb-6">
<label for="name" class="block text-gray-300 mb-2">Name</label>
<input type="text" id="name" class="w-full bg-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-300 mb-2">Email</label>
<input type="email" id="email" class="w-full bg-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-6">
<label for="subject" class="block text-gray-300 mb-2">Subject</label>
<select id="subject" class="w-full bg-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-blue-500">
<option>General Inquiry</option>
<option>Sales</option>
<option>Technical Support</option>
<option>Partnership</option>
</select>
</div>
<div class="mb-6">
<label for="message" class="block text-gray-300 mb-2">Message</label>
<textarea id="message" rows="4" class="w-full bg-gray-700 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 text-white py-3 rounded-lg font-semibold hover:bg-blue-700 transition">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="py-16 bg-blue-600 text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-2xl font-bold mb-4">Stay Updated with Genelang</h2>
<p class="max-w-2xl mx-auto mb-8">Subscribe to our newsletter for the latest in gene language technology and research breakthroughs.</p>
<div class="max-w-md mx-auto flex">
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg focus:outline-none text-gray-800">
<button class="bg-blue-800 px-6 py-3 rounded-r-lg font-semibold hover:bg-blue-900 transition">Subscribe</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-gray-400 py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-dna text-2xl text-blue-500"></i>
<span class="text-xl font-bold text-white">Genelang</span>
</div>
<p class="mb-4">Advancing the understanding of genetic language through cutting-edge technology.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">About Us</a></li>
<li><a href="#" class="hover:text-white transition">Careers</a></li>
<li><a href="#" class="hover:text-white transition">Press</a></li>
<li><a href="#" class="hover:text-white transition">Blog</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">Documentation</a></li>
<li><a href="#" class="hover:text-white transition">API Reference</a></li>
<li><a href="#" class="hover:text-white transition">Tutorials</a></li>
<li><a href="#" class="hover:text-white transition">Research Papers</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="hover:text-white transition">Terms of Service</a></li>
<li><a href="#" class="hover:text-white transition">Data Security</a></li>
<li><a href="#" class="hover:text-white transition">Compliance</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center">
<p>&copy; 2023 Genelang Technologies. All rights reserved.</p>
</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) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Animation for feature cards on scroll
const featureCards = document.querySelectorAll('.feature-card');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
featureCards.forEach(card => {
card.style.opacity = 0;
card.style.transform = 'translateY(20px)';
card.style.transition = 'all 0.5s ease';
observer.observe(card);
});
</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=tongxiaojun/genelang-com" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>