Home > gatsby-plugin-next-seo > FAQJsonLd
A Frequently Asked Question (FAQ) page contains a list of questions and answers pertaining to a particular topic.
Signature:
FAQJsonLd: FC<FAQJsonLdProps>
Properly marked up FAQ pages may be eligible to have a rich result on Search and voice assistants.
import React from 'react';
import { FAQJsonLd } from 'gatsby-plugin-next-seo';
export default () => (
<>
<FAQJsonLd mainEntity={[{ question: 'What?', answer: 'Stand' }, { question:
'How?', answer: 'Effort' }, { question: 'Why?', answer: 'Peace' },
]}
/>
<h1>What?</h1>
<p>Stand</p>
<h1>How?</h1>
<p>Effort</p>
<h1>Why?</h1>
<p>Peace</p>
</>
);