Topic
Direct answer in first paragraph.
Question 1?
Answer.
```
#### 3. JSON-LD structured data
```html
```
#### 4. Q&A format
- H2 = question.
- λ§€ H2 μ§ν = direct answer.
- λ§€ paragraph μ self-contained.
#### 5. Direct answer in lead
- λ§€ first 50 word μ answer.
- λ§€ inverted pyramid (journalism).
#### 6. Citation-friendly
- λ§€ specific number / fact.
- λ§€ source μ explicit.
- λ§€ author μ expertise.
#### 7. llm.txt / robots.txt control
```txt
# llm.txt (proposal)
# Allow ChatGPT, Claude, Perplexity to cite.
User-agent: *
Allow: /
```
### λ§€ platform μ difference
#### Google AI Overviews (SGE)
- λ§€ YMYL (Your Money Your Life) μ strict.
- λ§€ E-E-A-T (Experience, Expertise, Authority, Trust).
- λ§€ traditional SEO μ baseline.
#### ChatGPT / Claude / Perplexity
- Real-time web search.
- λ§€ cite source.
- Domain trust signal.
#### Bing Chat / Copilot
- Edge integration.
- λ§€ enterprise μΉν.
## π» Code
### Next.js SSR
```tsx
// app/article/[slug]/page.tsx
export default async function ArticlePage({ params }) {
const article = await fetchArticle(params.slug);
return (
<>