Aidan efd9ecfa21
Some checks failed
Run ESLint / Run ESLint (pull_request) Failing after 5m2s
func: add docs page + overview and mental health pages
2025-05-10 05:02:12 -04:00

22 lines
538 B
TypeScript

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<string, Doc> = {
Overview: {
"title": "Overview",
"component": <Overview />,
"icon": <House size={16} />
},
MentalHealth: {
"title": "Mental Health",
"component": <MentalHealth />,
"icon": <Brain size={16} />
}
}