File tree Expand file tree Collapse file tree 3 files changed +11
-20
lines changed Expand file tree Collapse file tree 3 files changed +11
-20
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,7 @@ class HomeController extends Controller
6
6
{
7
7
public function index ()
8
8
{
9
- $ versionEntry = $ this ->getLatestVersionEntryFromChangelog ();
10
-
11
- return view ('welcome ' , compact ('versionEntry ' ));
12
- }
13
-
14
- protected function getLatestVersionEntryFromChangelog ()
15
- {
16
- $ changelogContent = file_get_contents (base_path ('CHANGELOG.md ' ));
17
- $ pieces = explode ('# [ ' , $ changelogContent );
18
-
19
- return trim ('# [Release ' .$ pieces [1 ]);
9
+ return view ('welcome ' );
20
10
}
21
11
22
12
public function license ()
Original file line number Diff line number Diff line change @@ -1329,6 +1329,9 @@ select {
1329
1329
--tw-bg-opacity : 1 ;
1330
1330
background-color : rgb (24 24 27 / var (--tw-bg-opacity ));
1331
1331
}
1332
+ .bg-slate-700\/ 80 {
1333
+ background-color : rgb (51 65 85 / 0.8 );
1334
+ }
1332
1335
.p-6 {
1333
1336
padding : 1.5rem ;
1334
1337
}
@@ -1693,6 +1696,11 @@ select {
1693
1696
padding-bottom : 9rem ;
1694
1697
}
1695
1698
1699
+ .lg\:py-24 {
1700
+ padding-top : 6rem ;
1701
+ padding-bottom : 6rem ;
1702
+ }
1703
+
1696
1704
.lg\:text-center {
1697
1705
text-align : center;
1698
1706
}
Original file line number Diff line number Diff line change 5
5
6
6
<div class =" md:grid grid-cols-3 gap-8" >
7
7
<div class =" col-span-3" >
8
- <div class =" rounded-lg mb-8 md:mb-0 hero " >
9
- <div class =" rounded-lg lg:text-center bg-indigo -700/80 p-6 lg:py-36 " >
8
+ <div class =" rounded-lg mb-8 md:mb-0" >
9
+ <div class =" rounded-lg lg:text-center bg-slate -700/80 p-6 lg:py-24 " >
10
10
<h1 class =" text-3xl lg:text-5xl font-bold" >
11
11
Generate complex map markers on the fly.
12
12
</h1 >
@@ -70,13 +70,6 @@ class="no-underline -mb-4 mt-4 inline-block px-4 py-2 border border-transparent
70
70
Get Started
71
71
</a >
72
72
</div >
73
- <div class =" col-span-2" >
74
- <div class =" bg-slate-800 p-8 rounded-lg mt-4 mb-8 md:mb-0" >
75
- <div class =" changelog changelog-slim" >
76
- <x-markdown >{{ $versionEntry } } </x-markdown >
77
- </div >
78
- </div >
79
- </div >
80
73
</div >
81
74
</div >
82
75
@endsection
You can’t perform that action at this time.
0 commit comments