10
10
<div class =" text-5xl font-bold tracking-tight mb-4 text-[#00aaa6]" >
11
11
{{ $title } }
12
12
</div >
13
- <div class =" rounded-lg flex items-center p-3 mt-8 space-x-6 border
14
- text-orange-800 border-orange-300 bg-orange-50
15
- dark:text-orange-100 dark:bg-orange-900/80 dark:border-orange-600" >
16
- <x-heroicon-o-shield-exclamation class =" size-10 ml-3" />
17
- <div >
18
- <p >
19
- NativePHP is currently in
20
- <a href =" /docs/getting-started/status" class =" font-bold italic font-mono flex-inline px-1 py-0.5 text-base bg-orange-200 dark:bg-orange-600 rounded" >alpha</a >
21
- development
22
- </p >
23
13
24
- <a href =" https://github.com/nativephp/laravel?sponsor=1"
25
- onclick =" fathom.trackEvent('beta_interest');"
26
- class =" group mt-4 font-bold inline-flex items-center rounded-md px-3 py-1
27
- bg-orange-200 border border-orange-400 hover:bg-orange-300
28
- dark:bg-orange-600 dark:border-orange-400 dark:hover:bg-orange-500 dark:text-orange-100
29
- " target =" _blank" >
30
- Let's get to beta!
31
- <x-heroicon-o-rocket-launch class =" ml-2 size-5 group-hover:hidden" />
32
- <x-heroicon-s-rocket-launch class =" hidden ml-2 size-5 group-hover:block" />
33
- </a >
34
- </div >
35
- </div >
14
+ <x-alert-beta />
36
15
37
16
@if (count ($tableOfContents ) > 0 )
38
17
<ul class =" mt-8 space-y-2 block xl:hidden" >
@@ -47,6 +26,33 @@ class="group mt-4 font-bold inline-flex items-center rounded-md px-3 py-1
47
26
<div class =" mt-8 prose dark:prose-invert" >
48
27
{!! $content ! !}
49
28
</div >
29
+
30
+ <x-separator class =" mt-8 -mr-4 -ml-4" />
31
+
32
+ @php $linkAlign = $previousPage === null ? ' right' : ' between' ; @endphp
33
+ <x-flex-list-of-links align =" {{ $linkAlign } }" class =" mt-8" >
34
+ @if ($previousPage !== null )
35
+ <x-link-button href =" {{ $previousPage [' path' ] } }" >
36
+ <span class =" md:hidden" >Previous page: </span >
37
+ <span aria-hidden =" true" class =" hidden sm:inline" >&larr ; </span >
38
+ <span >{{ $previousPage [' title' ] } } </span >
39
+ </x-link-button >
40
+ @endif
41
+ @if ($nextPage !== null )
42
+ <x-link-button href =" {{ $nextPage [' path' ] } }" >
43
+ <span class =" md:hidden" >Next page: </span >
44
+ <span >{{ $nextPage [' title' ] } } </span >
45
+ <span aria-hidden =" true" class =" hidden sm:inline" > &rarr ; </span >
46
+ </x-link-button >
47
+ @endif
48
+ </x-flex-list-of-links >
49
+
50
+ <x-separator class =" mt-8 -mr-4 -ml-4" />
51
+ <div class =" mt-8 text-center" >
52
+ <a href =" {{ $editUrl } }" target =" _blank" rel =" noopener noreferrer" class =" text-sm text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-300" >
53
+ Edit this page on GitHub
54
+ </a >
55
+ </div >
50
56
</div >
51
57
<div class =" hidden max-h-[calc(100%-134px)] overflow-y-auto
52
58
xl:fixed xl:right-[max(0px,calc(50%-48rem))] xl:block xl:py-8 xl:px-4 xl:pr-3 xl:w-full xl:max-w-sm" >
0 commit comments