We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a58bd36 commit 16369d3Copy full SHA for 16369d3
pages/overview/faq/index.page.tsx
@@ -4,9 +4,11 @@ import Head from 'next/head';
4
import { SectionContext } from '~/context';
5
import Faq from '~/components/Faq';
6
import { Headline1 } from '~/components/Headlines';
7
+import { DocsHelp } from '~/components/DocsHelp';
8
9
export default function Content() {
10
const newTitle = 'FAQ';
11
+ const markdownFile = '_indexPage';
12
13
return (
14
<SectionContext.Provider value='docs'>
@@ -18,8 +20,8 @@ export default function Content() {
18
20
Below you'll find answers to questions we get asked the most about JSON
19
21
Schema.
22
</p>
-
23
<Faq category='general' />
24
+ <DocsHelp markdownFile={markdownFile} />
25
</SectionContext.Provider>
26
);
27
}
0 commit comments