update layout

This commit is contained in:
daengdeni 2023-12-20 17:35:55 +07:00
parent 0b05d0b576
commit 371c546168
3 changed files with 4 additions and 31 deletions

View File

@ -23,12 +23,8 @@
<!--begin::Footer-->
<div class="d-flex flex-center flex-wrap px-5">
<!--begin::Links-->
<div class="d-flex fw-semibold text-primary fs-base">
<a href="#" class="px-5" target="_blank">Terms</a>
<a href="#" class="px-5" target="_blank">Plans</a>
<a href="#" class="px-5" target="_blank">Contact Us</a>
<div class="d-flex fw-semibold text-default fs-base">
PT Indo Artha Teknologi © {{ date('Y') }} - Daeng Deni Mardaeni
</div>
<!--end::Links-->
</div>
@ -40,32 +36,11 @@
<div class="d-flex flex-lg-row-fluid w-lg-50 bgi-size-cover bgi-position-center order-1 order-lg-2" style="background-image: url({{ image('misc/auth-bg.png') }})">
<!--begin::Content-->
<div class="d-flex flex-column flex-center py-7 py-lg-15 px-5 px-md-15 w-100">
<!--begin::Logo-->
<a href="{{ route('dashboard') }}" class="mb-12">
<img alt="Logo" src="{{ image('logos/custom-1.png') }}" class="h-60px h-lg-75px"/>
</a>
<!--end::Logo-->
<!--begin::Image-->
<img class="d-none d-lg-block mx-auto w-275px w-md-50 w-xl-500px mb-10 mb-lg-20" src="{{ image('misc/auth-screens.png') }}" alt=""/>
<img class="d-none d-lg-block mx-auto w-500px mb-10 mb-lg-20" src="{{ image('misc/bg-login.png') }}" alt=""/>
<!--end::Image-->
<!--begin::Title-->
<h1 class="d-none d-lg-block text-white fs-2qx fw-bolder text-center mb-7">
Fast, Efficient and Productive
</h1>
<!--end::Title-->
<!--begin::Text-->
<div class="d-none d-lg-block text-white fs-base text-center">
In this kind of post, <a href="#" class="opacity-75-hover text-warning fw-bold me-1">the blogger</a>
introduces a person theyve interviewed <br/> and provides some background information about
<a href="#" class="opacity-75-hover text-warning fw-bold me-1">the interviewee</a>
and their <br/> work following this is a transcript of the interview.
</div>
<!--end::Text-->
</div>
<!--end::Content-->
</div>

View File

@ -24,7 +24,7 @@
@foreach($module as $row => $key)
@if($key)
@if(file_exists(dirname(__FILE__, 4) . '/Modules/'.$row.'/Resources/views/partials/menu/_root.blade.php'))
@include(strtolower($row).'::partials.menu._root')
@endif
@endif
@endforeach

View File

@ -29,5 +29,3 @@ Route::middleware(['auth', 'verified'])->group(function () {
Route::get('/error', function () {
abort(500);
});
Route::get('/auth/redirect/{provider}', [SocialiteController::class, 'redirect']);