func: add docs page + overview and mental health pages
This commit is contained in:
parent
65a50c6ba1
commit
efd9ecfa21
4 changed files with 138 additions and 0 deletions
22
components/docs/Docs.tsx
Normal file
22
components/docs/Docs.tsx
Normal 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} />
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue