File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change
1
+ import Head from "next/head"
2
+
1
3
import { Hero } from "./hero"
2
4
import { TrustedBy } from "./trusted-by"
3
5
import { HowItWorks } from "./how-it-works"
@@ -13,6 +15,12 @@ import { WhatIsGraphQL } from "./what-is-graphql"
13
15
export function IndexPage ( ) {
14
16
return (
15
17
< div className = "gql-all-anchors-focusable bg-neu-0" >
18
+ < Head >
19
+ < meta
20
+ name = "description"
21
+ content = "GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data."
22
+ />
23
+ </ Head >
16
24
< Hero />
17
25
< TrustedBy />
18
26
< WhatIsGraphQL />
Original file line number Diff line number Diff line change 1
1
---
2
2
title : GraphQL | A query language for your API
3
- description : GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data.
4
3
---
5
4
6
5
export { IndexPage as default } from ' ../components/index-page'
You can’t perform that action at this time.
0 commit comments