mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-20 15:20:39 -07:00
- Created new directory structure for documentation under `/docs2`. - Added `.gitignore` to exclude build artifacts and dependencies. - Introduced `package.json`, `next.config.mjs`, and `postcss.config.mjs` for project configuration. - Implemented MDX components in `mdx-components.tsx` for rendering documentation. - Migrated existing documentation content and created new files for auto-updater and other features. - Established compatibility layer for Mintlify components in `mintlify-compat.tsx`. - Set up OpenAPI documentation in `openapi.json`. - Updated README and migration guide to reflect new structure and usage instructions. - Ensured all components and pages are ready for development and deployment with Fumadocs.
17 lines
411 B
TypeScript
17 lines
411 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="flex flex-col justify-center text-center flex-1">
|
|
<h1 className="text-2xl font-bold mb-4">Hello World</h1>
|
|
<p>
|
|
You can open{' '}
|
|
<Link href="/docs" className="font-medium underline">
|
|
/docs
|
|
</Link>{' '}
|
|
and see the documentation.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|