Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 36 additions & 37 deletions website/src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,46 +53,45 @@ export default function IndexPage() {

return (
<Layout title="Home" description="react-map-gl">
<Home theme="dark" HeroExample={HeroExample}>
<div style={{position: 'relative'}}>
<TextContainer>
<h2>
react-map-gl makes using MapLibre GL JS and Mapbox GL JS in React applications easy.
</h2>
<hr className="short" />
<Home theme="dark" HeroExample={HeroExample} />
<div style={{position: 'relative'}}>
<TextContainer>
<h2>
react-map-gl makes using MapLibre GL JS and Mapbox GL JS in React applications easy.
</h2>
<hr className="short" />

<h3>
<img src={`${baseUrl}images/icon-react.svg`} />
React Integration
</h3>
<p>
Use a MapLibre GL JS or Mapbox GL JS map as a fully controlled reactive component.
</p>
<h3>
<img src={`${baseUrl}images/icon-react.svg`} />
React Integration
</h3>
<p>
Use a MapLibre GL JS or Mapbox GL JS map as a fully controlled reactive component.
</p>

<h3>
<img src={`${baseUrl}images/icon-layers.svg`} />
Extensible
</h3>
<p>
Comes with additional React interfaces such as context and hooks
to support custom components.
</p>
<h3>
<img src={`${baseUrl}images/icon-layers.svg`} />
Extensible
</h3>
<p>
Comes with additional React interfaces such as context and hooks
to support custom components.
</p>

<h3>
<img src={`${baseUrl}images/icon-high-precision.svg`} />
Part of vis.gl's Framework Suite
</h3>
<p>
Use together with e.g. <a
href="https://deck.gl/"
target="_blank"
rel="noopener noreferrer">
deck.gl</a> to render performant and compelling 2D and 3D
WebGL visualizations on top of your MapLibre GL JS and Mapbox GL JS based maps.
</p>
</TextContainer>
</div>
</Home>
<h3>
<img src={`${baseUrl}images/icon-high-precision.svg`} />
Part of vis.gl's Framework Suite
</h3>
<p>
Use together with e.g. <a
href="https://deck.gl/"
target="_blank"
rel="noopener noreferrer">
deck.gl</a> to render performant and compelling 2D and 3D
WebGL visualizations on top of your MapLibre GL JS and Mapbox GL JS based maps.
</p>
</TextContainer>
</div>
</Layout>
);
}
Loading