80 lines
1.9 KiB
PHP
Executable File
80 lines
1.9 KiB
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="en" @yield('html-attribute')>
|
|
|
|
<style>
|
|
/* .floating-icon {
|
|
position: fixed;
|
|
right: 30px;
|
|
bottom: 70px;
|
|
background: white;
|
|
padding: 10px;
|
|
border-radius: 50%;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
cursor: pointer;
|
|
z-index: 1000;
|
|
} */
|
|
.floating-icon {
|
|
position: fixed;
|
|
right: 40px;
|
|
bottom: 100px;
|
|
width: 70px; /* Sesuaikan ukuran */
|
|
height: 70px; /* Sesuaikan ukuran */
|
|
background: white;
|
|
border-radius: 50%;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
cursor: pointer;
|
|
z-index: 1000;
|
|
background-image: url('/images/iconchatbot.jpeg'); /* Path ke gambar */
|
|
background-size: cover; /* Agar gambar menyesuaikan */
|
|
background-position: center; /* Memusatkan gambar */
|
|
}
|
|
|
|
</style>
|
|
|
|
<head>
|
|
@include('layouts.partials/title-meta')
|
|
|
|
@include('layouts.partials/head-css')
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="app-wrapper">
|
|
|
|
@include('layouts.partials/sidebar')
|
|
|
|
@include('layouts.partials/topbar')
|
|
|
|
<div class="page-content">
|
|
|
|
{{-- <div class="container-fluid">
|
|
|
|
@yield('content')
|
|
<div>
|
|
<iconify-icon icon="solar:chat-square-outline" class="fs-35 align-middle"></iconify-icon>
|
|
</div>
|
|
|
|
</div> --}}
|
|
<div class="container-fluid">
|
|
@yield('content')
|
|
|
|
{{-- <div class="floating-icon">
|
|
|
|
</div> --}}
|
|
@if (!Request::is('chatbot'))
|
|
<a href="{{ route('chatbot.index') }}" class="floating-icon">
|
|
|
|
</a>
|
|
@endif
|
|
</div>
|
|
|
|
@include('layouts.partials/footer')
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@include('layouts.partials/vendor-scripts')
|
|
|
|
</body>
|
|
|
|
</html> |