From f0b7ea97402853f64093d9d10840e59ba271f689 Mon Sep 17 00:00:00 2001
From: carlosmintfan <118076740+carlosmintfan@users.noreply.github.com>
Date: Thu, 2 Apr 2026 19:47:14 -0300
Subject: [PATCH] feat: redesign landing page with App Store links and version
badges
- Convert module cards to clickable links to the Odoo App Store
- Add per-module version badges (v17/v18/v19) in each card sidebar
- Add 'Buy on Odoo App Store' CTA button inside each module card
- Replace hero 'Odoo 19+' badge with v17/v18/v19 version pills
- Add FAQ section with accordion toggle
- Add FAQ nav link; replace 'How it works'
- Reformat entire file with Prettier
---
index.html | 2037 +++++++++++++++++++++++++++++++++++++++++++---------
1 file changed, 1697 insertions(+), 340 deletions(-)
diff --git a/index.html b/index.html
index a9f41a5..8501da7 100644
--- a/index.html
+++ b/index.html
@@ -1,369 +1,1726 @@
-
+
-
-
-
- ODOO4projects | Odoo Extensions for n8n & AI Automation
-
-
-
+
+
+
-
-
+ .module-card {
+ transition:
+ transform 0.25s ease,
+ box-shadow 0.25s ease;
+ display: block;
+ text-decoration: none;
+ color: inherit;
+ }
+ .module-card:hover {
+ transform: translateY(-6px);
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
+ }
+ .btn-brand {
+ background: linear-gradient(135deg, #714b67 0%, #5a3d52 100%);
+ transition: all 0.25s ease;
+ }
+ .btn-brand:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 10px 20px rgba(113, 75, 103, 0.3);
+ }
+ .btn-accent {
+ background: linear-gradient(135deg, #ff6d5a 0%, #ff5242 100%);
+ transition: all 0.25s ease;
+ }
+ .btn-accent:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 10px 20px rgba(255, 109, 90, 0.3);
+ }
+ .faq-answer {
+ display: none;
+ }
+ .faq-item.open .faq-answer {
+ display: block;
+ }
+ .faq-icon {
+ transition: transform 0.2s ease;
+ }
+ .faq-item.open .faq-icon {
+ transform: rotate(45deg);
+ }
+
+
+
+
+