'use client' import { useState } from 'react' import { Camera, ChevronDown, CheckCircle2, TriangleAlert } from 'lucide-react' export default function TipsAndGuidelines() { const [isOpen, setIsOpen] = useState(false) return (
{isOpen && (

Good field photo

    {['Use daylight when possible', 'Keep the damaged area in focus', 'Fill most of the frame with the leaf', 'Avoid shadows, mud, or fingers covering symptoms'].map((tip, i) => (
  • {tip}
  • ))}

2 What to include

    {['Capture the spots, rust, yellowing, or lesions clearly', 'Include one wider photo if the whole plant is affected', 'Photograph both sides of the leaf if symptoms show there', 'Take a second photo from another row if damage varies'].map((tip, i) => (
  • {tip}
  • ))}

3 Before acting

    {['Scout more than one plant', 'Compare with healthy leaves nearby', 'Note the crop stage and recent weather', 'Treat only after the result matches what you see'].map((tip, i) => (
  • {tip}
  • ))}

Reminder: CropIntel helps with scouting. Confirm treatment choices with a local agronomist or extension service.

)}
) }