'use client'
import Image from 'next/image'
import { useLang } from '@/context/LangContext'
const ICONS = [
,
,
,
,
]
const ITEMS = {
de: [
{ title: 'Scan-basierte Erkennung', desc: 'Vom Foto zur besseren Einordnung in wenigen Schritten.' },
{ title: 'Pflegeorientierte Hinweise', desc: 'Hilft dir, naechste Pflegeentscheidungen schneller zu treffen.' },
{ title: 'Sammlung und Verlauf', desc: 'Behalte Scans, Pflanzen und Notizen an einem Ort.' },
{ title: 'Lexikon und Suche', desc: 'Suche Pflanzen und vergleiche Informationen in einer App.' },
],
en: [
{ title: 'Scan-based identification', desc: 'Move from photo to clearer plant context in a few steps.' },
{ title: 'Care-focused guidance', desc: 'Helps you make faster next-step care decisions.' },
{ title: 'Collection and history', desc: 'Keep scans, plants, and notes in one place.' },
{ title: 'Lexicon and search', desc: 'Look up plants and compare information in one app.' },
],
es: [
{ title: 'Identificacion basada en escaneo', desc: 'Pasa de una foto a un contexto mas claro en pocos pasos.' },
{ title: 'Guias centradas en cuidado', desc: 'Te ayuda a decidir los siguientes pasos mas rapido.' },
{ title: 'Coleccion e historial', desc: 'Guarda escaneos, plantas y notas en un solo lugar.' },
{ title: 'Lexico y busqueda', desc: 'Busca plantas y compara informacion dentro de una app.' },
],
}
const TAG_TEXT = { de: 'Technologie', en: 'Technology', es: 'Tecnologia' }
const BODY_TEXT = {
de: 'GreenLens verbindet Scan-Ergebnisse, Pflegekontext und Sammlungsverwaltung in einer App. So kommst du schneller von einem Pflanzenfoto zu einer verstaendlichen Entscheidung.',
en: 'GreenLens combines scan results, care context, and collection management in one app, helping you move from plant photo to a clearer decision faster.',
es: 'GreenLens combina resultados de escaneo, contexto de cuidado y gestion de coleccion en una sola app para ayudarte a pasar de una foto a una decision mas clara.',
}
export default function Intelligence() {
const { lang } = useLang()
const items = ITEMS[lang]
return (