import { useState } from 'react'; import { ChevronDown } from 'lucide-react'; import { cn } from '@/lib/cn'; // FAQ content lives in routes-meta so the FAQPage JSON-LD stays in lockstep with the UI. import { FAQ_ITEMS as ITEMS } from '@/seo/routes-meta'; export function Faq() { const [open, setOpen] = useState(0); return (
FAQ

Frequently asked questions

Everything you need to know about eLegal Software.

{ITEMS.map((item, i) => { const isOpen = open === i; return (

{item.a}

); })}
); }