From b04fdae043ecede2e1b77d306eec9b51a17e88c2 Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Mon, 30 Aug 2021 18:10:14 +0200 Subject: [PATCH] Added link for documentation --- docs/pages/docs/index.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) 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.