import { House, Brain } from "lucide-react" import { Overview } from "@/components/docs/pages/Overview" import { MentalHealth } from "@/components/docs/pages/MentalHealth" export interface Doc { title: string component: React.ReactNode icon: React.ReactNode } export const Docs: Record = { Overview: { "title": "Overview", "component": , "icon": }, MentalHealth: { "title": "Mental Health", "component": , "icon": } }