Files
DocsGPT/docs/pages/index.mdx
2023-09-12 15:48:52 +01:00

37 lines
1.0 KiB
Plaintext

---
title: 'Home'
---
import { Cards, Card } from 'nextra/components'
import deployingGuides from './Deploying/_meta.json';
import developingGuides from './Developing/_meta.json';
import extensionGuides from './Extensions/_meta.json';
import mainGuides from './Guides/_meta.json';
import { DocsGPTWidget } from "docsgpt";
import "docsgpt/dist/style.css";
export const allGuides = {
...mainGuides,
...developingGuides,
...deployingGuides,
...extensionGuides,
};
### **DocsGPT 🦖**
DocsGPT 🦖 is an innovative open-source tool designed to simplify the retrieval of information from project documentation using advanced GPT models 🤖. Eliminate lengthy manual searches 🔍 and enhance your documentation experience with DocsGPT, and consider contributing to its AI-powered future 🚀.
<DocsGPTWidget />
<Cards
num={3}
children={Object.keys(allGuides).map((key, i) => (
<Card
key={i}
title={allGuides[key].title}
href={allGuides[key].href}
/>
))}
/>