feat(boc): Complete Business Operations Center v1.0

- Go backend API with full CRUD for all modules (CRM, Sales, Finance, HR, Legal, Marketing, Support, Purchase, Inventory, Projects, Automation, Analytics)
- Rust analytics service with parallel report generation
- C runtime with POSIX shared memory IPC
- PostgreSQL schema with 30+ tables, full migrations
- Redis cache, sessions, pub/sub
- Kafka event streaming with Zookeeper
- WebSocket hub for real-time updates
- Automation engine with cron jobs, workflows, event triggers
- JWT authentication, multi-tenant from start
- Docker Compose with all services
- Nginx reverse proxy with rate limiting
- Integration tests passing
- Feature gap analysis against Fortnox/Odoo/Visma

Refs: BOC-001
This commit is contained in:
Bernt
2026-07-12 12:41:35 +00:00
parent 4789a7fb48
commit 58ca4e68db
26666 changed files with 575891 additions and 2074516 deletions
@@ -0,0 +1,384 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Enterprise Guides & Resources — Landvex</title>
<meta name="description" content="Practical guides for enterprise organisations using Landvex decision intelligence. Methodology, data quality, integration and deployment.">
<link rel="canonical" href="https://www.landvex.com/guides/">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.landvex.com/guides/">
<meta property="og:title" content="Enterprise Guides & Resources — Landvex">
<meta property="og:description" content="Practical guides for enterprise organisations using Landvex decision intelligence. Methodology, data quality, integration and deployment.">
<meta property="og:image" content="https://www.landvex.com/og-image.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Enterprise Guides — Landvex">
<meta name="twitter:description" content="Practical guides for enterprise organisations using Landvex decision intelligence.">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg-dark: #f5f5f7;
--blue: #0066FF;
--blue-dark: #0052CC;
--blue-glow: rgba(0, 102, 255, 0.15);
--text-dark: #0a0a0a;
--text-body: #3a3a3a;
--text-muted: #6B6B6B;
--text-light: #1d1d1f;
--text-dim: #6B6B6B;
--surface: #ffffff;
--surface-2: #f5f5f7;
--border: rgba(0,0,0,0.08);
--radius-sm: 8px;
--radius-md: 14px;
--radius-lg: 24px;
}
html { scroll-behavior: smooth; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', sans-serif;
background: var(--bg-dark);
color: var(--text-light);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
/* NAV */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 0 40px;
height: 64px;
background: rgba(255,255,255,0.88);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}
.nav-logo {
font-size: 18px;
font-weight: 700;
letter-spacing: -0.3px;
color: #1d1d1f;
}
.nav-links {
display: flex; gap: 32px; list-style: none;
}
.nav-links a {
font-size: 14px;
color: var(--text-dim);
transition: color 0.2s;
}
.nav-links a:hover { color: #1d1d1f; }
.btn {
display: inline-flex; align-items: center; gap: 6px;
padding: 10px 22px;
background: var(--blue);
color: #1d1d1f;
font-size: 14px;
font-weight: 600;
border-radius: var(--radius-md);
border: none;
cursor: pointer;
transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline {
background: transparent;
border: 1.5px solid rgba(0,0,0,0.18);
color: var(--text-light);
}
.btn-outline:hover { background: rgba(0,0,0,0.04); transform: translateY(-1px); }
/* PAGE HEADER */
.page-header {
padding: 120px 40px 72px;
max-width: 1080px;
margin: 0 auto;
}
.breadcrumb {
font-size: 13px;
color: var(--text-dim);
margin-bottom: 20px;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { color: #1d1d1f; }
.page-header h1 {
font-size: clamp(2rem, 5vw, 3.2rem);
font-weight: 700;
letter-spacing: -0.04em;
line-height: 1.15;
color: #1d1d1f;
margin-bottom: 18px;
}
.page-header p {
font-size: 17px;
color: var(--text-dim);
max-width: 600px;
line-height: 1.65;
}
/* GUIDES GRID */
.guides-section {
padding: 0 40px 100px;
max-width: 1080px;
margin: 0 auto;
}
.guides-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.guide-card {
display: flex;
align-items: flex-start;
gap: 20px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 28px 28px;
transition: border-color 0.2s, transform 0.2s;
}
.guide-card:hover {
border-color: rgba(0,0,0,0.16);
transform: translateY(-2px);
}
.guide-icon {
flex-shrink: 0;
width: 44px; height: 44px;
background: rgba(0,102,255,0.1);
border-radius: var(--radius-sm);
display: flex; align-items: center; justify-content: center;
color: var(--blue);
}
.guide-content h2 {
font-size: 16px;
font-weight: 700;
letter-spacing: -0.02em;
color: var(--text-light);
margin-bottom: 8px;
line-height: 1.4;
}
.guide-content p {
font-size: 14px;
color: var(--text-dim);
line-height: 1.55;
margin-bottom: 14px;
}
.guide-link {
font-size: 13px;
color: var(--blue);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 4px;
}
/* FOOTER */
footer {
background: var(--bg-dark);
border-top: 1px solid var(--border);
padding: 48px 40px;
}
.footer-inner {
max-width: 1080px;
margin: 0 auto;
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 32px;
flex-wrap: wrap;
}
.footer-logo { font-size: 17px; font-weight: 700; color: #1d1d1f; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: #1d1d1f; }
.footer-tagline { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.footer-social {
display: inline-flex; align-items: center; justify-content: center;
width: 34px; height: 34px;
border-radius: var(--radius-md);
border: 1px solid rgba(0,0,0,0.1);
background: rgba(0,0,0,0.03);
transition: border-color 0.2s, background 0.2s;
}
.footer-social:hover { border-color: rgba(0,0,0,0.25); background: rgba(0,0,0,0.04); }
/* RESPONSIVE */
@media (max-width: 900px) {
nav { padding: 0 20px; }
.nav-links { display: none; }
.page-header { padding: 96px 20px 48px; }
.guides-section { padding: 0 20px 72px; }
.guides-grid { grid-template-columns: 1fr; }
footer { padding: 40px 20px; }
.footer-inner { flex-direction: column; gap: 24px; }
.footer-links { flex-wrap: wrap; gap: 12px 16px; }
}
</style>
<link rel="alternate" hreflang="x-default" href="https://www.landvex.com/">
<link rel="alternate" hreflang="en" href="https://www.landvex.com/">
<link rel="alternate" hreflang="sv" href="https://landvex.se/">
<link rel="alternate" hreflang="de" href="https://landvex.de/">
<link rel="alternate" hreflang="fr" href="https://landvex.fr/">
<link rel="alternate" hreflang="en-GB" href="https://landvex.co.uk/">
<style>
@media (max-width: 640px) {
.hero h1 { font-size: 2rem !important; }
.hero p { font-size: 1rem !important; }
.card { padding: 1.5rem !important; }
.grid { grid-template-columns: 1fr !important; }
.btn { padding: 0.75rem 1.5rem !important; font-size: 1rem !important; }
}
</style>
</head>
<body>
<nav aria-label="breadcrumb" style="padding: 10px 20px; color: rgba(235,235,245,0.6); font-size: 14px;">
<a href="/" style="color: #007AFF; text-decoration: none;">Home</a> / <span>guides</span>
</nav>
<nav>
<a class="nav-logo" href="/">LandveX</a>
<ul class="nav-links">
<li><a href="/#how-it-works">How it works</a></li>
<li><a href="/#verticals">Verticals</a></li>
<li><a href="/methodology/">Methodology</a></li>
<li><a href="/blog/">Intelligence Insights</a></li>
<li><a href="/enterprise/">Enterprise</a></li>
<li><a href="/#contact">Contact</a></li>
</ul>
<a class="btn btn-outline" href="/#contact">Get in touch &#8594A1</a>
</nav>
<div class="page-header">
<div class="breadcrumb"><a href="/">Landvex</a> / Guides &amp; Resources</div>
<h1>Guides &amp; Resources</h1>
<p>Practical guides for enterprise organisations using Landvex decision intelligence. Methodology, data quality, integration and deployment.</p>
</div>
<section class="guides-section">
<div class="guides-grid">
<a href="/methodology/" class="guide-card">
<div class="guide-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/>
</svg>
</div>
<div class="guide-content">
<h2>Getting started with Landvex</h2>
<p>Understand the platform architecture, data flows and how to configure your first intelligence scope.</p>
<span class="guide-link">Read guide &#8594A1</span>
</div>
</a>
<a href="/data-quality/" class="guide-card">
<div class="guide-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="9 11 12 14 22 4"/><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"/>
</svg>
</div>
<div class="guide-content">
<h2>Data quality standards explained</h2>
<p>How Landvex defines, measures and enforces field data quality across contributor networks and AI review layers.</p>
<span class="guide-link">Read guide &#8594A1</span>
</div>
</a>
<a href="/pilot/" class="guide-card">
<div class="guide-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 9h18M9 21V9"/>
</svg>
</div>
<div class="guide-content">
<h2>How to scope a Landvex pilot</h2>
<p>Define coverage area, select intelligence verticals, establish success criteria and set a realistic deployment timeline.</p>
<span class="guide-link">Read guide &#8594A1</span>
</div>
</a>
<a href="/contact/" class="guide-card">
<div class="guide-icon">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polygon points="1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"/><line x1="8" y1="2" x2="8" y2="18"/><line x1="16" y1="6" x2="16" y2="22"/>
</svg>
</div>
<div class="guide-content">
<h2>Integrating Landvex with your existing GIS stack</h2>
<p>Connect Landvex intelligence outputs to ArcGIS, QGIS, PostGIS and enterprise spatial data infrastructure via the API.</p>
<span class="guide-link">Contact us &#8594A1</span>
</div>
</a>
</div>
</section>
<footer>
<div class="footer-inner">
<div>
<div class="footer-logo">Landvex</div>
<div class="footer-copy">© 2026 Landvex Inc · Landvex AB (org.nr 559141-7042)</div>
<div class="footer-tagline">Decision intelligence for the physical world.</div>
<div style="font-size:11px;color:var(--text-muted,#888);margin-top:8px;line-height:1.6">Landvex AB · Org.nr 559141-7042<br>Tyresö, Sweden · <a href="mailto:contact@landvex.com" style="color:inherit">contact@landvex.com</a></div>
</div>
<div class="footer-links">
<a href="/privacy/">Privacy</a>
<a href="/terms/">Terms</a>
<a href="/methodology/">Methodology</a>
<a href="/data-quality/">Data Quality</a>
<a href="/security/">Security</a>
<a href="/comparison/">Compare</a>
<a href="/sla/">SLA &amp; Coverage</a>
<a href="/blog/">Intelligence Insights</a>
<a href="/guides/">Guides</a>
<a href="/cities/stockholm/">Stockholm</a>
<a href="/cities/berlin/">Berlin</a>
<a href="/cities/paris/">Paris</a>
<a href="/cities/london/">London</a>
<a href="/cities/bangkok/">Bangkok</a>
<a href="/careers/">Careers</a>
<a href="https://www.quixzoom.com/" target="_blank" rel="noopener">quiXzoom &#8594A1</a>
<a href="mailto:contact@landvex.com">contact@landvex.com</a>
<a href="https://www.linkedin.com/company/landvex" target="_blank" rel="noopener" class="footer-social" title="LandveX on LinkedIn">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" stroke="#888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="2" y="9" width="4" height="12" stroke="#888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="4" cy="4" r="2" stroke="#888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
<a href="https://x.com/landvex" target="_blank" rel="noopener" class="footer-social" title="LandveX on X">
<svg width="15" height="15" viewBox="0 0 24 24" fill="#888" xmlns="http://www.w3.org/2000/svg">
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.746l7.73-8.835L1.254 2.25H8.08l4.253 5.622 5.912-5.622Zm-1.161 17.52h1.833L7.084 4.126H5.117z"/>
</svg>
</a>
</div>
</div>
</footer>
</body>
</html>