File size: 16,761 Bytes
709152d 540a60a 709152d 540a60a 709152d 364564c 4f5e6e0 709152d 364564c 709152d 3aab324 364564c 709152d 3aab324 709152d 540a60a 709152d 540a60a 709152d 364564c 4f5e6e0 709152d 4f5e6e0 709152d 4f5e6e0 b08a1ce 3aab324 b08a1ce 3aab324 b08a1ce 4f5e6e0 709152d | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features - ChemiCorr AI</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://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<style>
.feature-card:hover .feature-icon {
transform: rotate(5deg) scale(1.1);
}
.feature-icon {
transition: all 0.3s ease;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<div id="vanta-bg" class="fixed inset-0 z-0"></div>
<div class="relative z-10 min-h-screen flex flex-col">
<!-- Header -->
<header class="bg-gradient-to-r from-blue-600 to-blue-800 text-white shadow-lg">
<div class="container mx-auto px-4 py-6 flex justify-between items-center">
<div class="flex items-center space-x-3">
<i data-feather="flask" class="w-8 h-8 text-blue-200"></i>
<h1 class="text-2xl font-bold">ChemiCorr AI</h1>
</div>
<nav class="hidden md:flex space-x-6">
<a href="index.html" class="hover:text-blue-200 transition">Home</a>
<a href="features.html" class="text-blue-200 font-medium">Features</a>
<a href="about.html" class="hover:text-blue-200 transition">About</a>
<a href="contact.html" class="hover:text-blue-200 transition">Contact & Support</a>
<a href="plans.html" class="hover:text-blue-200 transition">Plans</a>
<a href="login.html" class="hover:text-blue-200 transition">Login/Signup</a>
</nav>
<button id="mobile-menu-button" class="md:hidden text-white">
<i data-feather="menu"></i>
</button>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden absolute top-full left-0 right-0 bg-blue-700 shadow-lg">
<nav class="flex flex-col p-4 space-y-2">
<a href="index.html" class="hover:text-blue-200 transition py-2">Home</a>
<a href="features.html" class="text-blue-200 font-medium py-2">Features</a>
<a href="about.html" class="hover:text-blue-200 transition py-2">About</a>
<a href="contact.html" class="hover:text-blue-200 transition py-2">Contact & Support</a>
<a href="plans.html" class="hover:text-blue-200 transition py-2">Plans</a>
<a href="login.html" class="hover:text-blue-200 transition py-2">Login/Signup</a>
</nav>
</div>
</div>
</header>
<!-- Main Content -->
<main class="flex-grow container mx-auto px-4 py-12">
<div class="max-w-6xl mx-auto">
<!-- Hero Section -->
<section class="text-center mb-16">
<h2 class="text-4xl font-bold text-gray-800 mb-4">Advanced Chemical Corrosion Analysis</h2>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
ChemiCorr AI combines ChatGPT-like interaction with real research from Google Scholar for chemical corrosion analysis.
</p>
</section>
<!-- Features Grid -->
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition">
<div class="feature-icon w-16 h-16 bg-blue-100 rounded-xl flex items-center justify-center mb-6">
<i data-feather="file-text" class="w-8 h-8 text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Smart File Analysis</h3>
<p class="text-gray-600 mb-4">
Automatically extract corrosion data from CSV, Excel, PDF, JSON, and image files with industry-leading accuracy.
</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> CSV/Excel rate measurements</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> PDF inspection reports</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Microscopy images</li>
</ul>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition">
<div class="feature-icon w-16 h-16 bg-blue-100 rounded-xl flex items-center justify-center mb-6">
<i data-feather="trending-up" class="w-8 h-8 text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Visual Trend Analysis</h3>
<p class="text-gray-600 mb-4">
Generate interactive corrosion rate graphs, pit depth maps, and degradation timelines automatically.
</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Time-series charts</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> 3D corrosion maps</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Custom visualization</li>
</ul>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition">
<div class="feature-icon w-16 h-16 bg-blue-100 rounded-xl flex items-center justify-center mb-6">
<i data-feather="alert-circle" class="w-8 h-8 text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Risk Assessment</h3>
<p class="text-gray-600 mb-4">
Get severity ratings and maintenance recommendations based on industry standards and predictive models.
</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> ASTM/NACE standards</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Predictive analytics</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Mitigation strategies</li>
</ul>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition">
<div class="feature-icon w-16 h-16 bg-blue-100 rounded-xl flex items-center justify-center mb-6">
<i data-feather="cpu" class="w-8 h-8 text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-3">AI-Powered Insights</h3>
<p class="text-gray-600 mb-4">
Our advanced machine learning models identify patterns and predict future corrosion behavior.
</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Anomaly detection</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Predictive modeling</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Material degradation</li>
</ul>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition">
<div class="feature-icon w-16 h-16 bg-blue-100 rounded-xl flex items-center justify-center mb-6">
<i data-feather="book" class="w-8 h-8 text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Knowledge Base</h3>
<p class="text-gray-600 mb-4">
Access corrosion science references, standards, and case studies right in the chat interface.
</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Technical references</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Industry standards</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Case studies</li>
</ul>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition">
<div class="feature-icon w-16 h-16 bg-blue-100 rounded-xl flex items-center justify-center mb-6">
<i data-feather="download" class="w-8 h-8 text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Report Generation</h3>
<p class="text-gray-600 mb-4">
Export professional reports with analysis summaries, visualizations, and recommendations.
</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> PDF reports</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Custom templates</li>
<li class="flex items-center"><i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> Shareable links</li>
</ul>
</div>
</div>
<!-- CTA Section -->
<section class="mt-16 bg-gradient-to-r from-blue-600 to-blue-700 rounded-xl p-8 text-white text-center">
<h3 class="text-2xl font-bold mb-4">Ready to transform your corrosion analysis?</h3>
<p class="max-w-2xl mx-auto mb-6 text-blue-100">
Get started with Rust Whisperer AI today and experience intelligent corrosion analysis powered by AI.
</p>
<button class="bg-white text-blue-700 hover:bg-blue-50 px-8 py-3 rounded-lg font-semibold transition inline-flex items-center">
<i data-feather="zap" class="mr-2"></i> Start Free Trial
</button>
</section>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h4 class="text-lg font-semibold mb-4">Rust Whisperer AI</h4>
<p class="text-gray-400">
Advanced corrosion analysis powered by AI for engineers and maintenance professionals.
</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="index.html" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="features.html" class="text-gray-400 hover:text-white transition">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</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 transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Support</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Contact</h4>
<ul class="space-y-2">
<li class="flex items-center text-gray-400"><i data-feather="mail" class="mr-2 w-4 h-4"></i> support@rustwhisperer.ai</li>
<li class="flex items-center text-gray-400"><i data-feather="phone" class="mr-2 w-4 h-4"></i> +1 (555) 123-4567</li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 Rust Whisperer AI. All rights reserved.</p>
</div>
</div>
</footer>
</div>
<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: 0x3b82f6,
backgroundColor: 0xf8fafc,
points: 12.00,
maxDistance: 22.00,
spacing: 18.00
});
// Initialize Feather Icons
feather.replace();
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
if (mobileMenuButton && mobileMenu) {
mobileMenuButton.addEventListener('click', (e) => {
e.preventDefault();
e.stopPropagation();
mobileMenu.classList.toggle('hidden');
const icon = mobileMenuButton.querySelector('i');
if (mobileMenu.classList.contains('hidden')) {
icon.setAttribute('data-feather', 'menu');
} else {
icon.setAttribute('data-feather', 'x');
}
feather.replace();
});
// Close mobile menu when clicking outside
document.addEventListener('click', (e) => {
if (!mobileMenuButton.contains(e.target) && !mobileMenu.contains(e.target)) {
mobileMenu.classList.add('hidden');
const icon = mobileMenuButton.querySelector('i');
icon.setAttribute('data-feather', 'menu');
feather.replace();
}
});
}
// Animation for feature cards
document.querySelectorAll('.feature-card').forEach((card, index) => {
anime({
targets: card,
opacity: [0, 1],
translateY: [20, 0],
duration: 800,
delay: index * 100,
easing: 'easeOutExpo'
});
});
</script>
</body>
</html>
|