diff --git a/docs/pages/docs/index.tsx b/docs/pages/docs/index.tsx index 1f7c3dc9..4659c2cd 100644 --- a/docs/pages/docs/index.tsx +++ b/docs/pages/docs/index.tsx @@ -1,10 +1,14 @@ import React from 'react'; import { useTranslation } from 'react-i18next'; +import ReactMarkdown from 'react-markdown'; +import rehypeRaw from 'rehype-raw'; import { Description, OtherMeta, Title } from '../../components/Meta'; import { Layout } from '../../components/Page/Layout'; +import { Extension } from '../../constants/extension'; import { getAllPosts } from '../../lib/api'; +import { getPostByFilename } from '../../lib/api'; -export default function Home({ docs }: any) { +export default function Home({ content }: any) { const { t: strings } = useTranslation(); return ( @@ -15,8 +19,12 @@ export default function Home({ docs }: any) {
-
- Coming soon... +
+ 🚧 Working on it 🚧 +
+ +
+ The new documentation format is currently being created, but you can currently find the Front Matter documenation on the GitHub repository.