-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docs): integrations parent page
- Loading branch information
Showing
14 changed files
with
171 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div class="prose prose-invert max-w-full bg-slate-800 p-12 rounded-xl"> | ||
{{ $slot }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
@extends('layouts.app-nav') | ||
|
||
@section('content') | ||
<x-docs-layout> | ||
|
||
<div class="grid grid-cols-3 gap-8"> | ||
|
||
<div class="col-span-3"> | ||
<x-docs-box> | ||
<x-icon-spectrum icon="fa-cog" class="opacity-40" iconClass="-mr-12 w-[49px]" /> | ||
|
||
<h2>Integrations</h2> | ||
|
||
<p> | ||
This section is intended to help get you started using our API by providing some basic examples for | ||
popular mapping tools. | ||
</p> | ||
</x-docs-box> | ||
</div> | ||
|
||
<div class="text-center"> | ||
<x-docs-box> | ||
<img src="/api/v2/font-awesome/v5/icon-stack?icon=fa-microsoft&size=100&iconsize=50&color=594578&on=fa-square-solid&oncolor=DDD" | ||
class="mx-auto h-[75px] w-[75px]"> | ||
<h3>Bing Maps</h3> | ||
<a href="/documentation/integrations/bing-maps" | ||
class="no-underline -mb-4 mt-4 block px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | ||
Read Integration Guide | ||
</a> | ||
</x-docs-box> | ||
</div> | ||
<div class="text-center"> | ||
<x-docs-box> | ||
<img src="/api/v2/font-awesome/v5/icon-stack?icon=fa-google&size=100&iconsize=50&color=594578&on=fa-square-solid&oncolor=DDD" | ||
class="mx-auto h-[75px] w-[75px]"> | ||
<h3>Google Maps</h3> | ||
<a href="/documentation/integrations/google-maps" | ||
class="no-underline -mb-4 mt-4 block px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | ||
Read Integration Guide | ||
</a> | ||
</x-docs-box> | ||
</div> | ||
<div class="text-center"> | ||
<x-docs-box> | ||
<img src="/api/v2/font-awesome/v5/icon-stack?icon=fa-map-marker-alt&size=100&iconsize=50&color=594578&on=fa-square-solid&oncolor=DDD" | ||
class="mx-auto h-[75px] w-[75px]"> | ||
<h3>Mapbox</h3> | ||
<a href="/documentation/integrations/mapbox" | ||
class="no-underline -mb-4 mt-4 block px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | ||
Read Integration Guide | ||
</a> | ||
</x-docs-box> | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
</x-docs-layout> | ||
@endsection |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters