mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-16 21:30:39 -07:00
- Updated `.gitignore` to include new build and generated content directories. - Removed outdated Mintlify configuration files and documentation. - Introduced new `MIGRATION.md` to outline the transition from Mintlify to Fumadocs. - Added `mdx-components.tsx` for MDX component configuration and compatibility. - Updated `package.json` and `next.config.mjs` for new dependencies and Next.js configuration. - Created `source.config.ts` for content source configuration. - Added OpenAPI specification in `openapi.json` for API documentation. - Removed legacy files and adjusted project structure to align with Fumadocs conventions.
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>
|
|
);
|
|
}
|