aee0f09db8
- Datafabrik: Dockerfile fix, agentorkestrering fungerar - Vision: Identify-modell, FAISS, OCR alla testade - API: Alla 7 integrationstester passerade - Upplösare: Entitetsupplösning verifierad
545 lines
18 KiB
HTML
545 lines
18 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="sv">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Landvex & quiXzoom — Så fungerar det</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
background: #f8f9fa;
|
|
color: #1a1a1a;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.container {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
padding: 60px 24px;
|
|
}
|
|
|
|
/* Header */
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: #0d7377;
|
|
margin-bottom: 12px;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.header p {
|
|
font-size: 1.125rem;
|
|
color: #5f6368;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Brand pills */
|
|
.brands {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
margin-bottom: 48px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.brand-pill {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 10px 20px;
|
|
border-radius: 100px;
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.brand-pill.landvex {
|
|
background: #0d7377;
|
|
color: white;
|
|
}
|
|
|
|
.brand-pill.quixzoom {
|
|
background: #e8f4f8;
|
|
color: #0d7377;
|
|
border: 2px solid #0d7377;
|
|
}
|
|
|
|
/* Timeline */
|
|
.timeline {
|
|
position: relative;
|
|
padding-left: 80px;
|
|
}
|
|
|
|
.timeline::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 31px;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 2px;
|
|
background: #0d7377;
|
|
}
|
|
|
|
/* Step */
|
|
.step {
|
|
position: relative;
|
|
margin-bottom: 48px;
|
|
opacity: 0;
|
|
animation: fadeInUp 0.6s ease forwards;
|
|
}
|
|
|
|
.step:nth-child(1) { animation-delay: 0.1s; }
|
|
.step:nth-child(2) { animation-delay: 0.2s; }
|
|
.step:nth-child(3) { animation-delay: 0.3s; }
|
|
.step:nth-child(4) { animation-delay: 0.4s; }
|
|
.step:nth-child(5) { animation-delay: 0.5s; }
|
|
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.step-marker {
|
|
position: absolute;
|
|
left: -80px;
|
|
top: 0;
|
|
width: 64px;
|
|
height: 64px;
|
|
background: white;
|
|
border: 3px solid #0d7377;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: #0d7377;
|
|
z-index: 1;
|
|
}
|
|
|
|
.step-content {
|
|
background: white;
|
|
border-radius: 16px;
|
|
padding: 32px;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
|
|
}
|
|
|
|
.step-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.step-icon {
|
|
width: 48px;
|
|
height: 48px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.step-icon svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.step-title {
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
color: #0d7377;
|
|
}
|
|
|
|
.step-body {
|
|
color: #5f6368;
|
|
font-size: 1rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
.step-body strong {
|
|
color: #1a1a1a;
|
|
}
|
|
|
|
/* Connection arrows between steps */
|
|
.connection {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: -24px 0 -24px 0;
|
|
position: relative;
|
|
z-index: 0;
|
|
}
|
|
|
|
.connection svg {
|
|
color: #0d7377;
|
|
}
|
|
|
|
/* Dual path section */
|
|
.dual-path {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 24px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.path-card {
|
|
background: #f8f9fa;
|
|
border-radius: 12px;
|
|
padding: 24px;
|
|
border: 2px solid transparent;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
.path-card:hover {
|
|
border-color: #0d7377;
|
|
}
|
|
|
|
.path-card h4 {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
color: #0d7377;
|
|
margin-bottom: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.path-card p {
|
|
font-size: 0.875rem;
|
|
color: #5f6368;
|
|
}
|
|
|
|
/* Metrics */
|
|
.metrics {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 16px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.metric {
|
|
background: #0d7377;
|
|
color: white;
|
|
border-radius: 12px;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.metric-value {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
display: block;
|
|
}
|
|
|
|
.metric-label {
|
|
font-size: 0.75rem;
|
|
opacity: 0.9;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
/* CTA */
|
|
.cta-section {
|
|
text-align: center;
|
|
margin-top: 60px;
|
|
padding: 48px;
|
|
background: white;
|
|
border-radius: 16px;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.cta-section h2 {
|
|
font-size: 1.5rem;
|
|
color: #0d7377;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.cta-buttons {
|
|
display: flex;
|
|
gap: 16px;
|
|
justify-content: center;
|
|
margin-top: 24px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.cta-btn {
|
|
padding: 14px 32px;
|
|
border-radius: 100px;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
|
|
.cta-btn:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
|
|
}
|
|
|
|
.cta-btn.primary {
|
|
background: #0d7377;
|
|
color: white;
|
|
}
|
|
|
|
.cta-btn.secondary {
|
|
background: #e8f4f8;
|
|
color: #0d7377;
|
|
border: 2px solid #0d7377;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 640px) {
|
|
.timeline {
|
|
padding-left: 60px;
|
|
}
|
|
|
|
.step-marker {
|
|
left: -60px;
|
|
width: 48px;
|
|
height: 48px;
|
|
font-size: 1.125rem;
|
|
}
|
|
|
|
.timeline::before {
|
|
left: 23px;
|
|
}
|
|
|
|
.dual-path {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.metrics {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 1.75rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<!-- Header -->
|
|
<div class="header">
|
|
<h1>Från observation till beslut</h1>
|
|
<p>Landvex och quiXzoom arbetar tillsammans för att samla, analysera och omvandla fältdata till kontrollerad intelligens — beslut du kan lita på.</p>
|
|
</div>
|
|
|
|
<!-- Brand pills -->
|
|
<div class="brands">
|
|
<div class="brand-pill landvex">
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
|
|
<path d="M12 2L2 7l10 5 10-5-10-5z"/>
|
|
<path d="M2 17l10 5 10-5"/>
|
|
<path d="M2 12l10 5 10-5"/>
|
|
</svg>
|
|
Landvex Intelligence
|
|
</div>
|
|
<div class="brand-pill quixzoom">
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
|
|
<circle cx="12" cy="12" r="3"/>
|
|
<path d="M12 2v4m0 12v4m10-10h-4M6 12H2m15.07-6.93l-2.83 2.83M9.76 14.24l-2.83 2.83m11.14 0l-2.83-2.83M9.76 9.76L6.93 6.93"/>
|
|
</svg>
|
|
quiXzoom Field
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Timeline -->
|
|
<div class="timeline">
|
|
<!-- Step 1 -->
|
|
<div class="step">
|
|
<div class="step-marker">1</div>
|
|
<div class="step-content">
|
|
<div class="step-header">
|
|
<div class="step-icon">
|
|
<svg viewBox="0 0 48 48" fill="none" stroke="#0d7377" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<circle cx="24" cy="24" r="20"/>
|
|
<path d="M24 14v10l7 7"/>
|
|
<circle cx="24" cy="24" r="3" fill="#0d7377"/>
|
|
</svg>
|
|
</div>
|
|
<h3 class="step-title">Definiera beslutet</h3>
|
|
</div>
|
|
<div class="step-body">
|
|
<p>Vad behöver du veta? Landvex hjälper dig att formulera rätt fråga innan datainsamlingen börjar. <strong>Ingen data utan syfte.</strong></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="connection">
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
|
|
<path d="M12 5v14m-7-7l7 7 7-7"/>
|
|
</svg>
|
|
</div>
|
|
|
|
<!-- Step 2 -->
|
|
<div class="step">
|
|
<div class="step-marker">2</div>
|
|
<div class="step-content">
|
|
<div class="step-header">
|
|
<div class="step-icon">
|
|
<svg viewBox="0 0 48 48" fill="none" stroke="#0d7377" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<rect x="8" y="12" width="32" height="24" rx="4"/>
|
|
<circle cx="24" cy="24" r="6"/>
|
|
<path d="M32 14l-2-6h-12l-2 6"/>
|
|
<path d="M16 32l-4 8m20-8l4 8"/>
|
|
</svg>
|
|
</div>
|
|
<h3 class="step-title">Samla bevis från fältet</h3>
|
|
</div>
|
|
<div class="step-body">
|
|
<p>quiXzooms zoomers fotograferar och dokumenterar verkliga platser med sina smartphones. Drönare, kameror och sensorer kompletterar bilden. <strong>Multi-källinsamling i realtid.</strong></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="connection">
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
|
|
<path d="M12 5v14m-7-7l7 7 7-7"/>
|
|
</svg>
|
|
</div>
|
|
|
|
<!-- Step 3 -->
|
|
<div class="step">
|
|
<div class="step-marker">3</div>
|
|
<div class="step-content">
|
|
<div class="step-header">
|
|
<div class="step-icon">
|
|
<svg viewBox="0 0 48 48" fill="none" stroke="#0d7377" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M24 4v8"/>
|
|
<path d="M24 36v8"/>
|
|
<path d="M4 24h8"/>
|
|
<path d="M36 24h8"/>
|
|
<circle cx="24" cy="24" r="12"/>
|
|
<path d="M24 18v6l4 4"/>
|
|
</svg>
|
|
</div>
|
|
<h3 class="step-title">Verifiera mot verkligheten</h3>
|
|
</div>
|
|
<div class="step-body">
|
|
<p>Landvex jämför officiella data med fältobservationer. Skillnader flaggas automatiskt. <strong>OFFICIELL vs VERKLIGHET — vi hittar gapen.</strong></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="connection">
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
|
|
<path d="M12 5v14m-7-7l7 7 7-7"/>
|
|
</svg>
|
|
</div>
|
|
|
|
<!-- Step 4 -->
|
|
<div class="step">
|
|
<div class="step-marker">4</div>
|
|
<div class="step-content">
|
|
<div class="step-header">
|
|
<div class="step-icon">
|
|
<svg viewBox="0 0 48 48" fill="none" stroke="#0d7377" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M6 40h36"/>
|
|
<path d="M6 32h8v8H6z"/>
|
|
<path d="M18 24h8v16h-8z"/>
|
|
<path d="M30 12h8v28h-8z"/>
|
|
<path d="M10 28l8-8 8-4 8-8"/>
|
|
</svg>
|
|
</div>
|
|
<h3 class="step-title">Kontrollerad intelligens</h3>
|
|
</div>
|
|
<div class="step-body">
|
|
<p>AI analyserar mönster, men beslutet är ditt. Landvex presenterar konfidensgrad, konsekvens och rekommenderad åtgärd. <strong>Transparent, förklarlig, kontrollerad.</strong></p>
|
|
</div>
|
|
<div class="metrics">
|
|
<div class="metric">
|
|
<span class="metric-value">87</span>
|
|
<span class="metric-label">Stads Hälsa</span>
|
|
</div>
|
|
<div class="metric">
|
|
<span class="metric-value">92</span>
|
|
<span class="metric-label">Kommersiell Potential</span>
|
|
</div>
|
|
<div class="metric">
|
|
<span class="metric-value">18</span>
|
|
<span class="metric-label">Infrastrukturrisk</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="connection">
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
|
|
<path d="M12 5v14m-7-7l7 7 7-7"/>
|
|
</svg>
|
|
</div>
|
|
|
|
<!-- Step 5 -->
|
|
<div class="step">
|
|
<div class="step-marker">5</div>
|
|
<div class="step-content">
|
|
<div class="step-header">
|
|
<div class="step-icon">
|
|
<svg viewBox="0 0 48 48" fill="none" stroke="#0d7377" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<circle cx="24" cy="24" r="20"/>
|
|
<path d="M24 14v10l6 6"/>
|
|
<path d="M14 24h4"/>
|
|
<path d="M30 24h4"/>
|
|
<path d="M24 10v4"/>
|
|
<path d="M24 34v4"/>
|
|
</svg>
|
|
</div>
|
|
<h3 class="step-title">Handla och följ upp</h3>
|
|
</div>
|
|
<div class="step-body">
|
|
<p>Beslutet dokumenteras, åtgärder triggas och resultatet mäts över tid. Kontinuerlig feedback förbättrar nästa cykel. <strong>Lärande organisation.</strong></p>
|
|
</div>
|
|
<div class="dual-path">
|
|
<div class="path-card">
|
|
<h4>
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
|
|
<path d="M12 2L2 7l10 5 10-5-10-5z"/>
|
|
</svg>
|
|
För beslutsfattare
|
|
</h4>
|
|
<p>Landvex Dashboard ger dig överblick, historik och prediktioner för proaktiva beslut.</p>
|
|
</div>
|
|
<div class="path-card">
|
|
<h4>
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
|
|
<circle cx="12" cy="12" r="3"/>
|
|
<path d="M12 2v4m0 12v4m10-10h-4M6 12H2"/>
|
|
</svg>
|
|
För fältarbetare
|
|
</h4>
|
|
<p>quiXzoom-appen guidar dig till uppdrag, validerar insamling och betalar ut direkt.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- CTA -->
|
|
<div class="cta-section">
|
|
<h2>Börja med kontrollerad intelligens</h2>
|
|
<p style="color: #5f6368; margin-bottom: 8px;">Oavsett om du behöver fältdata eller beslutsstöd — vi har lösningen.</p>
|
|
<div class="cta-buttons">
|
|
<a href="#" class="cta-btn primary">Utforska Landvex</a>
|
|
<a href="#" class="cta-btn secondary">Bli Zoomer</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |