APK and beta
This commit is contained in:
BIN
public/app/karudhaas.apk
Normal file
BIN
public/app/karudhaas.apk
Normal file
Binary file not shown.
@@ -265,6 +265,11 @@
|
|||||||
|
|
||||||
<!--Left Col-->
|
<!--Left Col-->
|
||||||
<div class="flex flex-col w-full xl:w-2/5 justify-center lg:items-start overflow-y-hidden">
|
<div class="flex flex-col w-full xl:w-2/5 justify-center lg:items-start overflow-y-hidden">
|
||||||
|
|
||||||
|
<div class="w-16 bg-red-600 rounded-full py-1 px-4 font-bold text-white">
|
||||||
|
Beta
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="my-4 slide-in-bottom-h1 flex justify-center">
|
<div class="my-4 slide-in-bottom-h1 flex justify-center">
|
||||||
<img src="/images/karudhaas.png" class="w-64">
|
<img src="/images/karudhaas.png" class="w-64">
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -29,6 +29,10 @@ Route::get('/preview', function(){
|
|||||||
return view('pages.preview');
|
return view('pages.preview');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Route::get('/download/android', function () {
|
||||||
|
return response()->download(public_path('app/karudhaas.apk'));
|
||||||
|
});
|
||||||
|
|
||||||
Route::get('/article/{article:id}', [ArticlesController::class, 'show'])->name('articles.show');
|
Route::get('/article/{article:id}', [ArticlesController::class, 'show'])->name('articles.show');
|
||||||
Route::get('/topic/{topic:slug}', [TopicsController::class, 'show'])->name('topics.show');
|
Route::get('/topic/{topic:slug}', [TopicsController::class, 'show'])->name('topics.show');
|
||||||
Route::get('/source/{source:slug}', [SourcesController::class, 'show'])->name('sources.show');
|
Route::get('/source/{source:slug}', [SourcesController::class, 'show'])->name('sources.show');
|
||||||
@@ -51,4 +55,3 @@ Route::get('/ogimage', function(Request $request) {
|
|||||||
|
|
||||||
return view('ogimage', ['article' => $article]);
|
return view('ogimage', ['article' => $article]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user