far / index.html
DRV2ME's picture
pnpm add react-leaflet leaflet
ae44789 verified
Raw
History Blame Contribute Delete
21.8 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agrosynth OS - AI-Driven Agriculture Platform</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#f0fdf4',
100: '#dcfce7',
200: '#bbf7d0',
300: '#86efac',
400: '#4ade80',
500: '#22c55e',
600: '#16a34a',
700: '#15803d',
800: '#166534',
900: '#14532d',
}
}
}
}
}
</script>
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(20, 83, 45, 0.9) 0%, rgba(22, 101, 52, 0.9) 100%);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.glow {
box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}
</style>
</head>
<body class="bg-gray-50 font-sans antialiased">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50">
<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">
<i data-feather="layers" class="text-primary-600 h-8 w-8"></i>
<span class="ml-2 text-xl font-bold text-gray-900">Agrosynth OS</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#" class="text-primary-600 font-medium">Home</a>
<a href="/field-maps" class="text-gray-500 hover:text-gray-900 font-medium">Field Maps</a>
<a href="#" class="text-gray-500 hover:text-gray-900 font-medium">Pricing</a>
<a href="#" class="text-gray-500 hover:text-gray-900 font-medium">Docs</a>
<a href="/dashboard" class="bg-primary-600 text-white px-4 py-2 rounded-md font-medium hover:bg-primary-700 transition duration-150 ease-in-out">Dashboard</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary-500" aria-expanded="false">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="hero-gradient text-white">
<div class="max-w-7xl mx-auto py-24 px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl" data-aos="fade-down">
Precision Agriculture Powered by AI
</h1>
<p class="mt-6 max-w-lg mx-auto text-xl" data-aos="fade-down" data-aos-delay="100">
Satellite imagery, drone data, and blockchain certification in one unified platform.
</p>
<div class="mt-10 flex justify-center space-x-4" data-aos="fade-up" data-aos-delay="200">
<a href="/dashboard" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-primary-700 bg-white hover:bg-gray-50 glow">
Get Started
</a>
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-primary-700 bg-opacity-60 hover:bg-opacity-70">
<i data-feather="play" class="mr-2 h-4 w-4"></i> Watch Demo
</a>
</div>
</div>
</div>
</div>
<!-- Features Section -->
<div class="py-12 bg-white">
<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-primary-600 font-semibold tracking-wide uppercase" data-aos="fade-down">Features</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl" data-aos="fade-down">
Everything you need for modern farming
</p>
</div>
<div class="mt-10">
<div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3">
<!-- Feature 1 -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 ease-in-out" data-aos="fade-up">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-primary-100 rounded-md p-3">
<i data-feather="map" class="h-6 w-6 text-primary-600"></i>
</div>
<div class="ml-5">
<h3 class="text-lg font-medium text-gray-900">Satellite & Drone Fusion</h3>
</div>
</div>
<div class="mt-4 text-gray-500">
Combine high-resolution satellite imagery with drone-collected data for complete field analysis.
</div>
</div>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 ease-in-out" data-aos="fade-up" data-aos-delay="100">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-primary-100 rounded-md p-3">
<i data-feather="activity" class="h-6 w-6 text-primary-600"></i>
</div>
<div class="ml-5">
<h3 class="text-lg font-medium text-gray-900">AI Yield Prediction</h3>
</div>
</div>
<div class="mt-4 text-gray-500">
Our machine learning models analyze historical and current data to forecast yields with 92% accuracy.
</div>
</div>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 ease-in-out" data-aos="fade-up" data-aos-delay="200">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-primary-100 rounded-md p-3">
<i data-feather="eye" class="h-6 w-6 text-primary-600"></i>
</div>
<div class="ml-5">
<h3 class="text-lg font-medium text-gray-900">AR/VR Planning</h3>
</div>
</div>
<div class="mt-4 text-gray-500">
Visualize crop rotations and growth simulations in augmented and virtual reality environments.
</div>
</div>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 ease-in-out" data-aos="fade-up">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-primary-100 rounded-md p-3">
<i data-feather="shield" class="h-6 w-6 text-primary-600"></i>
</div>
<div class="ml-5">
<h3 class="text-lg font-medium text-gray-900">Blockchain Certification</h3>
</div>
</div>
<div class="mt-4 text-gray-500">
Tamper-proof certificates for organic and sustainable farming practices anchored on blockchain.
</div>
</div>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 ease-in-out" data-aos="fade-up" data-aos-delay="100">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-primary-100 rounded-md p-3">
<i data-feather="bar-chart-2" class="h-6 w-6 text-primary-600"></i>
</div>
<div class="ml-5">
<h3 class="text-lg font-medium text-gray-900">Real-time Analytics</h3>
</div>
</div>
<div class="mt-4 text-gray-500">
Monitor soil health, moisture levels, and crop growth with real-time dashboards and alerts.
</div>
</div>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300 ease-in-out" data-aos="fade-up" data-aos-delay="200">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-primary-100 rounded-md p-3">
<i data-feather="dollar-sign" class="h-6 w-6 text-primary-600"></i>
</div>
<div class="ml-5">
<h3 class="text-lg font-medium text-gray-900">Market Pricing</h3>
</div>
</div>
<div class="mt-4 text-gray-500">
Access commodity pricing data and connect directly with buyers through our marketplace.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Pricing Section -->
<div class="bg-gray-50 py-12">
<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-primary-600 font-semibold tracking-wide uppercase" data-aos="fade-down">Pricing</h2>
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl" data-aos="fade-down">
Simple, transparent pricing
</p>
</div>
<div class="mt-16 grid grid-cols-1 gap-8 lg:grid-cols-2">
<!-- Essential Plan -->
<div class="bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-right">
<div class="p-6">
<h3 class="text-2xl font-bold text-gray-900">Essential Farm Insight</h3>
<p class="mt-4 text-gray-500">Perfect for small to medium farms</p>
<div class="mt-6">
<p class="text-4xl font-extrabold text-gray-900">$150<span class="text-xl font-medium text-gray-500">/100ha monthly</span></p>
<p class="mt-2 text-gray-500">or $1,500 annually (save 17%)</p>
</div>
<ul class="mt-6 space-y-4">
<li class="flex items-start">
<i data-feather="check" class="h-5 w-5 text-primary-500"></i>
<span class="ml-3 text-gray-700">Weekly satellite overlays</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="h-5 w-5 text-primary-500"></i>
<span class="ml-3 text-gray-700">Basic AR/VR visualization</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="h-5 w-5 text-primary-500"></i>
<span class="ml-3 text-gray-700">Up to 1,000 hectares</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="h-5 w-5 text-primary-500"></i>
<span class="ml-3 text-gray-700">Email support</span>
</li>
</ul>
<div class="mt-8">
<a href="#" class="w-full flex items-center justify-center px-6 py-3 border border-transparent rounded-md shadow-sm text-base font-medium text-white bg-primary-600 hover:bg-primary-700">
Get started
</a>
</div>
</div>
</div>
<!-- Pro Plan -->
<div class="bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-left">
<div class="bg-primary-700 px-6 py-4">
<h3 class="text-2xl font-bold text-white">Precision Growth Pro</h3>
<p class="mt-1 text-primary-100">For large farms and agribusinesses</p>
</div>
<div class="p-6">
<div class="mt-2">
<p class="text-4xl font-extrabold text-gray-900">$1,200<span class="text-xl font-medium text-gray-500">/1,000ha monthly</span></p>
<p class="mt-2 text-gray-500">or $12,000 annually (save 17%)</p>
</div>
<ul class="mt-6 space-y-4">
<li class="flex items-start">
<i data-feather="check" class="h-5 w-5 text-primary-500"></i>
<span class="ml-3 text-gray-700">Quarterly drone lidar scans</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="h-5 w-5 text-primary-500"></i>
<span class="ml-3 text-gray-700">Advanced VR scenarios</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="h-5 w-5 text-primary-500"></i>
<span class="ml-3 text-gray-700">Blockchain certification</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="h-5 w-5 text-primary-500"></i>
<span class="ml-3 text-gray-700">Priority 24/7 support</span>
</li>
</ul>
<div class="mt-8">
<a href="#" class="w-full flex items-center justify-center px-6 py-3 border border-transparent rounded-md shadow-sm text-base font-medium text-white bg-primary-600 hover:bg-primary-700 glow">
Get started
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CTA Section -->
<div class="bg-primary-700">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl" data-aos="fade-right">
<span class="block">Ready to transform your farming?</span>
<span class="block text-primary-200">Start your free 14-day trial today.</span>
</h2>
<div class="mt-8 flex lg:mt-0 lg:flex-shrink-0" data-aos="fade-left">
<div class="inline-flex rounded-md shadow">
<a href="/dashboard" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-primary-600 bg-white hover:bg-gray-50">
Get started
</a>
</div>
<div class="ml-3 inline-flex rounded-md shadow">
<a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-primary-600 bg-opacity-60 hover:bg-opacity-70">
<i data-feather="message-square" class="mr-2 h-4 w-4"></i> Contact sales
</a>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-white">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
<div class="grid grid-cols-2 gap-8 md:grid-cols-4">
<div>
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Product</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Features</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Pricing</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">API</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Integrations</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Resources</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Documentation</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Guides</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Blog</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Webinars</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Company</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">About</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Careers</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Press</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Partners</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase">Legal</h3>
<ul class="mt-4 space-y-4">
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Privacy</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Terms</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Security</a></li>
<li><a href="#" class="text-base text-gray-500 hover:text-gray-900">Compliance</a></li>
</ul>
</div>
</div>
<div class="mt-12 border-t border-gray-200 pt-8">
<p class="text-base text-gray-400 text-center">
&copy; 2023 Agrosynth OS. All rights reserved.
</p>
</div>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
</script>
<script>
feather.replace();
</script>
</body>
</html>