Files
boc/landvex-site/reviews/index.html
T
Bernt 6989a98d75 feat: Passwordless cross-device authentication
- Arkitektur: docs/auth/passwordless-architecture.md
- Backend: iom/quixzoom-auth-service/ (FastAPI + Redis)
- Webb: quixzoom-market-pages/se/login/ (QR-kod + polling)
- App: iom/quixzoom-app/src/features/auth/ (push + deep links)

Flöde: QR-kod → app-godkännande → webb-inloggad
2026-07-07 07:11:50 +00:00

170 lines
4.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reviews — LandveX</title>
<meta name="description" content="What our customers say about LandveX Reality Intelligence.">
<link rel="canonical" href="https://landvex.com/reviews/">
<style>
:root {
--bg: #000000;
--card: #1C1C1E;
--text: #FFFFFF;
--text2: rgba(235,235,245,0.6);
--separator: rgba(84,84,88,0.65);
--blue: #007AFF;
--font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--font);
-webkit-font-smoothing: antialiased;
padding: 20px;
max-width: 800px;
margin: 0 auto;
}
.header {
text-align: center;
padding: 40px 0;
border-bottom: 1px solid var(--separator);
margin-bottom: 30px;
}
.header h1 {
font-size: 32px;
font-weight: 700;
margin-bottom: 12px;
}
.header p {
color: var(--text2);
font-size: 16px;
}
.review-card {
background: var(--card);
border-radius: var(--radius-lg);
padding: 24px;
margin-bottom: 16px;
}
.review-header {
display: flex;
align-items: center;
margin-bottom: 12px;
}
.avatar {
width: 40px;
height: 40px;
border-radius: var(--radius-full);
background: var(--blue);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
margin-right: 12px;
}
.review-meta {
flex: 1;
}
.review-name {
font-weight: 600;
font-size: 16px;
}
.review-role {
color: var(--text2);
font-size: 14px;
}
.review-stars {
color: #FFD700;
font-size: 18px;
margin-bottom: 8px;
}
.review-text {
color: var(--text2);
font-size: 15px;
line-height: 1.5;
}
.cta {
text-align: center;
padding: 40px 0;
border-top: 1px solid var(--separator);
margin-top: 30px;
}
.cta-button {
display: inline-block;
background: var(--blue);
color: white;
padding: 14px 32px;
border-radius: var(--radius-md);
text-decoration: none;
font-weight: 600;
font-size: 16px;
}
.back-link {
display: inline-block;
margin-bottom: 20px;
color: var(--blue);
text-decoration: none;
font-size: 15px;
}
</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>reviews</span>
</nav>
<a href="/" class="back-link">← Back to LandveX</a>
<div class="header">
<h1>Customer Reviews</h1>
<p>Real feedback from organizations using LandveX Reality Intelligence</p>
</div>
<div class="review-card">
<div class="review-header">
<div class="avatar">MK</div>
<div class="review-meta">
<div class="review-name">Municipality of Stockholm</div>
<div class="review-role">Infrastructure Department</div>
</div>
</div>
<div class="review-stars"></div>
<div class="review-text">
"LandveX transformed how we monitor our city's infrastructure. We identified 340 maintenance issues in the first month that our traditional inspections missed entirely."
</div>
</div>
<div class="review-card">
<div class="review-header">
<div class="avatar">TR</div>
<div class="review-meta">
<div class="review-name">Trygg Hansa</div>
<div class="review-role">Risk Assessment Team</div>
</div>
</div>
<div class="review-stars"></div>
<div class="review-text">
"The speed and accuracy of LandveX data allows us to process claims faster and detect fraud patterns we never saw before. A game-changer for our industry."
</div>
</div>
<div class="review-card">
<div class="review-header">
<div class="avatar">VF</div>
<div class="review-meta">
<div class="review-name">Vasakronan</div>
<div class="review-role">Property Management</div>
</div>
</div>
<div class="review-stars"></div>
<div class="review-text">
"We reduced our facade inspection costs by 60% while getting more frequent updates. The reality data is more reliable than our previous manual methods."
</div>
</div>
<div class="cta">
<p style="color: var(--text2); margin-bottom: 16px;">Ready to see what Reality Intelligence can do for your organization?</p>
<a href="/" class="cta-button">Explore LandveX</a>
</div>
</body>
</html>