Skip to content

Commit a0fed3a

Browse files
committed
feat(docs): adding navigation structure
1 parent 7db1e5b commit a0fed3a

File tree

2 files changed

+38
-4
lines changed

2 files changed

+38
-4
lines changed

public/css/app.css

+21
Original file line numberDiff line numberDiff line change
@@ -957,6 +957,15 @@ video {
957957
.-mt-4 {
958958
margin-top: -1rem;
959959
}
960+
.mb-2 {
961+
margin-bottom: 0.5rem;
962+
}
963+
.mb-1 {
964+
margin-bottom: 0.25rem;
965+
}
966+
.mb-6 {
967+
margin-bottom: 1.5rem;
968+
}
960969
.block {
961970
display: block;
962971
}
@@ -1179,6 +1188,18 @@ video {
11791188
--tw-text-opacity: 1;
11801189
color: rgb(209 213 219 / var(--tw-text-opacity));
11811190
}
1191+
.text-black {
1192+
--tw-text-opacity: 1;
1193+
color: rgb(0 0 0 / var(--tw-text-opacity));
1194+
}
1195+
.text-slate-400 {
1196+
--tw-text-opacity: 1;
1197+
color: rgb(148 163 184 / var(--tw-text-opacity));
1198+
}
1199+
.text-slate-300 {
1200+
--tw-text-opacity: 1;
1201+
color: rgb(203 213 225 / var(--tw-text-opacity));
1202+
}
11821203
.antialiased {
11831204
-webkit-font-smoothing: antialiased;
11841205
-moz-osx-font-smoothing: grayscale;

resources/views/components/docs-layout.blade.php

+17-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,23 @@
55
<div class="md:grid grid-cols-5 gap-8">
66
{{-- DOCS NAVIGATION --}}
77
<div>
8-
<a href="/documentation" class="block">Getting Started</a>
9-
<a href="/license" class="block">License</a>
10-
<a href="/terms" class="block">Terms of Service</a>
11-
<a href="/privacy" class="block">Privacy Policy</a>
8+
<div class="mb-6">
9+
<a href="/documentation" class="block">Getting Started</a>
10+
</div>
11+
12+
<div class="mb-6">
13+
<div class="text-black text-sm text-slate-300 mb-2">Integrations</div>
14+
<a href="/documentation/integrations#bing-maps" class="block">Bing Maps</a>
15+
<a href="/documentation/integrations#google-maps" class="block mb-1">Google Maps</a>
16+
<a href="/documentation/integrations#mapbox" class="block">Mapbox</a>
17+
</div>
18+
19+
<div class="mb-6">
20+
<div class="text-black text-sm text-slate-300 mb-2">Legal</div>
21+
<a href="/license" class="block mb-1">License</a>
22+
<a href="/terms" class="block mb-1">Terms of Service</a>
23+
<a href="/privacy" class="block">Privacy Policy</a>
24+
</div>
1225
</div>
1326

1427
{{-- DOCS CONTENT --}}

0 commit comments

Comments
 (0)