func: add docs page + overview and mental health pages

This commit is contained in:
Aidan 2025-05-10 05:02:12 -04:00
parent 65a50c6ba1
commit efd9ecfa21
4 changed files with 138 additions and 0 deletions

22
components/docs/Docs.tsx Normal file
View file

@ -0,0 +1,22 @@
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} />
}
}