File size: 1,782 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
import { BASE_URL } from "@/lib/constants"
export const dynamic = "force-static"
export const GET = async () => {
const documentSets = [
{
title: "Complete documentation",
href: `${BASE_URL}/llms-full.txt`,
description:
"The complete Chakra UI v3 documentation including all components, styling and theming",
},
{
title: "Components",
href: `${BASE_URL}/llms-components.txt`,
description: "Documentation for all components in Chakra UI v3.",
},
{
title: "Charts",
href: `${BASE_URL}/llms-charts.txt`,
description: "Documentation for the charts in Chakra UI v3.",
},
{
title: "Styling",
href: `${BASE_URL}/llms-styling.txt`,
description: "Documentation for the styling system in Chakra UI v3.",
},
{
title: "Theming",
href: `${BASE_URL}/llms-theming.txt`,
description: "Documentation for theming Chakra UI v3.",
},
{
title: "Migrating to v3",
href: `${BASE_URL}/llms-v3-migration.txt`,
description: "Documentation for migrating to Chakra UI v3.",
},
]
const content = TEMPLATE.replace(
"%DOCUMENT_SETS%",
documentSets
.map((set) => `- [${set.title}](${set.href}): ${set.description}`)
.join("\n"),
)
return new Response(content)
}
const TEMPLATE = `
# Chakra UI v3 Documentation for LLMs
> Chakra UI is an accessible component system for building products with speed
## Documentation Sets
%DOCUMENT_SETS%
## Notes
- The complete documentation includes all content from the official documentation
- Package-specific documentation files contain only the content relevant to that package
- The content is automatically generated from the same source as the official documentation
`
|