Skip to content

Commit 16369d3

Browse files
authored
Add docs help component (#820)
1 parent a58bd36 commit 16369d3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pages/overview/faq/index.page.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ import Head from 'next/head';
44
import { SectionContext } from '~/context';
55
import Faq from '~/components/Faq';
66
import { Headline1 } from '~/components/Headlines';
7+
import { DocsHelp } from '~/components/DocsHelp';
78

89
export default function Content() {
910
const newTitle = 'FAQ';
11+
const markdownFile = '_indexPage';
1012

1113
return (
1214
<SectionContext.Provider value='docs'>
@@ -18,8 +20,8 @@ export default function Content() {
1820
Below you'll find answers to questions we get asked the most about JSON
1921
Schema.
2022
</p>
21-
2223
<Faq category='general' />
24+
<DocsHelp markdownFile={markdownFile} />
2325
</SectionContext.Provider>
2426
);
2527
}

0 commit comments

Comments
 (0)