-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathindex.tsx
More file actions
31 lines (30 loc) · 994 Bytes
/
index.tsx
File metadata and controls
31 lines (30 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { Hero } from "./hero"
import { TrustedBy } from "./trusted-by"
import { HowItWorks } from "./how-it-works"
import { ProvenSolution } from "./proven-solution"
import { FivePillars } from "./five-pillars"
import { PoweredByCommunity } from "./powered-by-community"
import { GraphQLAdvantages } from "./graphql-advantages"
import { QuotesFromTheIndustry } from "./quotes-from-the-industry"
import { JoinTheCommunity } from "./join-the-community"
import { DataColocation } from "./data-colocation"
import { WhatIsGraphQL } from "./what-is-graphql"
import { UseCases } from "./use-cases"
export function IndexPage() {
return (
<div className="gql-all-anchors-focusable bg-neu-0">
<Hero />
<TrustedBy />
<WhatIsGraphQL />
<HowItWorks />
<ProvenSolution />
<FivePillars />
<PoweredByCommunity />
<GraphQLAdvantages />
<DataColocation />
<UseCases />
<QuotesFromTheIndustry />
<JoinTheCommunity />
</div>
)
}