This commit is contained in:
Oliver
2026-03-12 13:20:04 -03:00
commit c6339774b0
2 changed files with 106 additions and 0 deletions
+86
View File
@@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Odoo Apps & AI-Powered Development</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap">
<style>
body { font-family: 'Inter', sans-serif; }
.hero-bg { background: linear-gradient(90deg, #5A67D8 0%, #B794F4 100%); }
</style>
</head>
<body class="bg-gray-50">
<!-- Hero Section -->
<section class="hero-bg text-white py-24">
<div class="container mx-auto text-center px-6">
<h1 class="text-4xl md:text-6xl font-bold mb-4">Odoo Apps Developed by Experts</h1>
<p class="text-xl md:text-2xl mb-8">We create custom Odoo apps powered by AI to streamline your business processes efficiently.</p>
<a href="#signup" class="bg-white text-indigo-600 font-semibold px-8 py-4 rounded-lg shadow hover:bg-gray-100 transition">Get Started</a>
</div>
</section>
<!-- Odoo Hosting Signup Form -->
<section id="signup" class="py-20 bg-white">
<div class="container mx-auto max-w-xl px-6">
<h2 class="text-3xl font-bold text-center mb-6">Start Your Odoo Project Today</h2>
<form action="https://your-odoo-hosting-link.com/signup" method="POST" class="bg-gray-50 p-8 rounded-lg shadow-md">
<div class="mb-4">
<label class="block text-gray-700 mb-2">Full Name</label>
<input type="text" name="name" required class="w-full p-3 rounded border border-gray-300 focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2">Email Address</label>
<input type="email" name="email" required class="w-full p-3 rounded border border-gray-300 focus:ring-indigo-500 focus:border-indigo-500">
</div>
<div class="mb-4">
<label class="block text-gray-700 mb-2">Company</label>
<input type="text" name="company" class="w-full p-3 rounded border border-gray-300 focus:ring-indigo-500 focus:border-indigo-500">
</div>
<button type="submit" class="w-full bg-indigo-600 text-white py-3 font-semibold rounded hover:bg-indigo-700 transition">Sign Up</button>
</form>
</div>
</section>
<!-- Call to Action Section -->
<section class="py-20 bg-indigo-50">
<div class="container mx-auto text-center px-6">
<h2 class="text-3xl font-bold mb-4">Schedule a Meeting with Our Development Team</h2>
<p class="text-lg mb-6">Discuss your ideas and get expert guidance from our experienced developers.</p>
<a href="https://calendar.google.com/calendar/u/0/appointments/schedules/AcZssZ3DDbaiHFlhNhWySszAQoPXE_H73QLqYT3w7H9IYWC76RA" target="_blank" class="bg-indigo-600 text-white px-8 py-4 rounded-lg font-semibold hover:bg-indigo-700 transition">Book a Meeting</a>
</div>
</section>
<!-- N8N Modules Teaser Section -->
<section class="py-20 bg-white">
<div class="container mx-auto text-center px-6">
<h2 class="text-3xl font-bold mb-4">Explore Our Upcoming N8N Modules</h2>
<p class="text-lg mb-6">Automate your workflows seamlessly with our custom-built N8N integrations. Coming soon!</p>
<div class="grid md:grid-cols-3 gap-6 mt-8">
<div class="bg-gray-50 p-6 rounded shadow hover:shadow-lg transition">
<h3 class="text-xl font-semibold mb-2">Module 1</h3>
<p>Integrate Odoo CRM with N8N for smart automation and lead management.</p>
</div>
<div class="bg-gray-50 p-6 rounded shadow hover:shadow-lg transition">
<h3 class="text-xl font-semibold mb-2">Module 2</h3>
<p>Automate accounting and invoicing with N8N workflows and Odoo apps.</p>
</div>
<div class="bg-gray-50 p-6 rounded shadow hover:shadow-lg transition">
<h3 class="text-xl font-semibold mb-2">Module 3</h3>
<p>Connect your marketing tools to Odoo through N8N for efficient campaigns.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto text-center">
<p>&copy; 2026 Odoo Apps & AI-Powered Development. All rights reserved.</p>
</div>
</footer>
</body>
</html>