"use client"; import { FAQ } from "@/components/ui/accordion"; import Headline from "@/components/ui/headline"; import { useSplitHeading } from "@/lib/useTextRevealHeading"; import { useRef } from "react"; const FAQSection = () => { const headingRef = useRef(null); const paraRef = useRef(null); const containerRef = useRef(null); useSplitHeading(headingRef, paraRef); const faq = [ { question: "What is Whispering Trees?", answer: "Whispering Trees is an IoT and AI platform that monitors the health of urban trees in real time. Our sensors measure moisture, stress, and environmental data — helping cities make smarter irrigation and maintenance decisions.", }, { question: "How many trees can we monitor?", answer: "The system is fully scalable — from a single pilot district with 10 sensors to thousands of trees across multiple cities. You can start small and expand anytime without hardware changes.", }, { question: "How accurate are the sensors?", answer: "Whispering Trees sensors are scientifically validated with precision readings for moisture and electrical resistance, ensuring early stress detection with over 95% reliability in field conditions.", }, { question: "Do we need Wi-Fi or mobile data in the field?", answer: "No fixed Wi-Fi is required. The sensors communicate via low-power wireless networks (LoRaWAN or LTE-M), optimized for long range and minimal energy use — perfect for public spaces.", }, { question: "What kind of support is included?", answer: "We offer onboarding assistance, online documentation, and email support for all Starter/Core users. Enterprise plans include dedicated account management and advanced analytics.", }, { question: "How soon can we start a pilot project?", answer: "You can begin within 4–8 weeks. After the first sensor installation, data appears live on your dashboard — giving you immediate insights into your urban forest’s health.", }, ]; return (

Whispering Trees{" "} Explained

Learn how Whispering Trees helps cities grow greener and smarter.

); }; export default FAQSection;