login
101
app/Http/Controllers/LoginController.php
Normal file
@ -0,0 +1,101 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Login;
|
||||
use App\Http\Requests\StoreLoginRequest;
|
||||
use App\Http\Requests\UpdateLoginRequest;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Validator;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
class LoginController extends Controller
|
||||
{
|
||||
/**
|
||||
* Display a listing of the resource.
|
||||
*/
|
||||
public function authenticate(Request $request)
|
||||
{
|
||||
$credentials = $request->validate([
|
||||
'email' => ['required', 'email'],
|
||||
'password' => ['required'],
|
||||
]);
|
||||
if (Auth::attempt($credentials)) {
|
||||
$request->session()->regenerate();
|
||||
|
||||
$user = Auth::user();
|
||||
|
||||
if ($user->status === 'super-admin') {
|
||||
return redirect()->intended('/admin');
|
||||
} elseif ($user->status === 'admin') {
|
||||
return redirect()->intended('/');
|
||||
}
|
||||
} return back()->with('errorLogin', 'Email or Password is invalid');
|
||||
|
||||
}
|
||||
public function login(){
|
||||
return view('login.index');
|
||||
}
|
||||
public function logout(Request $request)
|
||||
{
|
||||
Auth::logout();
|
||||
|
||||
$request->session()->invalidate();
|
||||
|
||||
$request->session()->regenerateToken();
|
||||
|
||||
return redirect('/login');
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for creating a new resource.
|
||||
*/
|
||||
public function create()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a newly created resource in storage.
|
||||
*/
|
||||
public function store(StoreLoginRequest $request)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Display the specified resource.
|
||||
*/
|
||||
public function show(Login $login)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
*/
|
||||
public function edit(Login $login)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
*/
|
||||
public function update(UpdateLoginRequest $request, Login $login)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the specified resource from storage.
|
||||
*/
|
||||
public function destroy(Login $login)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
76
app/Http/Controllers/ManajemenAdminController.php
Normal file
@ -0,0 +1,76 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\manajemen_admin;
|
||||
use App\Http\Requests\Storemanajemen_adminRequest;
|
||||
use App\Http\Requests\Updatemanajemen_adminRequest;
|
||||
use App\Models\User;
|
||||
|
||||
class ManajemenAdminController extends Controller
|
||||
{
|
||||
/**
|
||||
* Display a listing of the resource.
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$data= User::all();
|
||||
return view('Admin.Manejemen-Admin.index', compact('data'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for creating a new resource.
|
||||
*/
|
||||
public function create()
|
||||
{
|
||||
|
||||
return view('Admin.Manejemen-Admin.create',[
|
||||
'manajemen-data'=>User::all()
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a newly created resource in storage.
|
||||
*/
|
||||
public function store(Storemanajemen_adminRequest $request)
|
||||
{
|
||||
$validateData=$request->validate([
|
||||
'email'=>'required',
|
||||
'name'=>'required',
|
||||
]);
|
||||
User::create($validateData);
|
||||
return redirect('/super-admin');
|
||||
}
|
||||
|
||||
/**
|
||||
* Display the specified resource.
|
||||
*/
|
||||
public function show(manajemen_admin $manajemen_admin)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
*/
|
||||
public function edit(manajemen_admin $manajemen_admin)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
*/
|
||||
public function update(Updatemanajemen_adminRequest $request, manajemen_admin $manajemen_admin)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the specified resource from storage.
|
||||
*/
|
||||
public function destroy(manajemen_admin $manajemen_admin)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
@ -14,4 +14,4 @@ class Authenticate extends Middleware
|
||||
{
|
||||
return $request->expectsJson() ? null : route('login');
|
||||
}
|
||||
}
|
||||
}
|
28
app/Http/Requests/StoreLoginRequest.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class StoreLoginRequest extends FormRequest
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*/
|
||||
public function authorize(): bool
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
28
app/Http/Requests/Storemanajemen_adminRequest.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class Storemanajemen_adminRequest extends FormRequest
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*/
|
||||
public function authorize(): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
28
app/Http/Requests/UpdateLoginRequest.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class UpdateLoginRequest extends FormRequest
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*/
|
||||
public function authorize(): bool
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
28
app/Http/Requests/Updatemanajemen_adminRequest.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class Updatemanajemen_adminRequest extends FormRequest
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*/
|
||||
public function authorize(): bool
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
11
app/Models/Login.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Login extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
}
|
16
app/Models/manajemen_admin.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class manajemen_admin extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
protected $table="manajemen_admins";
|
||||
protected $fillable = [
|
||||
'email',
|
||||
'password',
|
||||
];
|
||||
}
|
66
app/Policies/LoginPolicy.php
Normal file
@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
namespace App\Policies;
|
||||
|
||||
use App\Models\Login;
|
||||
use App\Models\User;
|
||||
use Illuminate\Auth\Access\Response;
|
||||
|
||||
class LoginPolicy
|
||||
{
|
||||
/**
|
||||
* Determine whether the user can view any models.
|
||||
*/
|
||||
public function viewAny(User $user): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can view the model.
|
||||
*/
|
||||
public function view(User $user, Login $login): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can create models.
|
||||
*/
|
||||
public function create(User $user): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can update the model.
|
||||
*/
|
||||
public function update(User $user, Login $login): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can delete the model.
|
||||
*/
|
||||
public function delete(User $user, Login $login): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can restore the model.
|
||||
*/
|
||||
public function restore(User $user, Login $login): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can permanently delete the model.
|
||||
*/
|
||||
public function forceDelete(User $user, Login $login): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
66
app/Policies/ManajemenAdminPolicy.php
Normal file
@ -0,0 +1,66 @@
|
||||
<?php
|
||||
|
||||
namespace App\Policies;
|
||||
|
||||
use App\Models\User;
|
||||
use App\Models\manajemen_admin;
|
||||
use Illuminate\Auth\Access\Response;
|
||||
|
||||
class ManajemenAdminPolicy
|
||||
{
|
||||
/**
|
||||
* Determine whether the user can view any models.
|
||||
*/
|
||||
public function viewAny(User $user): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can view the model.
|
||||
*/
|
||||
public function view(User $user, manajemen_admin $manajemenAdmin): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can create models.
|
||||
*/
|
||||
public function create(User $user): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can update the model.
|
||||
*/
|
||||
public function update(User $user, manajemen_admin $manajemenAdmin): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can delete the model.
|
||||
*/
|
||||
public function delete(User $user, manajemen_admin $manajemenAdmin): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can restore the model.
|
||||
*/
|
||||
public function restore(User $user, manajemen_admin $manajemenAdmin): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine whether the user can permanently delete the model.
|
||||
*/
|
||||
public function forceDelete(User $user, manajemen_admin $manajemenAdmin): bool
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
@ -17,7 +17,7 @@ class RouteServiceProvider extends ServiceProvider
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public const HOME = '/home';
|
||||
public const HOME = '/admin';
|
||||
|
||||
/**
|
||||
* Define your route model bindings, pattern filters, and other route configuration.
|
||||
@ -37,4 +37,4 @@ class RouteServiceProvider extends ServiceProvider
|
||||
->group(base_path('routes/web.php'));
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
23
database/factories/LoginFactory.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Login>
|
||||
*/
|
||||
class LoginFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
23
database/factories/ManajemenAdminFactory.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\manajemen_admin>
|
||||
*/
|
||||
class ManajemenAdminFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
@ -16,7 +16,8 @@ return new class extends Migration
|
||||
$table->string('name');
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
$table->string('password')->default('$2y$10$suTqdb4eD8tEKhWyVyqE1uOZHZawy6npwwzicu1opiUiT0Zh40QNK'); //password
|
||||
$table->string('status')->default('admin');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
});
|
||||
@ -29,4 +30,4 @@ return new class extends Migration
|
||||
{
|
||||
Schema::dropIfExists('users');
|
||||
}
|
||||
};
|
||||
};
|
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('logins', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('logins');
|
||||
}
|
||||
};
|
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('manajemen_admins', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('email')->unique();
|
||||
$table->string('password')->default('$2y$10$u8KZtzUT6WWgveYj0ylI7OD4txOBrxKJlJbrYK0b68LZPv7XU1McK'); //password
|
||||
$table->string('status')->default('admin');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('manajemen_admins');
|
||||
}
|
||||
};
|
@ -14,9 +14,10 @@ class DatabaseSeeder extends Seeder
|
||||
{
|
||||
// \App\Models\User::factory(10)->create();
|
||||
|
||||
// \App\Models\User::factory()->create([
|
||||
// 'name' => 'Test User',
|
||||
// 'email' => 'test@example.com',
|
||||
// ]);
|
||||
\App\Models\User::factory()->create([
|
||||
'name' => 'jilhan',
|
||||
'email' => 'jilhan@gmail.com',
|
||||
'status'=>'super-admin'
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
17
database/seeders/LoginSeeder.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class LoginSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
17
database/seeders/ManajemenAdminSeeder.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class ManajemenAdminSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
734
public/assets-login-landing/css/style.css
Normal file
@ -0,0 +1,734 @@
|
||||
/*--------------------------------------------------------------
|
||||
# General
|
||||
--------------------------------------------------------------*/
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
:root{
|
||||
--primary-bg-color: #009C98;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Poppins", sans-serif;
|
||||
color: #444444;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #009C98;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #5EBFBC;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: "Poppins", sans-serif;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #009C98;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: #5EBFBC;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Back to top button
|
||||
--------------------------------------------------------------*/
|
||||
.back-to-top {
|
||||
position: fixed;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
right: 15px;
|
||||
bottom: 15px;
|
||||
z-index: 996;
|
||||
background: #009C98;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 4px;
|
||||
transition: all 0.4s;
|
||||
}
|
||||
|
||||
.back-to-top i {
|
||||
font-size: 28px;
|
||||
color: #fff;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.back-to-top:hover {
|
||||
background: #5EBFBC;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.back-to-top.active {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Disable AOS delay on mobile
|
||||
--------------------------------------------------------------*/
|
||||
@media screen and (max-width: 768px) {
|
||||
[data-aos-delay] {
|
||||
transition-delay: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Header
|
||||
--------------------------------------------------------------*/
|
||||
#header {
|
||||
height: 72px;
|
||||
transition: all 0.5s;
|
||||
z-index: 997;
|
||||
transition: all 0.5s;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
#header.header-scrolled {
|
||||
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
#header .logo h1 {
|
||||
font-size: 28px;
|
||||
margin: 0;
|
||||
line-height: 0;
|
||||
font-weight: 600;
|
||||
letter-spacing: 1px;
|
||||
font-family: "Poppins", sans-serif;
|
||||
}
|
||||
|
||||
#header .logo h1 a,
|
||||
#header .logo h1 a:hover {
|
||||
color: #576971;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#header .logo img {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
max-height: 40px;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Header Social Links
|
||||
--------------------------------------------------------------*/
|
||||
.header-social-links {
|
||||
margin: 0 0 0 30px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.header-social-links {
|
||||
margin: 0 15px 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
.header-social-links a {
|
||||
color: #7b909a;
|
||||
display: inline-block;
|
||||
line-height: 0px;
|
||||
transition: 0.3s;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.header-social-links a:hover {
|
||||
color: #009C98;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Navigation Menu
|
||||
--------------------------------------------------------------*/
|
||||
/**
|
||||
* Desktop Navigation
|
||||
*/
|
||||
.navbar {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.btn-login{
|
||||
background-color: #009C98;
|
||||
border-radius: .2rem;
|
||||
border: none;
|
||||
padding: .3rem 1.7rem .55rem;
|
||||
}
|
||||
|
||||
.btn-login:hover{
|
||||
background-color: #5EBFBC;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Hero Section
|
||||
--------------------------------------------------------------*/
|
||||
#hero {
|
||||
width: 100%;
|
||||
background-image: url("../img/hero-bg.png");
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-position: right top;
|
||||
margin-top: 70px;
|
||||
padding: 60px 0;
|
||||
}
|
||||
|
||||
#hero h1 {
|
||||
margin: 0 0 20px 0;
|
||||
font-size: 48px;
|
||||
font-weight: 700;
|
||||
line-height: 56px;
|
||||
color: #364146;
|
||||
}
|
||||
|
||||
#hero h2 {
|
||||
color: #576971;
|
||||
margin-bottom: 30px;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
#hero .btn-get-started {
|
||||
font-family: "Poppins", sans-serif;
|
||||
font-weight: 600;
|
||||
font-size: 13px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
display: inline-block;
|
||||
padding: 12px 28px;
|
||||
border-radius: 3px;
|
||||
transition: 0.5s;
|
||||
color: #fff;
|
||||
background: #009C98;
|
||||
transition: transform 0.5s ease-in-out, background 0.5s ease-in-out;
|
||||
|
||||
}
|
||||
|
||||
#hero .btn-get-started:hover {
|
||||
background: #5EBFBC;
|
||||
}
|
||||
|
||||
#hero .hero-img {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#hero .hero-img img {
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
#hero {
|
||||
background-attachment: fixed;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
#hero h1 {
|
||||
font-size: 32px;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
#hero h2 {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes moveImage {
|
||||
0%, 100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-15px);
|
||||
}
|
||||
}
|
||||
|
||||
#moving-image {
|
||||
animation: moveImage 3s linear infinite;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Sections General
|
||||
--------------------------------------------------------------*/
|
||||
section {
|
||||
padding: 60px 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.section-bg {
|
||||
background-color: #f7f8f9;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
text-align: center;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.section-title h2 {
|
||||
font-size: 32px;
|
||||
font-weight: 400;
|
||||
margin-bottom: 20px;
|
||||
padding-bottom: 0;
|
||||
font-family: "Poppins", sans-serif;
|
||||
color: #627680;
|
||||
}
|
||||
|
||||
.section-title p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Features
|
||||
--------------------------------------------------------------*/
|
||||
.features {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.features .nav-tabs {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.features .nav-link {
|
||||
border: 0;
|
||||
padding: 20px;
|
||||
transition: 0.3s;
|
||||
color: #364146;
|
||||
transition: 0.3s ease-in-out;
|
||||
border-radius: 0;
|
||||
border-left: 4px solid #fafbfb;
|
||||
}
|
||||
|
||||
.features .nav-link h4 {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
transition: 0.3s ease-in-out;
|
||||
color: #576971;
|
||||
}
|
||||
|
||||
.features .nav-link p {
|
||||
font-size: 14px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.features .nav-link:hover {
|
||||
background: #fafbfb;
|
||||
}
|
||||
|
||||
.features .nav-link:hover h4 {
|
||||
color: #364146;
|
||||
}
|
||||
|
||||
.features .nav-link.active {
|
||||
border-radius: 0;
|
||||
border: 0;
|
||||
border-left: 4px solid #009C98;
|
||||
background: #fafbfb;
|
||||
}
|
||||
|
||||
.features .nav-link.active h4 {
|
||||
color: #009C98;
|
||||
}
|
||||
|
||||
.features .tab-pane.active {
|
||||
animation: slide-down 0.5s ease-out;
|
||||
}
|
||||
|
||||
.features .tab-content {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
@keyframes slide-down {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Services
|
||||
--------------------------------------------------------------*/
|
||||
.services .icon-box {
|
||||
padding: 30px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
background: #fff;
|
||||
box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
|
||||
transition: all 0.3s ease-in-out;
|
||||
border-radius: 4px;
|
||||
text-align: center;
|
||||
border-bottom: 3px solid #fff;
|
||||
}
|
||||
|
||||
.services .icon-box:hover {
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
|
||||
.services .icon i {
|
||||
font-size: 48px;
|
||||
line-height: 1;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.services .title {
|
||||
font-weight: 600;
|
||||
margin-bottom: 15px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.services .title a {
|
||||
color: #111;
|
||||
}
|
||||
|
||||
.services .description {
|
||||
font-size: 15px;
|
||||
line-height: 28px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.services .icon-box-pink .icon i {
|
||||
color: #ff689b;
|
||||
}
|
||||
|
||||
.services .icon-box-pink:hover {
|
||||
border-color: #ff689b;
|
||||
}
|
||||
|
||||
.services .icon-box-cyan .icon i {
|
||||
color: #3fcdc7;
|
||||
}
|
||||
|
||||
.services .icon-box-cyan:hover {
|
||||
border-color: #3fcdc7;
|
||||
}
|
||||
|
||||
.services .icon-box-green .icon i {
|
||||
color: #41cf2e;
|
||||
}
|
||||
|
||||
.services .icon-box-green:hover {
|
||||
border-color: #41cf2e;
|
||||
}
|
||||
|
||||
.services .icon-box-blue .icon i {
|
||||
color: #2282ff;
|
||||
}
|
||||
|
||||
.services .icon-box-blue:hover {
|
||||
border-color: #2282ff;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Cta
|
||||
--------------------------------------------------------------*/
|
||||
.cta {
|
||||
background: linear-gradient(rgba(243, 255, 253, 0.694), rgba(255, 255, 255, 0.8)), url("../img/cta.png") center center;
|
||||
background-size: cover;
|
||||
padding: 80px 0;
|
||||
}
|
||||
|
||||
.cta h3 {
|
||||
color: #364146;
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.cta p {
|
||||
color: #576971;
|
||||
}
|
||||
|
||||
.cta .cta-btn {
|
||||
font-family: "Poppins", sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: 15px;
|
||||
letter-spacing: 1px;
|
||||
display: inline-block;
|
||||
padding: 10px 30px;
|
||||
border-radius: 4px;
|
||||
transition: 0.5s;
|
||||
margin: 10px;
|
||||
color: #fff;
|
||||
background: #009C98;
|
||||
}
|
||||
|
||||
.cta .cta-btn:hover {
|
||||
background: #5EBFBC;
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.cta {
|
||||
background-attachment: fixed;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 769px) {
|
||||
.cta .cta-btn-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Footer
|
||||
--------------------------------------------------------------*/
|
||||
#footer {
|
||||
background: #f7f8f9;
|
||||
padding: 0 0 30px 0;
|
||||
color: #364146;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
#footer .copyright {
|
||||
text-align: center;
|
||||
padding-top: 30px;
|
||||
}
|
||||
|
||||
#footer .credits {
|
||||
padding-top: 8px;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
color: #364146;
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Login
|
||||
--------------------------------------------------------------*/
|
||||
.login {
|
||||
font-family: 'Poppins', sans-serif;
|
||||
overflow: hidden;
|
||||
|
||||
}
|
||||
|
||||
.login .container {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
padding: 1rem 2rem 0 2rem;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.login .img {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
margin: 0 45px 0 -55px;
|
||||
|
||||
}
|
||||
|
||||
.login .img img {
|
||||
width: 550px;
|
||||
}
|
||||
|
||||
.login .login-content {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.login .login-content form {
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.login .login-content form h1 {
|
||||
color: #009C98;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.login .login-content form p {
|
||||
color: #009C98;
|
||||
font-size: 13px;
|
||||
letter-spacing: .8px;
|
||||
padding: 5px 0 30px 0;
|
||||
}
|
||||
|
||||
.login .login-content .input-div {
|
||||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: 7% 93%;
|
||||
margin: 25px 0;
|
||||
padding: 5px 0;
|
||||
border-bottom: 1.5px solid #009C98;
|
||||
}
|
||||
|
||||
.login .login-content .input-div.one {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.login .i {
|
||||
color: #009C98;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.login .i i {
|
||||
transition: .3s;
|
||||
}
|
||||
|
||||
.login .input-div>div {
|
||||
position: relative;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.login .input-div>div>h5 {
|
||||
position: absolute;
|
||||
size: 1;
|
||||
left: 10px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: #037874;
|
||||
font-size: .9rem;
|
||||
font-weight: 600;
|
||||
transition: .3s;
|
||||
}
|
||||
|
||||
.login .input-div:before,
|
||||
.login .input-div:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -2px;
|
||||
width: 0%;
|
||||
height: 2px;
|
||||
background-color: #009C98;
|
||||
transition: .4s;
|
||||
}
|
||||
|
||||
.login .input-div:before {
|
||||
right: 50%;
|
||||
}
|
||||
|
||||
.login .input-div:after {
|
||||
left: 50%;
|
||||
}
|
||||
|
||||
.login .input-div.focus:before,
|
||||
.login .input-div.focus:after {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.login .input-div.focus>div>h5 {
|
||||
top: -5px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.login .input-div.focus>.i>i {
|
||||
color: #009C98;
|
||||
}
|
||||
|
||||
.login .input-div>div>input {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
outline: none;
|
||||
background: none;
|
||||
padding: 0.5rem 0.7rem;
|
||||
font-size: 1.2rem;
|
||||
/* color: #555; */
|
||||
}
|
||||
|
||||
.login .input-div.pass {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.login .btn {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
border-radius: 10px;
|
||||
outline: none;
|
||||
border: none;
|
||||
background-color: #009C98;
|
||||
background-size: 200%;
|
||||
font-size: 1rem;
|
||||
/* color: #fff; */
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
text-transform: uppercase;
|
||||
margin: 1rem 0;
|
||||
cursor: pointer;
|
||||
transition: .5s;
|
||||
}
|
||||
|
||||
.login .btn:hover {
|
||||
transform: translateY(-5px);
|
||||
background-color: #5EBFBC;
|
||||
}
|
||||
|
||||
@keyframes moveImage {
|
||||
|
||||
0%,
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: translateY(-15px);
|
||||
}
|
||||
}
|
||||
|
||||
.login #moving-login-img {
|
||||
animation: moveImage 3s linear infinite;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media screen and (max-width: 1050px) {
|
||||
.login .container {
|
||||
grid-gap: 5rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1000px) {
|
||||
.login form {
|
||||
width: 290px;
|
||||
}
|
||||
|
||||
.login .login-content h2 {
|
||||
font-size: 2.4rem;
|
||||
margin: 8px 0;
|
||||
}
|
||||
|
||||
.login .img img {
|
||||
width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 900px) {
|
||||
.login .container {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.login .img {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.login .wave {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.login .login-content {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
BIN
public/assets-login-landing/img/Kemendes_Logo.png
Normal file
After Width: | Height: | Size: 32 KiB |
130
public/assets-login-landing/img/about.svg
Normal file
@ -0,0 +1,130 @@
|
||||
<svg width="578" height="370" viewBox="0 0 578 370" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.6347 221.468C16.7712 167.011 57.3554 138.632 110.748 122.486C164.139 106.339 184.767 85.9822 218.744 50.881C252.72 15.7835 324.925 -26.3396 391.665 21.3979C458.405 69.1344 462.653 191.282 513.617 222.871C564.584 254.463 579.145 295.88 577.931 338C537.28 338 36.7244 338 36.7244 338C36.7244 338 5.17593 269.905 10.6347 221.468Z" fill="#A6E2E2"/>
|
||||
<path d="M259.891 114.023C257.581 114.023 252.379 113.157 252.668 116.336C252.955 119.515 253.244 122.982 253.535 124.137C253.822 125.294 254.979 126.45 259.313 125.871C263.648 125.294 259.891 114.023 259.891 114.023Z" fill="#769989"/>
|
||||
<path d="M265.381 111.134C262.491 110.844 259.026 110.556 259.026 112.578C259.026 114.601 258.736 151.589 259.314 170.372C259.891 189.155 261.917 335.087 262.203 342.022C262.492 342.889 269.718 342.31 269.718 342.31C269.718 342.31 268.851 331.041 268.561 316.88C268.272 302.722 268.561 194.935 268.272 184.242C267.983 173.552 265.381 112.29 265.381 111.134Z" fill="#009C98"/>
|
||||
<path d="M465.062 114.023C467.374 114.023 472.577 113.157 472.288 116.336C471.999 119.515 471.709 122.982 471.42 124.137C471.131 125.294 469.976 126.45 465.642 125.871C461.305 125.294 465.062 114.023 465.062 114.023Z" fill="#769989"/>
|
||||
<path d="M459.571 111.134C462.462 110.844 465.93 110.556 465.93 112.578C465.93 114.601 466.218 151.589 465.641 170.372C465.062 189.155 463.039 335.087 462.75 342.022C462.461 342.889 455.235 342.31 455.235 342.31C455.235 342.31 456.103 331.041 456.392 316.88C456.681 302.722 456.392 194.935 456.681 184.242C456.97 173.552 459.571 112.29 459.571 111.134Z" fill="#009C98"/>
|
||||
<path d="M276.074 46.4037C266.214 47.1997 262.781 46.9817 263.36 57.9627C263.937 68.9447 265.094 166.617 265.671 181.644C266.248 196.67 266.248 197.248 283.587 197.248C300.926 197.248 440.21 196.671 451.19 196.671C462.172 196.671 459.283 192.048 459.283 179.911C459.283 167.774 459.861 67.2117 459.861 57.9647C459.861 48.7177 458.511 43.7087 449.072 43.9017C437.501 44.1387 391.929 44.1837 361.877 44.7617C331.825 45.3387 287.127 45.5107 276.074 46.4037Z" fill="#F5FFFA"/>
|
||||
<path d="M280.167 77.0938C281.816 73.5098 285.49 70.4778 289.447 69.9618C290.773 69.7888 288.223 72.5478 287.899 72.8798C287.14 73.6558 286.325 74.4128 285.455 75.0628C285.623 75.3508 285.791 75.6388 285.959 75.9258C288 74.3578 290.045 72.8368 292.318 71.6178C292.659 71.4348 296.124 69.7788 295.511 71.2038C295.115 72.1268 294.18 72.8298 293.353 73.3278C293.554 73.5898 293.756 73.8508 293.958 74.1128C298.383 70.5768 303.077 72.3048 308.125 72.8328C310.409 73.0718 312.693 73.1018 314.988 73.1028C317.113 73.1038 319.198 73.4238 321.287 72.8938C321.912 72.7358 321.646 71.7708 321.021 71.9298C318.549 72.5568 315.822 72.1098 313.293 72.0988C310.278 72.0858 307.369 71.7218 304.4 71.2248C300.289 70.5368 296.603 70.7258 293.25 73.4058C292.799 73.7658 293.379 74.4778 293.855 74.1908C294.718 73.6728 298.113 70.8598 296.177 69.7258C295.099 69.0948 293.559 69.9618 292.572 70.3858C289.967 71.5028 287.682 73.3488 285.453 75.0628C284.951 75.4478 285.437 76.3138 285.957 75.9258C287.114 75.0618 292.468 71.0058 290.671 69.2358C289.582 68.1618 286.722 69.5958 285.702 70.0898C282.992 71.4048 280.557 73.8588 279.302 76.5878C279.036 77.1698 279.897 77.6788 280.167 77.0938Z" fill="#462D4B"/>
|
||||
<path d="M300.203 62.5277C299.51 60.9607 300.701 59.2327 301.703 58.1257C303.272 56.3917 305.121 57.0137 305.293 59.3007C305.448 61.3697 304.771 63.4107 304.857 65.4767C304.876 65.9557 305.541 66.1827 305.789 65.7287C306.269 64.8507 309.379 58.8127 310.307 61.0227C310.914 62.4727 310.653 65.7367 313.429 64.4767C315.598 63.4927 316.392 61.8117 319.266 63.3097C320.734 64.0757 322.616 64.0257 324.223 64.1587C326.654 64.3607 329.986 65.1827 332.196 63.7887C332.74 63.4457 332.239 62.5807 331.692 62.9257C330.265 63.8247 328.118 63.5017 326.514 63.3877C324.367 63.2357 321.745 63.2847 319.77 62.4467C318.41 61.8687 317.547 61.2767 316.03 61.6737C314.181 62.1567 311.889 65.3847 311.445 61.4307C311.27 59.8777 310.103 58.7457 308.672 59.7047C306.905 60.8897 305.909 63.4267 304.926 65.2237C305.237 65.3077 305.547 65.3917 305.858 65.4757C305.772 63.4187 307.876 56.3307 304.21 55.9807C301.049 55.6787 298.103 60.2347 299.341 63.0317C299.6 63.6207 300.461 63.1117 300.203 62.5277Z" fill="#462D4B"/>
|
||||
<path d="M296.435 77.4657C301.233 80.2227 306.264 82.7347 311.284 85.0627C315.247 86.8997 319.523 88.2547 323.02 90.9527C323.53 91.3467 324.027 90.4768 323.524 90.0898C320.043 87.4038 315.76 85.9818 311.789 84.1998C306.754 81.9418 301.724 79.3527 296.939 76.6037C296.379 76.2807 295.875 77.1457 296.435 77.4657Z" fill="#462D4B"/>
|
||||
<path d="M319.094 92.3498C321.763 93.2188 324.269 94.5748 327.126 94.6798C327.463 94.6918 327.679 94.3528 327.608 94.0468C327.083 91.7698 325.547 89.9858 324.475 87.9578C324.174 87.3878 323.311 87.8928 323.612 88.4628C324.64 90.4088 326.139 92.1288 326.643 94.3128C326.804 94.1018 326.964 93.8908 327.125 93.6798C324.372 93.5788 321.93 92.2228 319.358 91.3868C318.745 91.1858 318.484 92.1508 319.094 92.3498Z" fill="#462D4B"/>
|
||||
<path d="M314.93 81.9478C326.253 77.8578 340.411 76.1418 349.371 86.0208C357.859 95.3798 351.116 107.554 341.908 113.15C333.256 118.409 322.194 118.964 312.723 115.813C307.912 114.211 303.526 111.264 300.907 106.854C297.121 100.479 300.858 94.2578 305.325 89.5238C305.767 89.0548 305.061 88.3468 304.618 88.8168C300.779 92.8858 297.523 97.6408 298.53 103.48C299.435 108.734 304.078 112.763 308.537 115.119C318.265 120.259 330.741 119.788 340.484 115.062C349.963 110.464 357.523 99.8298 352.733 89.2978C347.137 76.9968 331.087 76.2278 319.846 79.2908C318.092 79.7688 316.371 80.3658 314.663 80.9828C314.063 81.2018 314.323 82.1678 314.93 81.9478Z" fill="#462D4B"/>
|
||||
<path d="M288.018 129.321C287.931 129.321 287.844 129.321 287.756 129.321C287.111 129.321 287.111 130.321 287.756 130.321C291.68 130.321 295.596 129.906 299.536 129.95C303.986 130 308.411 130.141 312.809 129.34C312.604 129.224 312.399 129.108 312.194 128.991C312.911 130.793 312.79 132.735 312.946 134.637C313.141 137.015 313.074 139.426 313.174 141.811C313.339 145.782 313.234 149.751 314.121 153.65C314.282 153.439 314.442 153.228 314.603 153.017C305.802 153.433 297.033 154.512 288.21 154.364C288.377 154.531 288.543 154.697 288.71 154.864C288.555 150.422 288.669 145.978 288.551 141.535C288.448 137.713 288.069 133.622 288.777 129.839C288.885 129.262 288.203 129 287.863 129.454C287.835 129.492 287.806 129.53 287.778 129.568C287.391 130.085 288.26 130.583 288.641 130.073C288.669 130.035 288.698 129.997 288.727 129.958C288.422 129.83 288.118 129.701 287.813 129.573C287.138 133.177 287.491 136.967 287.516 140.608C287.549 145.355 287.543 150.12 287.709 154.864C287.719 155.14 287.93 155.359 288.209 155.364C297.031 155.512 305.801 154.433 314.602 154.017C314.936 154.001 315.159 153.711 315.084 153.384C314.088 149.009 314.377 144.53 314.076 140.086C313.83 136.441 314.536 132.196 313.157 128.725C313.049 128.454 312.834 128.323 312.542 128.376C307.927 129.216 303.255 128.992 298.59 128.939C294.964 128.899 291.364 129.321 287.754 129.321C287.109 129.321 287.109 130.321 287.754 130.321C287.842 130.321 287.929 130.321 288.016 130.321C288.663 130.321 288.663 129.321 288.018 129.321Z" fill="#462D4B"/>
|
||||
<path d="M324.737 138.298C324.775 136.421 326.696 135.421 328.295 135.015C331.028 134.32 331.188 136.299 329.971 138.239C329.658 138.736 330.349 139.219 330.756 138.845C331.539 138.125 332.24 137.324 333.005 136.584C333.725 135.694 334.644 135.513 335.763 136.041C335.801 136.52 335.702 137.046 335.682 137.526C335.671 137.78 335.918 138.05 336.182 138.026C337.633 137.892 338.952 137.407 340.345 137.004C342.093 136.499 344.202 136.682 346.007 136.68C348.136 136.678 350.423 137.696 352.497 136.851C353.086 136.611 352.829 135.644 352.231 135.887C350.119 136.746 347.457 135.678 345.22 135.681C343.807 135.682 342.404 135.74 340.996 135.869C339.338 136.022 337.853 136.872 336.181 137.026C336.348 137.193 336.514 137.36 336.681 137.526C336.718 136.627 337.092 134.307 335.443 134.464C332.967 134.699 331.768 136.557 330.048 138.137C330.31 138.339 330.571 138.541 330.833 138.743C332.193 136.576 332.375 133.893 329.162 133.897C326.74 133.9 323.79 135.673 323.736 138.297C323.723 138.942 324.723 138.942 324.737 138.298Z" fill="#462D4B"/>
|
||||
<path d="M323.598 145.907C327.739 145.109 331.95 145.558 336.12 145.837C340.822 146.151 345.536 145.941 350.243 145.925C350.888 145.923 350.888 144.923 350.243 144.925C345.532 144.941 340.827 145.12 336.12 144.837C331.843 144.579 327.577 144.125 323.332 144.944C322.7 145.065 322.968 146.029 323.598 145.907Z" fill="#462D4B"/>
|
||||
<path d="M321.924 153.631C326.689 153.598 331.425 153.123 336.17 152.742C340.848 152.367 345.56 152.832 350.243 152.86C350.889 152.864 350.888 151.864 350.243 151.86C345.557 151.832 340.85 151.385 336.17 151.742C331.422 152.104 326.691 152.597 321.924 152.631C321.28 152.635 321.279 153.635 321.924 153.631Z" fill="#462D4B"/>
|
||||
<path d="M289.946 170.39C301.584 170.359 313.183 169.26 324.816 169.043C336.945 168.817 349.094 168.667 361.225 168.657C361.87 168.656 361.87 167.656 361.225 167.657C349.415 167.667 337.61 168.012 325.8 168.042C313.836 168.071 301.911 169.357 289.946 169.39C289.301 169.392 289.301 170.392 289.946 170.39Z" fill="#462D4B"/>
|
||||
<path d="M367.45 142.774C369.734 141.225 372.151 139.878 374.834 139.167C376.372 138.76 379.439 138.884 378.362 141.4C377.916 142.442 376.983 143.315 376.001 143.838C376.229 144.066 376.457 144.294 376.685 144.522C379.345 141.03 383.281 138.482 387.461 137.215C388.209 136.988 390.305 136.26 390.72 137.422C390.949 138.065 390.471 139.042 390.22 139.604C389.699 140.767 388.91 141.841 388.036 142.759C387.654 143.16 388.154 143.865 388.641 143.544C391.502 141.664 393.94 139.236 396.791 137.345C397.599 136.809 398.477 136.355 399.404 136.062C401.421 135.425 401.979 137.207 401.973 138.725C401.97 139.46 402.267 140.356 402.874 140.816C404.613 142.133 407.08 141.448 409.01 140.973C412.651 140.077 416.405 139.072 420.175 139.183C420.032 138.932 419.887 138.682 419.743 138.431C419.586 138.547 419.43 138.662 419.272 138.778C418.683 139.018 418.94 139.986 419.538 139.742C420.175 139.483 420.24 139.484 420.606 138.936C420.826 138.608 420.532 138.194 420.174 138.183C416.673 138.08 413.144 138.907 409.764 139.746C408.321 140.104 406.913 140.489 405.419 140.563C402.523 140.708 403.319 137.742 402.74 135.853C401.256 131.004 389.535 141.761 388.136 142.681C388.337 142.943 388.539 143.204 388.742 143.466C389.785 142.372 393.869 136.877 390.598 135.966C388.324 135.333 385.609 136.703 383.607 137.668C380.582 139.126 377.851 141.351 375.82 144.017C375.494 144.445 376.102 144.915 376.504 144.701C378.063 143.873 381.323 140.26 378.879 138.62C375.382 136.273 369.795 139.976 366.945 141.91C366.416 142.27 366.915 143.137 367.45 142.774Z" fill="#462D4B"/>
|
||||
<path d="M362.573 158.832C372.362 157.572 382.224 157.152 392.08 156.785C402.037 156.414 411.933 155.208 421.909 155.173C422.554 155.171 422.554 154.171 421.909 154.173C411.933 154.208 402.037 155.417 392.08 155.785C382.224 156.15 372.362 156.572 362.573 157.832C361.942 157.913 361.934 158.914 362.573 158.832Z" fill="#462D4B"/>
|
||||
<path d="M375.614 170.181C383.76 168.626 392.033 168.019 400.297 167.484C408.54 166.95 416.731 165.272 424.992 165.189C425.637 165.183 425.638 164.183 424.992 164.189C416.433 164.275 407.923 165.99 399.38 166.543C391.333 167.064 383.279 167.704 375.349 169.216C374.715 169.338 374.984 170.301 375.614 170.181Z" fill="#462D4B"/>
|
||||
<path d="M368.547 63.1958C368.074 66.2668 368.818 83.4548 368.818 84.8058C368.818 86.1558 369.359 87.2378 371.924 87.1018C374.49 86.9668 389.887 87.1018 391.912 86.9668C393.938 86.8308 394.074 87.2378 394.344 84.6698C394.615 82.1048 393.939 64.6818 393.804 63.4658C393.668 62.2498 393.128 61.3048 390.158 61.4408C387.186 61.5758 372.599 61.1698 371.385 61.3048C370.168 61.4408 368.818 61.4408 368.547 63.1958Z" fill="#009C98"/>
|
||||
<path d="M405.42 70.6247C405.213 74.1307 405.959 92.3687 406.5 96.9617C407.04 101.554 406.904 101.554 412.307 101.689C417.71 101.824 434.187 101.824 437.294 101.689C440.399 101.553 441.074 100.608 440.805 96.5557C440.534 92.5037 440.67 71.5697 440.534 70.3547C440.399 69.1387 440.399 67.6527 436.753 67.6527C433.107 67.6527 415.278 68.3287 408.795 68.0587C407.021 67.9837 405.554 68.3287 405.42 70.6247Z" fill="#769989"/>
|
||||
<path d="M371.115 100.203C370.972 102.63 370.979 110.198 371.115 115.465C371.249 120.733 371.925 120.733 375.031 120.868C378.137 121.002 388.536 120.597 391.643 120.597C394.75 120.597 395.019 118.706 395.019 114.788C395.019 110.872 395.019 102.768 394.884 100.473C394.75 98.1767 393.534 98.0408 391.778 98.0408C390.022 98.0408 376.381 97.7708 374.76 97.7708C373.14 97.7718 371.249 97.9067 371.115 100.203Z" fill="#A4CDBB"/>
|
||||
<path d="M286.284 184.84C296.466 183.669 306.674 183.376 316.908 183.08C322.054 182.931 327.201 182.894 332.346 182.678C337.61 182.457 342.856 181.807 348.125 181.758C348.77 181.752 348.771 180.752 348.125 180.758C343.178 180.804 338.245 181.377 333.306 181.633C328.164 181.9 323.012 181.931 317.867 182.055C307.316 182.309 296.778 182.633 286.285 183.84C285.651 183.913 285.644 184.913 286.284 184.84Z" fill="#462D4B"/>
|
||||
<path d="M264.393 291.644C266.51 303.203 273.251 344.623 273.639 350.787C274.025 356.952 271.711 355.218 270.364 350.016C269.016 344.814 256.494 292.222 256.494 292.222L264.393 291.644Z" fill="#A4CDBB"/>
|
||||
<path d="M292.142 321.297C292.334 326.112 292.051 340.578 292.63 343.276C293.208 345.973 306.196 355.411 311.59 342.502C305.235 338.841 305.977 327.27 305.783 321.298C305.59 315.325 292.142 321.297 292.142 321.297Z" fill="#08605E"/>
|
||||
<path d="M179.337 168.64C179.626 167.627 183.816 167.338 191.039 168.35C196.192 169.072 206.644 170.878 210.69 175.791C212.408 177.875 212.496 180.198 212.713 181.534C208.668 192.515 186.273 187.277 179.337 168.64Z" fill="#08605E"/>
|
||||
<path d="M182.131 172.395C184.25 170.855 185.983 166.615 182.708 159.489C179.434 152.36 177.121 140.996 187.909 133.867C198.699 126.739 204.094 127.123 206.79 131.747C209.486 136.369 209.1 140.223 209.679 143.691C210.258 147.16 213.918 148.121 213.532 150.242C213.148 152.36 210.258 152.167 210.258 155.443C210.258 158.719 211.608 162.378 208.715 165.461C205.825 168.544 201.399 167.388 201.398 172.974C201.396 178.562 201.204 181.066 201.204 181.066C193.305 178.753 193.69 182.992 182.131 172.395Z" fill="#FFD1BF"/>
|
||||
<path d="M235.784 291.644C237.903 303.203 244.645 344.623 245.029 350.787C245.417 356.952 243.103 355.218 241.757 350.016C240.408 344.814 227.886 292.222 227.886 292.222L235.784 291.644Z" fill="#A4CDBB"/>
|
||||
<path d="M212.568 278.738C219.889 278.931 256.302 278.931 256.686 281.627C257.071 284.324 259.384 291.068 255.529 292.031C251.676 292.993 239.925 292.03 230.486 292.993C221.046 293.958 211.22 290.296 211.22 290.296L212.568 278.738Z" fill="#587869"/>
|
||||
<path d="M259.796 356.574C261.26 355.928 262.694 355.386 264.124 354.908C263.489 353.611 263.217 351.973 263.46 349.596C264.127 343.095 264.794 332.262 264.794 332.262L251.877 330.261C250.944 333.878 249.806 343.865 249.093 350.388C251.893 354.43 253.899 359.175 259.796 356.574Z" fill="#08605E"/>
|
||||
<path d="M214.303 279.702C218.734 280.855 231.642 282.206 239.347 282.784C247.053 283.361 252.064 282.206 253.411 283.94C254.757 285.673 254.181 293.572 252.062 308.212C249.942 322.855 248.399 331.331 248.786 332.486C253.797 334.219 269.833 334.702 270.796 332.775C271.76 330.847 281.153 281.819 282.114 275.847C286.929 274.114 291.36 273.729 291.361 278.93C291.362 284.129 289.82 324.588 290.013 325.551C295.408 326.128 302.87 325.935 308.652 326.128C314.43 326.32 315.057 324.971 315.442 324.007C315.828 323.045 317.307 302.62 317.946 293.186C319.487 270.453 324.112 251.573 304.077 249.646C284.041 247.72 264.005 250.61 251.868 250.417C239.73 250.226 202.551 249.069 191.762 258.317C180.975 267.564 196.77 276.426 214.303 279.702Z" fill="#009C98"/>
|
||||
<path d="M172.305 291.644C170.185 303.203 163.446 344.623 163.059 350.787C162.672 356.952 164.986 355.218 166.332 350.016C167.681 344.814 180.203 292.222 180.203 292.222L172.305 291.644Z" fill="#A4CDBB"/>
|
||||
<path d="M200.914 291.644C198.795 303.203 192.054 344.623 191.668 350.787C191.282 356.952 193.595 355.218 194.941 350.016C196.29 344.814 208.812 292.222 208.812 292.222L200.914 291.644Z" fill="#A4CDBB"/>
|
||||
<path d="M164.456 253.885C165.033 269.105 164.02 274.884 165.562 283.168C167.104 291.452 171.342 294.536 180.783 293.571C190.222 292.608 200.819 292.995 205.826 292.8C210.836 292.608 213.532 292.992 214.109 285.865C214.688 278.737 215.143 270.139 209.102 265.637C196.243 256.052 193.93 261.301 181.793 262.266C169.657 263.23 164.456 253.885 164.456 253.885Z" fill="#769989"/>
|
||||
<path d="M177.025 178.753C171.391 182.221 158.964 190.601 158.82 204.906C158.675 219.211 160.264 228.601 160.264 238.715C160.264 248.83 164.728 260.65 175.146 262.122C189.451 264.145 202.093 255.259 207.151 253.67C209.753 246.735 248.256 245.072 250.28 243.34C252.303 241.605 246.813 223.833 241.757 216.899C236.698 209.963 232.653 200.139 228.608 194.647C224.562 189.157 221.817 186.124 216.182 183.957C212.281 181.644 211.558 179.911 211.558 179.911C213.871 180.488 203.901 181.5 199.999 180.633C196.098 179.766 188.128 177.744 182.878 172.541C181.095 168.93 180.494 167.774 179.338 168.642C178.182 169.507 173.269 177.309 177.025 178.753Z" fill="#08605E"/>
|
||||
<path d="M209.824 243.554C208.38 244.134 204.045 248.395 207.223 253.596C214.448 251.718 240.455 250.417 242.044 249.407C243.633 248.395 242.478 241.461 240.743 241.172C239.009 240.884 231.207 241.605 224.705 244.207C218.203 246.806 215.748 243.554 209.824 243.554Z" fill="#FFD1BF"/>
|
||||
<path d="M254.277 283.494C254.707 281.484 255.489 279.174 257.037 277.744C257.512 277.305 256.803 276.6 256.33 277.037C254.663 278.576 253.776 281.061 253.313 283.228C253.179 283.857 254.143 284.125 254.277 283.494Z" fill="#462D4B"/>
|
||||
<path d="M253.139 282.784C253.066 279.397 254.484 276.392 255.626 273.284C255.849 272.678 254.882 272.418 254.662 273.018C253.487 276.214 252.064 279.307 252.139 282.784C252.153 283.427 253.153 283.429 253.139 282.784Z" fill="#462D4B"/>
|
||||
<path d="M199.722 263.422C205.229 264.819 207.347 269.99 208.292 275.103C208.74 277.525 208.874 280.004 208.948 282.462C209.011 284.54 209.513 287.718 208.671 289.659C208.417 290.244 209.278 290.754 209.534 290.163C210.434 288.09 210.001 285.22 209.961 283.006C209.908 280.072 209.684 277.146 209.15 274.258C208.173 268.973 205.544 263.866 199.988 262.457C199.362 262.299 199.097 263.263 199.722 263.422Z" fill="#462D4B"/>
|
||||
<path d="M204.152 156.311C205.903 156.921 207.538 157.798 209.426 157.274C210.047 157.102 209.783 156.137 209.16 156.31C207.489 156.773 205.957 155.884 204.417 155.347C203.807 155.134 203.547 156.1 204.152 156.311Z" fill="#462D4B"/>
|
||||
<path d="M204.959 147.413C204.822 146.858 204.602 146.209 204.909 145.677C204.681 145.737 204.453 145.797 204.225 145.856C204.766 146.167 204.562 147.024 204.557 147.545C204.68 147.384 204.802 147.224 204.924 147.063C204.456 147.126 204.373 145.936 204.525 145.676C204.381 145.759 204.237 145.841 204.093 145.923C204.29 145.924 204.451 145.924 204.612 146.047C205.125 146.438 205.623 145.569 205.117 145.184C204.823 144.96 204.451 144.925 204.093 144.923C203.917 144.922 203.75 145.019 203.661 145.171C203.013 146.28 203.764 148.22 205.189 148.026C205.407 147.997 205.554 147.744 205.556 147.544C205.567 146.59 205.686 145.542 204.729 144.991C204.494 144.856 204.182 144.933 204.045 145.17C203.587 145.964 203.786 146.836 203.995 147.676C204.15 148.304 205.114 148.039 204.959 147.413Z" fill="#462D4B"/>
|
||||
<path d="M200.786 140.384C201.199 139.856 201.725 139.409 202.239 138.982C202.568 138.708 202.914 138.456 203.276 138.227C203.418 138.137 203.567 138.058 203.718 137.986C203.947 137.876 203.877 138.034 203.74 137.88C204.17 138.362 204.875 137.653 204.447 137.173C203.893 136.552 202.897 137.267 202.403 137.608C201.57 138.183 200.706 138.876 200.08 139.678C199.687 140.179 200.389 140.892 200.786 140.384Z" fill="#462D4B"/>
|
||||
<path d="M228.706 208.288C230.636 212.502 232.13 216.833 234.209 220.984C236.033 224.627 237.206 228.581 239.493 231.984C239.85 232.516 240.717 232.016 240.356 231.48C238.079 228.09 236.818 224.145 235.072 220.479C233.082 216.302 231.494 211.986 229.569 207.784C229.301 207.198 228.439 207.707 228.706 208.288Z" fill="#462D4B"/>
|
||||
<path d="M181.069 169.831C181.474 172.296 183.372 173.602 185.386 174.819C188.532 176.721 191.291 179.021 194.904 180.005C196.542 180.45 198.227 180.677 199.87 181.103C202.181 181.702 203.648 183.22 204.924 185.133C207.033 188.294 208.576 191.836 210.308 195.205C212.246 198.976 214.672 202.326 216.27 206.288C217.808 210.101 218.557 214.21 219.536 218.186C221.543 226.336 225.361 233.777 228.705 241.422C228.931 241.939 229.837 241.559 229.619 241.037C229.464 240.664 229.386 240.545 229.105 240.239C228.667 239.763 227.962 240.472 228.398 240.946C228.484 241.065 228.569 241.183 228.655 241.302C228.959 241.174 229.264 241.045 229.569 240.917C226.128 233.052 222.352 225.438 220.289 217.058C219.374 213.341 218.578 209.615 217.235 206.02C215.824 202.244 213.626 198.919 211.59 195.465C208.624 190.433 206.785 182.682 200.821 180.352C197.406 179.018 194.004 179.018 190.714 177.115C189.049 176.151 187.542 174.938 185.891 173.954C184.112 172.893 182.394 171.755 182.033 169.563C181.929 168.929 180.965 169.2 181.069 169.831Z" fill="#462D4B"/>
|
||||
<path d="M208.714 180.602C210.238 180.726 211.675 181.578 212.865 182.502C213.3 182.841 213.929 182.429 213.65 181.897C213.067 180.782 213.095 179.418 212.831 178.209C212.569 177.014 211.514 176.06 210.778 175.148C208.923 172.85 206.193 171.184 203.26 170.758C202.63 170.667 202.358 171.63 202.994 171.723C206.132 172.177 208.575 174.002 210.523 176.416C211.499 177.625 211.917 178.493 212.134 180.005C212.256 180.849 212.388 181.642 212.786 182.401C213.048 182.2 213.309 181.998 213.571 181.796C212.154 180.693 210.53 179.751 208.713 179.603C208.071 179.549 208.076 180.55 208.714 180.602Z" fill="#462D4B"/>
|
||||
<path d="M207.741 187.544C207.092 185.031 207.256 182.431 207.721 179.9C207.87 179.089 208.14 176.621 209.466 176.799C210.424 176.929 211.139 177.64 211.883 178.174C212.408 178.551 212.907 177.683 212.388 177.311C211.063 176.359 210.021 175.719 208.331 175.747C208.17 175.75 207.968 175.837 207.899 175.995C206.335 179.596 205.789 183.982 206.777 187.809C206.939 188.433 207.903 188.169 207.741 187.544Z" fill="#462D4B"/>
|
||||
<path d="M176.676 178.993C181.542 182.297 186.218 185.958 191.348 188.854C192.611 189.568 194.004 190.126 195.328 189.336C196 188.934 196.448 188.02 196.816 187.368C197.752 185.709 198.867 184.669 200.492 183.616C201.031 183.266 200.53 182.401 199.987 182.753C198.25 183.879 196.941 185.046 195.952 186.864C194.298 189.907 191.942 188.146 189.803 186.723C185.562 183.902 181.399 180.993 177.181 178.129C176.645 177.766 176.146 178.633 176.676 178.993Z" fill="#462D4B"/>
|
||||
<path d="M180.475 214.008C180.306 219.068 181.528 224.29 182.347 229.264C182.984 233.136 183.44 237.327 184.514 241.109C185.438 244.362 187.97 243.993 190.845 243.682C193.359 243.411 195.977 243.435 198.505 243.405C201.661 243.368 204.85 243.147 207.957 243.822C208.586 243.959 208.853 242.994 208.223 242.857C204.196 241.982 199.871 242.311 195.781 242.481C193.638 242.57 191.512 242.614 189.379 242.839C186.762 243.115 185.786 242.236 185.2 239.775C184.366 236.268 183.911 232.549 183.311 228.997C182.49 224.134 181.31 218.952 181.475 214.008C181.497 213.363 180.497 213.365 180.475 214.008Z" fill="#462D4B"/>
|
||||
<path d="M183.612 243.629C182.484 244.294 181.63 245.31 180.803 246.305C180.05 247.209 179.136 248.783 177.954 249.164C177.343 249.361 177.604 250.327 178.22 250.129C179.284 249.785 180.031 248.796 180.721 247.971C181.744 246.747 182.718 245.317 184.117 244.493C184.672 244.166 184.169 243.301 183.612 243.629Z" fill="#462D4B"/>
|
||||
<path d="M183.035 242.28C180.132 243.55 177.245 244.826 174.557 246.519C174.013 246.862 174.515 247.727 175.062 247.382C177.75 245.69 180.636 244.413 183.54 243.143C184.129 242.885 183.62 242.024 183.035 242.28Z" fill="#462D4B"/>
|
||||
<path d="M171.536 142.342C171.824 149.278 175.87 157.802 182.516 161.414C189.162 165.027 187.862 160.403 185.695 157.081C183.528 153.757 182.949 151.443 185.116 150.435C187.285 149.422 189.74 154.191 192.052 154.335C194.364 154.48 194.075 152.167 192.775 149.856C191.475 147.545 190.174 146.388 191.475 144.366C192.775 142.343 192.052 138.153 196.097 135.263C200.142 132.372 204.911 130.928 205.056 129.628C198.988 122.403 175.002 121.825 171.536 142.342Z" fill="#462D4B"/>
|
||||
<path d="M212.761 251.092C212.184 252.153 211.846 254.03 217.338 253.74C222.827 253.452 239.731 253.019 252.014 253.452C264.295 253.885 280.189 252.73 281.343 251.862C282.5 250.995 284.234 240.448 285.533 233.079C286.834 225.712 288.857 215.308 289.002 213.285C289.147 211.263 288.279 208.517 283.799 208.517C279.322 208.517 256.637 208.805 252.736 208.805C248.835 208.805 244.356 208.373 243.488 212.707C242.622 217.041 240.31 244.349 239.876 247.094C239.442 249.406 240.022 250.128 236.842 249.984C233.665 249.84 214.352 250.083 212.761 251.092Z" fill="#769989"/>
|
||||
<path d="M292.385 340.628C292.142 346.193 291.897 350.388 292.325 351.366C295.408 352.714 303.69 354.063 313.709 354.641C323.727 355.219 331.432 355.025 328.735 350.018C326.039 345.008 311.99 343.438 308.522 339.392C302.358 340.355 305.425 347.898 301.187 346.549C296.95 345.202 298.549 339.665 292.385 340.628Z" fill="#462D4B"/>
|
||||
<path d="M249.094 350.388C248.296 354.869 247.71 360.154 248.585 360.63C251.437 362.416 257.429 366.59 267.253 368.636C277.077 370.682 280.059 370.736 278.128 365.386C276.197 360.034 266.21 355.679 263.374 351.167C257.136 351.212 260.008 358.098 256.016 356.141C252.021 354.184 253.344 351.013 249.094 350.388Z" fill="#462D4B"/>
|
||||
<path d="M266.898 228.264C262.281 228.572 259.77 236.162 264.778 236.355C269.787 236.549 272.676 227.878 266.898 228.264Z" fill="#A4CDBB"/>
|
||||
<path d="M248.535 209.435C246.329 210.431 245.618 212.687 245.075 214.881C244.247 218.23 243.578 221.544 243.693 225.011C243.848 229.665 243.494 233.941 242.602 238.529C242.249 240.35 241.799 242.191 241.613 244.039C241.36 246.568 241.448 249.116 241.082 251.636C241.409 251.68 241.737 251.725 242.064 251.769C242.064 251.64 242.064 251.512 242.064 251.383C242.064 250.738 241.064 250.738 241.064 251.383C241.064 251.512 241.064 251.64 241.064 251.769C241.064 252.317 241.963 252.472 242.046 251.902C242.549 248.441 242.41 244.966 243.042 241.51C243.712 237.846 244.512 234.224 244.809 230.503C245.142 226.33 244.459 222.409 245.32 218.237C245.871 215.566 246.27 211.55 249.041 210.299C249.627 210.034 249.118 209.171 248.535 209.435Z" fill="#462D4B"/>
|
||||
<path d="M272.253 253.647C277.066 255.439 280.838 257.343 281.893 262.846C282.98 268.511 282.339 273.591 281.296 279.182C281.178 279.812 282.142 280.081 282.26 279.448C282.804 276.532 283.472 273.69 283.627 270.718C283.78 267.782 283.252 264.641 282.7 261.761C281.679 256.438 277.097 254.387 272.518 252.682C271.914 252.457 271.655 253.423 272.253 253.647Z" fill="#462D4B"/>
|
||||
<path d="M217.639 268.05C222.215 268.997 226.863 269.067 231.519 269.103C236.835 269.143 242.124 269.488 247.443 269.426C249.144 269.406 250.851 269.523 252.544 269.342C253.184 269.275 257.683 268.634 256.706 270.373C255.451 272.606 257.069 273.025 259.054 272.462C261.439 271.784 260.408 274.569 260.19 275.333C259.919 276.286 259.765 277.255 259.608 278.233C259.243 280.518 259.113 282.839 259.013 285.147C258.773 290.671 258.62 296.129 258.028 301.634C257.435 307.141 256.725 312.635 256.02 318.128C255.46 322.492 253.346 326.876 253.771 331.317C253.832 331.953 254.832 331.959 254.771 331.317C254.527 328.763 255.229 326.333 255.901 323.894C256.518 321.657 256.849 319.458 257.144 317.159C257.891 311.343 258.621 305.523 259.235 299.691C259.846 293.882 259.785 288.069 260.171 282.249C260.345 279.617 260.781 277.087 261.441 274.544C261.652 273.731 261.866 272.312 261.01 271.755C260.675 271.536 260.298 271.285 259.868 271.317C259.581 271.339 257.094 271.82 257.315 271.311C257.647 270.549 258.312 269.903 257.807 269.04C256.842 267.393 253.254 268.275 251.804 268.417C246.657 268.922 241.25 268.379 236.095 268.177C230.006 267.939 223.914 268.329 217.904 267.084C217.275 266.956 217.008 267.92 217.639 268.05Z" fill="#462D4B"/>
|
||||
<path d="M285.605 267.151C287.937 267.33 290.269 267.345 292.605 267.269C294.091 267.22 295.419 267.704 295.533 269.374C295.592 270.244 295.518 271.115 295.605 271.984C296.155 277.48 296.741 282.875 296.827 288.412C296.915 294.046 296.388 299.623 295.974 305.234C295.564 310.801 295.572 316.408 295.771 321.984C295.794 322.627 296.794 322.63 296.771 321.984C296.304 308.904 298.253 295.945 297.654 282.874C297.515 279.843 297.247 276.839 296.852 273.831C296.59 271.834 296.816 269.627 296.274 267.692C295.973 266.617 294.696 266.415 293.769 266.295C291.112 265.95 288.292 266.357 285.605 266.15C284.962 266.101 284.967 267.102 285.605 267.151Z" fill="#462D4B"/>
|
||||
<path d="M198.274 258.25C202.339 256.061 206.851 254.949 211.024 253C211.608 252.728 211.1 251.865 210.519 252.137C206.344 254.086 201.837 255.196 197.769 257.387C197.202 257.692 197.707 258.555 198.274 258.25Z" fill="#462D4B"/>
|
||||
<path d="M203.793 242.715C200.5 245.272 199.379 250.996 201.84 254.487C202.208 255.01 203.076 254.511 202.703 253.983C200.48 250.829 201.551 245.712 204.5 243.421C205.009 243.026 204.296 242.324 203.793 242.715Z" fill="#462D4B"/>
|
||||
<path d="M124.821 191.035C126.41 188.579 129.155 182.655 129.444 175.864C124.675 167.628 136.09 140.608 146.06 141.188C156.03 141.765 157.041 154.624 160.364 157.802C163.687 160.982 164.555 158.814 162.821 162.716C161.087 166.616 163.687 169.65 161.664 174.997C159.643 180.342 148.227 176.874 145.192 183.81C142.159 190.746 142.881 193.345 142.881 193.345C144.903 195.658 146.686 198.789 146.686 198.789C142.591 201.872 130.455 199.992 124.821 191.035Z" fill="#FFD1BF"/>
|
||||
<path d="M180.111 291.644C182.231 303.203 188.971 344.623 189.358 350.787C189.743 356.952 187.43 355.218 186.083 350.016C184.736 344.814 172.212 292.222 172.212 292.222L180.111 291.644Z" fill="#A4CDBB"/>
|
||||
<path d="M151.504 291.644C153.621 303.203 160.361 344.623 160.748 350.787C161.135 356.952 158.821 355.218 157.473 350.016C156.126 344.814 143.604 292.222 143.604 292.222L151.504 291.644Z" fill="#A4CDBB"/>
|
||||
<path d="M128.289 278.738C135.609 278.931 172.021 278.931 172.405 281.627C172.79 284.324 175.103 291.068 171.25 292.031C167.396 292.993 155.646 292.03 146.205 292.993C136.765 293.958 118.754 291.357 118.754 291.357L128.289 278.738Z" fill="#587869"/>
|
||||
<path d="M80.2216 255.044C79.6446 246.952 78.8727 239.243 79.0667 233.08C79.2577 226.916 83.3047 218.825 96.4057 218.825C109.505 218.825 122.606 218.44 123.955 221.329C125.302 224.219 133.587 263.327 132.816 269.107C132.044 274.886 84.6546 279.125 80.2216 255.044Z" fill="#769989"/>
|
||||
<path d="M144.471 329.307C141.87 334.942 135.658 349.824 135.513 351.27C135.368 352.714 150.25 364.851 155.884 361.239C156.608 359.939 163.11 363.553 165.709 360.373C156.896 354.016 154.295 352.715 154.295 349.68C154.295 346.647 164.555 336.099 167.877 330.176C165.999 325.407 144.471 329.307 144.471 329.307Z" fill="#FFD1BF"/>
|
||||
<path d="M135.609 350.403C134.26 352.33 132.623 354.642 136.09 356.569C139.558 358.496 149.188 363.503 153.043 365.334C156.897 367.164 164.216 369.091 156.897 361.193C165.083 365.142 168.358 364.37 167.973 363.6C167.588 362.829 165.083 359.746 165.083 359.842C161.037 361.384 150.128 353.171 145.699 349.029C145.023 349.222 145.24 350.883 145.24 350.883C149.767 355.893 153.332 358.877 154.584 360.709C155.836 362.541 150.827 363.503 135.609 350.403Z" fill="#009C98"/>
|
||||
<path d="M121.642 259.521C126.989 259.376 169.178 260.823 179.147 261.544C189.117 262.267 193.741 269.346 194.463 278.015C195.185 286.685 190.994 296.798 181.603 310.813C172.211 324.829 167.298 331.62 167.298 331.62C162.53 331.908 159.353 329.163 159.353 329.163C157.909 331.476 156.03 333.064 156.03 333.064C149.238 335.377 143.749 330.175 143.749 330.175C146.638 319.77 151.263 305.468 153.429 299.688C155.596 293.909 157.329 285.673 157.329 285.673C149.673 285.384 128.289 285.816 128.289 285.816C128.289 285.816 133.344 267.034 121.642 259.521Z" fill="#08605E"/>
|
||||
<path d="M174.812 266.312C177.414 268.623 180.11 274.018 182.326 278.16C184.542 282.302 187.718 286.154 188.874 285.769C190.032 285.384 189.166 278.642 188.973 277.486C190.322 272.091 184.158 260.049 179.63 257.065C177.221 257.161 175.775 261.4 174.812 266.312Z" fill="#FFD1BF"/>
|
||||
<path d="M101.415 254.465C102.569 244.64 110.663 204.569 125.302 190.314C132.817 196.67 141.293 199.175 146.687 198.79C154.392 214.779 155.549 233.274 160.171 239.438C164.795 245.603 180.786 256.199 181.362 256.777C180.399 258.704 179.243 259.668 179.243 259.668C180.592 263.52 176.162 266.795 175.006 267.373C165.373 264.29 143.411 253.693 143.411 253.693C142.833 256.969 142.064 260.05 142.064 260.05C137.825 260.05 109.31 260.053 104.881 258.703C100.835 257.932 101.415 254.465 101.415 254.465Z" fill="#009C98"/>
|
||||
<path d="M88.0237 291.644C85.9057 303.203 79.1647 344.623 78.7777 350.787C78.3917 356.952 80.7047 355.218 82.0507 350.016C83.4007 344.814 95.9227 292.222 95.9227 292.222L88.0237 291.644Z" fill="#A4CDBB"/>
|
||||
<path d="M116.632 291.644C114.513 303.203 107.772 344.623 107.386 350.787C107 356.952 109.313 355.218 110.661 350.016C112.008 344.814 124.531 292.222 124.531 292.222L116.632 291.644Z" fill="#A4CDBB"/>
|
||||
<path d="M80.3179 253.502C80.8959 268.719 79.7889 271.465 81.3309 279.75C82.8719 288.034 84.2679 292.766 93.7569 292.897C104.159 293.042 116.538 292.996 121.547 292.801C126.556 292.609 127.903 293.765 128.482 286.636C129.06 279.508 128.643 267.058 123.666 261.4C120.488 257.787 111.048 254.079 98.9119 255.042C86.7739 256.007 80.3179 253.502 80.3179 253.502Z" fill="#769989"/>
|
||||
<path d="M115.702 259.826C123.717 266.753 121.059 279.838 120.949 289.14C120.941 289.786 121.941 289.785 121.949 289.14C122.062 279.556 124.683 266.269 116.409 259.119C115.923 258.699 115.213 259.404 115.702 259.826Z" fill="#462D4B"/>
|
||||
<path d="M92.1666 254.964C97.9956 255.226 103.833 255.352 109.607 256.262C114.524 257.037 119.678 258.343 123.34 261.904C130.204 268.576 128.427 280.661 127.693 289.141C128.026 289.141 128.36 289.141 128.693 289.141C128.693 289.013 128.693 288.884 128.693 288.756C128.693 288.111 127.693 288.111 127.693 288.756C127.693 288.884 127.693 289.013 127.693 289.141C127.693 289.795 128.638 289.774 128.693 289.141C129.483 280.015 130.962 268.501 124.047 261.197C120.644 257.601 115.463 256.352 110.79 255.458C104.667 254.286 98.3726 254.244 92.1656 253.965C91.5206 253.934 91.5236 254.934 92.1666 254.964Z" fill="#462D4B"/>
|
||||
<path d="M89.5656 248.745C88.4076 242.484 87.2176 234.528 90.7536 228.829C92.2316 226.447 94.5446 224.633 96.9256 223.229C100.193 221.303 103.51 221.224 107.193 221.25C107.838 221.255 107.838 220.255 107.193 220.25C103.5 220.224 100.392 220.35 97.0506 222.023C94.3806 223.36 92.0956 225.372 90.2966 227.736C85.9176 233.491 87.3866 242.434 88.6026 249.01C88.7196 249.644 89.6826 249.375 89.5656 248.745Z" fill="#462D4B"/>
|
||||
<path d="M148.882 212.419C148.903 216.566 149.321 220.85 148.613 224.959C148.029 228.349 146.133 231.39 145.578 234.826C145.476 235.457 146.439 235.727 146.542 235.092C147.141 231.382 149.085 228.084 149.72 224.4C150.39 220.512 149.903 216.343 149.883 212.42C149.879 211.774 148.879 211.773 148.882 212.419Z" fill="#462D4B"/>
|
||||
<path d="M136.619 216.307C138.531 222.245 141.191 227.974 144.111 233.477C146.607 238.181 148.254 243.801 153.144 246.529C155.701 247.955 158.418 249.14 161.002 250.539C163.977 252.147 166.876 253.913 169.884 255.459C172.169 256.632 174.538 257.574 176.771 258.859C178.459 259.831 179.706 261.213 178.573 263.222C177.817 264.563 176.361 265.591 175.182 266.536C174.679 266.939 175.391 267.642 175.889 267.243C178.554 265.108 182.346 261.475 178.281 258.656C176.091 257.138 173.632 256.081 171.214 254.987C167.864 253.471 164.757 251.393 161.507 249.674C158.686 248.183 155.76 246.842 152.979 245.291C149.646 243.431 148.435 239.638 146.782 236.44C143.351 229.799 139.885 223.181 137.584 216.041C137.386 215.43 136.42 215.692 136.619 216.307Z" fill="#462D4B"/>
|
||||
<path d="M115.864 220.184C118.535 226.439 122.187 232.142 126.302 237.538C129.924 242.288 133.799 247.3 138.588 250.934C149.152 258.952 162.774 261.829 174.418 267.901C174.989 268.199 175.495 267.336 174.923 267.038C163.916 261.298 151.352 258.406 141.002 251.461C135.654 247.873 131.571 242.648 127.631 237.635C123.292 232.113 119.49 226.15 116.728 219.681C116.475 219.089 115.613 219.598 115.864 220.184Z" fill="#462D4B"/>
|
||||
<path d="M157.053 167.966C158.622 168.326 161.236 169.256 162.451 167.692C162.842 167.19 162.139 166.476 161.744 166.985C160.816 168.178 158.521 167.278 157.318 167.001C156.691 166.856 156.425 167.821 157.053 167.966Z" fill="#462D4B"/>
|
||||
<path d="M147.842 152.589C148.139 151.275 149.122 149.954 150.527 149.759C151.164 149.671 150.893 148.708 150.262 148.795C148.538 149.033 147.243 150.708 146.878 152.323C146.736 152.952 147.7 153.218 147.842 152.589Z" fill="#462D4B"/>
|
||||
<path d="M154.548 158.961C154.123 158.688 153.644 158.205 154.072 157.723C153.87 157.749 153.668 157.775 153.466 157.801C153.985 158.141 154.309 158.798 154.103 159.405C154.264 159.282 154.424 159.16 154.585 159.038C154.041 159.009 154.216 157.725 154.219 157.37C154.008 157.531 153.797 157.691 153.586 157.852C154.015 157.968 154.482 158.676 154.087 159.04C153.611 159.478 154.32 160.183 154.794 159.747C155.759 158.858 154.991 157.194 153.852 156.888C153.537 156.803 153.221 157.044 153.219 157.37C153.212 158.432 153.171 159.961 154.585 160.038C154.815 160.051 154.998 159.874 155.067 159.671C155.42 158.632 154.846 157.512 153.971 156.939C153.792 156.822 153.508 156.857 153.365 157.017C152.473 158.022 153.031 159.174 154.043 159.826C154.587 160.174 155.088 159.308 154.548 158.961Z" fill="#462D4B"/>
|
||||
<path d="M148.227 141.188C147.072 144.655 140.858 148.123 137.68 150.291C134.5 152.457 134.791 154.336 137.101 159.537C139.412 164.738 140.858 168.784 140.425 169.362C139.991 169.939 136.812 172.107 134.211 168.784C131.611 165.461 127.277 170.228 129.733 173.264C132.188 176.297 133.922 175.575 133.922 175.575C128.287 177.888 123.086 176.587 119.473 169.075C113.116 178.32 107.914 174.275 105.748 168.062C103.579 161.849 109.648 157.803 116.584 161.705C114.127 147.399 129.011 135.119 148.227 141.188Z" fill="#2E303D"/>
|
||||
<path d="M134.355 168.676C132.199 165.754 128.376 168.221 128.615 171.411C128.751 173.224 130.44 174.72 131.986 175.408C133.668 176.157 135.557 176 137.21 175.283C137.8 175.027 137.291 174.166 136.705 174.42C134.519 175.367 132.082 174.865 130.481 173.101C129.498 172.017 129.356 170.648 130.118 169.423C130.925 168.127 132.567 167.927 133.492 169.18C133.87 169.694 134.739 169.196 134.355 168.676Z" fill="#462D4B"/>
|
||||
<path d="M115.91 160.728C116.931 165.443 118.632 169.751 122.01 173.28C122.457 173.747 123.163 173.039 122.717 172.573C119.455 169.167 117.858 165.005 116.874 160.463C116.738 159.832 115.774 160.1 115.91 160.728Z" fill="#462D4B"/>
|
||||
<path d="M178.859 261.508C180.579 264.475 182.307 267.439 184.358 270.191C186.366 272.886 188.39 275.498 189.069 278.871C189.196 279.503 190.16 279.235 190.033 278.605C189.445 275.678 187.888 273.272 186.135 270.901C183.783 267.719 181.707 264.426 179.722 261.003C179.399 260.446 178.535 260.949 178.859 261.508Z" fill="#462D4B"/>
|
||||
<path d="M181.988 273.524C182.862 276.367 183.963 279.134 184.589 282.048C184.724 282.679 185.688 282.411 185.553 281.782C184.928 278.868 183.826 276.099 182.952 273.258C182.764 272.644 181.798 272.906 181.988 273.524Z" fill="#462D4B"/>
|
||||
<path d="M185.021 275.546C185.646 277.52 186.481 279.367 186.64 281.45C186.736 282.708 186.749 284.076 187.384 285.201C187.701 285.763 188.565 285.259 188.247 284.697C187.501 283.374 187.691 281.575 187.512 280.105C187.311 278.46 186.484 276.852 185.985 275.28C185.791 274.669 184.826 274.93 185.021 275.546Z" fill="#462D4B"/>
|
||||
<path d="M179.398 260.242C180.459 259.485 181.283 258.197 181.507 256.909C181.617 256.278 180.653 256.009 180.543 256.643C180.365 257.665 179.746 258.77 178.893 259.378C178.373 259.75 178.872 260.618 179.398 260.242Z" fill="#462D4B"/>
|
||||
<path d="M183.127 280.472C183.095 284.962 181.111 288.964 179.084 292.867C177.249 296.398 175.609 300.019 173.516 303.409C168.918 310.852 163.624 317.863 159.648 325.69C157.689 329.546 155.319 333.065 152.882 336.631C150.457 340.181 148.34 343.966 145.839 347.451C144.421 349.428 144.223 351.001 145.943 352.789C146.988 353.876 148.352 354.676 149.473 355.681C151.348 357.359 153.077 359.192 154.953 360.869C155.432 361.298 156.142 360.593 155.66 360.162C153.101 357.874 150.8 355.298 148.046 353.236C147.261 352.649 146.549 352.06 145.947 351.281C144.979 350.027 146.426 348.342 147.092 347.413C148.216 345.846 149.13 344.12 150.167 342.493C152.313 339.127 154.634 335.873 156.853 332.554C159.242 328.981 160.924 325.037 163.197 321.399C165.313 318.012 167.305 314.551 169.487 311.207C171.722 307.781 174.141 304.505 176.136 300.926C178.053 297.486 179.778 293.849 181.493 290.301C182.992 287.201 184.103 283.942 184.127 280.472C184.132 279.827 183.132 279.828 183.127 280.472Z" fill="#462D4B"/>
|
||||
<path d="M45.1118 294.488C47.4078 293.849 54.6768 285.687 60.9268 282.244C67.1758 278.799 69.7288 278.544 70.3658 278.799C71.0038 279.055 69.4718 281.35 66.2838 286.07C63.0958 290.788 57.7388 294.871 45.1118 294.488Z" fill="#009C98"/>
|
||||
<path d="M41.2871 290.408C43.7091 286.963 50.2141 268.086 55.9541 261.198C61.6921 254.31 64.6261 253.163 64.3711 254.438C64.1181 255.713 64.7541 267.446 57.4831 276.248C50.2131 285.048 41.2871 290.408 41.2871 290.408Z" fill="#009C98"/>
|
||||
<path d="M41.6759 278.27C43.2289 273.942 41.9999 265.516 41.9249 256.076C41.8509 246.637 45.8529 237.988 49.5699 234.819C50.4699 233.547 50.2089 234.693 50.0489 240.56C49.8889 246.427 50.7119 258.931 48.7649 264.789C46.8209 270.645 44.4899 276.628 41.6759 278.27Z" fill="#009C98"/>
|
||||
<path d="M38.4791 281.861C37.4591 278.798 34.016 278.418 30.954 264.641C27.894 250.867 28.9141 234.413 30.0621 231.606C31.2101 228.8 31.975 235.176 33.76 241.172C35.546 247.167 38.0971 257.243 38.3531 263.621C38.6071 269.999 38.4791 281.861 38.4791 281.861Z" fill="#009C98"/>
|
||||
<path d="M35.7987 288.493C31.0807 285.942 22.0247 280.585 15.5207 270.892C9.0157 261.198 10.1647 258.902 8.7587 256.86C7.3567 254.82 10.4187 255.84 13.8617 258.265C17.3067 260.688 23.8107 265.535 25.8517 271.657C27.8927 277.779 33.8867 284.795 35.7987 288.493Z" fill="#009C98"/>
|
||||
<path d="M31.2099 292.831C24.1929 292.447 15.5219 291.044 8.37789 285.56C1.23389 280.075 -1.57011 274.846 0.854888 274.973C3.27789 275.101 18.4539 278.162 24.9599 285.942C31.4639 293.721 31.2099 292.831 31.2099 292.831Z" fill="#009C98"/>
|
||||
<path d="M33.1487 258.652C33.8227 262.009 34.2097 265.457 35.2107 268.738C36.2937 272.291 37.0977 275.866 37.6517 279.538C38.2477 283.483 38.4957 287.472 38.5127 291.458C38.5207 293.289 38.4017 295.083 38.1947 296.899C37.9677 298.887 38.1457 300.81 37.6137 302.773C37.4447 303.396 38.4087 303.661 38.5777 303.039C39.3987 300.009 39.3937 296.468 39.4897 293.339C39.6137 289.308 39.3607 285.272 38.8857 281.27C38.4437 277.538 37.7147 273.878 36.7007 270.26C35.5997 266.328 34.9167 262.386 34.1127 258.387C33.9857 257.754 33.0217 258.022 33.1487 258.652Z" fill="#462D4B"/>
|
||||
<path d="M45.8871 255.203C45.8931 260.908 45.9651 266.621 44.0571 272.075C42.3711 276.894 39.1471 281.451 38.4901 286.579C38.4081 287.218 39.4091 287.21 39.4901 286.579C40.1991 281.047 43.8781 275.938 45.5941 270.641C47.1781 265.754 46.8931 260.263 46.8871 255.203C46.8871 254.558 45.8871 254.558 45.8871 255.203Z" fill="#462D4B"/>
|
||||
<path d="M39.8537 294.493C40.4207 291.987 42.2727 290.167 43.7937 288.195C45.3727 286.149 46.8037 284.021 48.2117 281.855C51.2347 277.201 53.6947 272.199 55.7977 267.07C56.0427 266.473 55.0747 266.216 54.8337 266.804C52.6407 272.152 49.9987 277.27 46.8487 282.119C45.3227 284.467 43.7197 286.731 41.9517 288.906C40.6377 290.523 39.3577 292.158 38.8897 294.227C38.7477 294.855 39.7107 295.122 39.8537 294.493Z" fill="#462D4B"/>
|
||||
<path d="M39.114 298.109C42.02 295.869 46.529 295.272 49.982 294.068C53.343 292.895 56.589 291.493 59.368 289.228C59.868 288.821 59.156 288.118 58.661 288.521C55.595 291.019 51.908 292.354 48.21 293.625C45.051 294.712 41.298 295.173 38.608 297.246C38.106 297.633 38.604 298.503 39.114 298.109Z" fill="#462D4B"/>
|
||||
<path d="M19.681 269.613C22.424 273.501 24.95 277.263 28.305 280.684C30.196 282.612 31.879 284.778 33.649 286.817C35.467 288.913 37.367 290.79 38.558 293.337C38.831 293.921 39.693 293.413 39.421 292.833C37.494 288.714 33.76 285.404 30.809 282.006C29.069 280.001 27.199 278.121 25.495 276.085C23.647 273.876 22.197 271.452 20.544 269.109C20.176 268.587 19.308 269.086 19.681 269.613Z" fill="#462D4B"/>
|
||||
<path d="M17.4629 284.382C20.5659 286.898 24.0209 288.878 27.3919 291.001C29.3799 292.253 31.2929 293.623 33.1579 295.052C34.7339 296.259 36.5259 297.05 38.0989 298.238C38.6139 298.627 39.1119 297.759 38.6039 297.375C37.2769 296.373 35.7289 295.765 34.4039 294.76C32.7299 293.489 31.0519 292.242 29.3139 291.061C25.6209 288.551 21.6509 286.498 18.1699 283.676C17.6739 283.272 16.9619 283.975 17.4629 284.382Z" fill="#462D4B"/>
|
||||
<path d="M19.73 300.227C13.862 300.865 17.434 305.967 18.963 313.493C20.495 321.017 21.516 338.62 29.551 341.172C37.5859 343.722 44.984 344.36 50.9799 342.192C56.9739 340.022 58.5029 334.412 59.0149 328.161C59.5239 321.912 60.799 309.157 61.183 305.076C61.566 300.995 63.4789 299.847 56.2089 299.59C48.9379 299.335 24.057 299.758 19.73 300.227Z" fill="#FFD1BF"/>
|
||||
<path d="M21.0001 313.083C27.3601 314.169 33.6901 314.614 40.1411 314.436C43.7561 314.336 47.3641 314.138 50.9811 314.121C52.6371 314.113 55.4411 314.517 56.9721 313.671C57.5361 313.358 57.0321 312.495 56.4671 312.808C55.8321 313.159 54.3881 313.008 53.6701 313.068C52.1241 313.197 50.5481 313.119 48.9971 313.14C46.0441 313.181 43.0931 313.341 40.1411 313.437C33.7851 313.645 27.5351 313.19 21.2661 312.12C20.6351 312.01 20.3651 312.974 21.0001 313.083Z" fill="#462D4B"/>
|
||||
<path d="M414.827 144.222C411.266 142.048 407.51 138.486 404.345 138.685C401.181 138.883 398.214 137.698 395.247 134.335C392.28 130.973 393.072 130.379 394.457 130.379C395.841 130.379 398.412 134.333 400.191 133.939C401.971 133.543 399.773 129.827 396.433 129.389C392.591 128.889 390.923 127.565 390.981 126.876C391.037 126.205 393.339 125.436 396.964 126.415C403.122 126.013 406.321 128.599 410.277 130.576C414.232 132.555 417.991 132.751 419.968 133.542C421.946 134.336 414.827 144.222 414.827 144.222Z" fill="#FFD1BF"/>
|
||||
<path d="M474.883 326.518L463.411 329.089C463.273 331.037 463.223 332.882 462.798 334.565C459.311 337.598 448.542 339.687 446.452 343.573C444.253 347.659 450.538 347.818 458.711 347.344C466.883 346.873 472.357 345.932 474.872 344.831C475.338 344.242 474.883 326.518 474.883 326.518Z" fill="#462D4B"/>
|
||||
<path d="M510.065 330.777C510.065 331.816 511.106 337.153 511.106 337.153C506.738 341.936 497.386 350.339 499.606 354.153C501.824 357.966 519.509 348.202 522.439 346.319C524.379 345.072 523.098 342.285 524.277 330.43C524.703 326.153 510.065 330.777 510.065 330.777Z" fill="#462D4B"/>
|
||||
<path d="M475.872 188.958C472.906 196.869 468.357 213.483 463.019 227.721C457.677 241.96 457.082 251.846 457.479 265.492C457.875 279.141 456.075 315.154 457.085 324.231C457.61 328.962 456.432 332.082 459.969 332.082C460.76 332.082 474.29 330.957 477.455 331.549C480.619 332.142 480.619 329.571 480.619 324.232C480.619 318.892 481.016 288.041 480.224 278.547C479.432 269.054 478.247 260.747 482.399 249.87C486.551 238.995 496.637 219.416 496.637 219.416C498.219 224.359 500.8 257.249 501.129 266.744C501.456 276.241 504.157 327.206 504.384 330.162C504.609 333.122 505.121 334.67 505.926 334.807C506.732 334.942 522.931 334.104 524.902 333.955C526.874 333.805 526.786 332.62 526.68 328.662C526.574 324.701 527.426 273.463 527.1 261.389C526.773 249.316 526.499 199.639 526.106 189.554C515.624 188.76 484.178 183.223 475.872 188.958Z" fill="#08605E"/>
|
||||
<path d="M536.388 192.715C536.783 197.066 536.388 202.999 534.609 205.966C532.83 208.933 531.445 214.273 533.028 214.073C534.609 213.877 536.388 205.57 537.97 207.152C539.553 208.734 537.18 220.403 539.751 221.59C542.321 222.778 542.717 219.414 542.717 219.414C546.078 219.217 545.684 217.635 545.684 217.635C549.046 216.446 549.046 213.68 548.848 209.13C548.65 204.582 548.848 200.03 550.035 195.088C551.221 190.144 538.367 189.945 536.388 192.715Z" fill="#FFD1BF"/>
|
||||
<path d="M475.673 54.8727C471.521 59.4207 471.323 63.3767 472.707 67.5297C474.092 71.6827 474.685 73.8557 472.509 76.6257C470.334 79.3957 469.543 80.5827 472.707 81.7697C475.871 82.9557 474.883 82.9537 475.673 84.5377C476.465 86.1197 478.048 84.7367 480.026 82.9567C480.026 86.9127 477.654 86.9137 478.245 88.2977C478.84 89.6807 480.617 92.6477 482.99 93.2407C485.364 93.8327 488.331 92.4477 489.122 91.4597C489.122 98.7767 488.132 100.953 487.342 101.744C493.867 105.502 504.35 100.757 510.482 95.4157C504.944 91.8557 504.154 87.3077 504.351 77.4187C504.547 67.5297 501.385 38.4597 475.673 54.8727Z" fill="#FFD1BF"/>
|
||||
<path d="M480.421 48.9397C474.311 51.2997 471.522 55.0707 474.687 56.2567C477.85 57.4437 485.561 55.0677 485.561 57.6387C485.561 60.2097 484.376 63.1797 486.749 64.5627C489.121 65.9467 491.495 64.7607 491.296 67.1327C491.1 69.5077 490.505 73.4617 492.285 74.0547C494.064 74.6507 495.055 73.8577 495.252 72.6707C495.449 71.4827 495.848 68.9137 499.01 69.5077C502.174 70.0987 501.581 73.8597 499.208 75.8347C496.833 77.8137 498.021 77.8137 501.186 80.3847C504.35 82.9547 504.747 83.1527 507.91 76.2317C511.074 69.3097 513.251 60.0147 508.306 53.8847C503.361 47.7517 495.252 43.2057 480.421 48.9397Z" fill="#462D4B"/>
|
||||
<path d="M488.332 98.5776C491.495 100.556 494.462 102.138 500.987 98.5776C507.513 95.0186 505.143 92.8446 509.493 94.4256C513.845 96.0086 519.774 95.4146 525.115 97.1956C530.457 98.9746 537.971 109.06 541.729 124.091C545.486 139.122 550.429 144.659 552.211 155.142C553.99 165.622 555.374 186.981 552.012 194.695C550.827 196.279 545.882 192.717 539.949 193.707C534.014 194.695 536.19 190.741 535.399 186.191C534.609 181.642 534.805 169.578 535.003 165.623C535.202 161.668 535.002 159.099 531.84 153.56C531.049 164.436 534.213 181.841 525.708 184.412C526.499 188.367 526.303 190.541 525.708 190.541C525.115 190.541 512.061 191.333 501.976 189.949C491.892 188.564 479.235 187.972 475.872 188.96C475.081 188.763 476.466 184.807 476.466 184.807C473.302 184.016 471.324 182.436 472.315 174.919C473.302 167.404 473.103 155.341 472.51 153.362C460.447 159.096 460.051 156.922 447.395 156.723C434.738 156.525 422.082 149.799 413.972 144.263C413.179 140.505 415.753 133.783 417.73 132.992C419.706 132.2 443.636 138.331 451.35 135.76C459.062 133.19 464.204 121.125 468.357 114.601C472.51 108.074 478.642 103.329 484.772 102.339C486.551 101.545 488.332 98.5776 488.332 98.5776Z" fill="#A4CDBB"/>
|
||||
<path d="M474.195 66.5787C475.169 66.1257 477.493 65.6467 478.256 66.6947C478.632 67.2107 479.5 66.7117 479.119 66.1897C477.965 64.6047 475.236 64.9957 473.69 65.7157C473.106 65.9867 473.615 66.8487 474.195 66.5787Z" fill="#462D4B"/>
|
||||
<path d="M478.004 73.5037C477.839 73.3377 477.696 73.1676 477.579 72.9636C477.558 72.9256 477.519 72.8377 477.544 72.7877C477.482 72.9157 477.166 72.8086 477.321 72.8946C477.625 73.0656 477.811 73.5226 477.881 73.8446C477.931 74.0776 477.684 73.9197 478.07 73.9727C478.18 73.9877 478.168 74.0547 478.102 73.9557C478.045 73.8707 478.004 73.7757 477.968 73.6817C477.83 73.3237 477.716 72.9107 477.705 72.5247C477.494 72.6857 477.283 72.8456 477.072 73.0066C477.411 73.1106 477.764 73.3367 477.613 73.7257C477.38 74.3277 478.346 74.5856 478.578 73.9916C478.935 73.0726 478.166 72.2957 477.338 72.0427C477.032 71.9487 476.696 72.2047 476.705 72.5247C476.723 73.2167 476.93 74.2967 477.489 74.7637C477.843 75.0587 478.295 74.9956 478.597 74.6576C478.895 74.3246 478.917 73.9197 478.826 73.4997C478.682 72.8337 477.994 71.7306 477.179 71.9056C476.735 72.0006 476.531 72.4716 476.536 72.8856C476.543 73.3996 476.956 73.8687 477.296 74.2127C477.751 74.6697 478.458 73.9627 478.004 73.5037Z" fill="#462D4B"/>
|
||||
<path d="M487.01 103.411C489.037 103.715 490.724 105.136 492.862 105.393C495.43 105.703 497.969 105.304 500.469 104.701C504.732 103.671 509.501 100.965 512.415 97.6466C512.839 97.1646 512.135 96.4546 511.708 96.9396C509.062 99.9506 504.773 102.332 501.009 103.513C498.672 104.246 496.151 104.607 493.707 104.495C491.297 104.385 489.547 102.787 487.276 102.447C486.645 102.353 486.374 103.316 487.01 103.411Z" fill="#462D4B"/>
|
||||
<path d="M470.032 130.667C469.718 140.205 472.675 149.487 472.256 158.998C472.228 159.643 473.228 159.64 473.256 158.998C473.675 149.483 470.718 140.206 471.032 130.667C471.053 130.022 470.053 130.024 470.032 130.667Z" fill="#462D4B"/>
|
||||
<path d="M522.457 137.149C523.336 138.388 523.784 139.826 524.478 141.167C525.233 142.625 526.11 144.022 526.909 145.456C528.774 148.804 530.924 151.996 532.346 155.571C532.581 156.163 533.549 155.905 533.311 155.305C531.962 151.914 530.004 148.86 528.194 145.707C527.372 144.275 526.559 142.837 525.746 141.401C524.865 139.844 524.36 138.109 523.322 136.645C522.952 136.123 522.083 136.621 522.457 137.149Z" fill="#462D4B"/>
|
||||
<path d="M537.409 190.775C539.576 190.277 541.752 190.462 543.952 190.495C546.362 190.53 548.583 191.727 550.939 192.11C551.57 192.213 551.84 191.249 551.205 191.145C549.042 190.795 546.969 189.664 544.777 189.541C542.239 189.399 539.637 189.238 537.143 189.811C536.514 189.955 536.781 190.919 537.409 190.775Z" fill="#462D4B"/>
|
||||
<path d="M478.081 185.138C485.326 182.449 492.297 185.007 499.635 185.616C503.378 185.926 507.141 185.931 510.881 186.277C514.261 186.588 517.558 187.101 520.947 186.623C521.584 186.533 521.311 185.569 520.681 185.658C516.786 186.208 512.91 185.394 509.027 185.129C505.277 184.873 501.52 184.81 497.777 184.45C490.851 183.787 484.673 181.629 477.815 184.174C477.215 184.396 477.475 185.363 478.081 185.138Z" fill="#462D4B"/>
|
||||
<path d="M422.565 133.726C419.604 137.077 418.124 140.916 417.097 145.218C416.948 145.845 417.912 146.111 418.062 145.484C419.044 141.366 420.432 137.647 423.272 134.433C423.698 133.952 422.993 133.242 422.565 133.726Z" fill="#462D4B"/>
|
||||
<path d="M542.711 210.317C542.688 212.313 542.491 214.256 542.201 216.23C541.928 218.095 541.884 219.923 540.701 221.486C540.311 222 541.18 222.498 541.564 221.99C542.545 220.695 542.841 219.181 543.034 217.591C543.327 215.157 543.681 212.778 543.711 210.318C543.719 209.671 542.719 209.672 542.711 210.317Z" fill="#462D4B"/>
|
||||
<path d="M545.676 210.169C545.703 212.833 546.333 216.199 544.488 218.418C544.079 218.91 544.782 219.621 545.195 219.125C547.27 216.629 546.707 213.177 546.676 210.169C546.669 209.524 545.669 209.523 545.676 210.169Z" fill="#462D4B"/>
|
||||
<path d="M511.877 191.612C512.748 197.073 513.843 212.394 523.289 208.227C523.879 207.967 523.369 207.106 522.785 207.364C514.369 211.076 513.595 196.078 512.842 191.346C512.741 190.711 511.777 190.981 511.877 191.612Z" fill="#462D4B"/>
|
||||
<path d="M490.813 190.308C489.897 193.162 490.013 196.09 489.76 199.045C489.633 200.524 489.708 202.011 489.611 203.493C489.542 204.545 489.116 205.427 489.479 206.444C489.554 206.655 489.727 206.812 489.961 206.811C491.02 206.805 492.013 206.521 493.076 206.514C493.288 206.513 493.514 206.364 493.558 206.147C494.021 203.915 494.17 201.663 494.366 199.394C494.602 196.653 495.656 194.133 496.228 191.463C496.363 190.834 495.399 190.566 495.263 191.197C494.749 193.596 493.848 195.882 493.482 198.315C493.294 199.57 493.523 205.286 492.165 205.536C490.919 205.766 490.433 205.257 490.552 204.07C490.692 202.691 490.677 201.317 490.701 199.933C490.755 196.866 490.839 193.497 491.777 190.572C491.975 189.959 491.009 189.697 490.813 190.308Z" fill="#462D4B"/>
|
||||
<path d="M472.369 204.144C474.462 202.409 476.773 201.084 478.316 198.782C480.094 196.128 480.601 192.637 481.693 189.685C481.917 189.079 480.95 188.82 480.728 189.419C479.722 192.141 479.103 194.993 477.813 197.605C476.507 200.248 473.846 201.625 471.662 203.436C471.165 203.849 471.876 204.552 472.369 204.144Z" fill="#462D4B"/>
|
||||
<path d="M489.649 217.92C491.765 217.049 494.118 217.466 496.34 217.491C496.986 217.498 496.985 216.498 496.34 216.491C494.028 216.465 491.585 216.05 489.383 216.955C488.795 217.197 489.052 218.165 489.649 217.92Z" fill="#462D4B"/>
|
||||
<path d="M493.043 217.974C485.622 234.083 475.454 249.571 475.013 267.867C474.897 272.694 475.411 277.525 475.714 282.337C476.046 287.615 476.031 292.91 476.126 298.196C476.308 308.396 476.944 318.569 476.955 328.777C476.956 329.422 477.956 329.422 477.955 328.777C477.944 318.897 477.384 309.051 477.145 299.18C477.026 294.216 477.035 289.251 476.818 284.289C476.607 279.454 476.1 274.64 476.01 269.799C475.659 250.964 486.317 234.954 493.906 218.477C494.173 217.897 493.312 217.388 493.043 217.974Z" fill="#462D4B"/>
|
||||
</svg>
|
After Width: | Height: | Size: 55 KiB |
BIN
public/assets-login-landing/img/cta.png
Normal file
After Width: | Height: | Size: 3.6 MiB |
BIN
public/assets-login-landing/img/hero-bg.png
Normal file
After Width: | Height: | Size: 66 KiB |
106
public/assets-login-landing/img/hero-img.svg
Normal file
@ -0,0 +1,106 @@
|
||||
<svg width="649" height="624" viewBox="0 0 649 624" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M291.097 465.407C401.82 465.407 491.579 379.397 491.579 273.298C491.579 167.199 401.82 81.1896 291.097 81.1896C180.374 81.1896 90.6147 167.199 90.6147 273.298C90.6147 379.397 180.374 465.407 291.097 465.407Z" fill="#A6E2E2"/>
|
||||
<path d="M320.041 344.348C320.041 344.348 264.156 409.335 244.39 407.641C224.624 405.948 211.08 374.272 211.08 374.272C211.08 374.272 211.757 373.924 212.907 373.263C218.693 369.992 236.486 359.159 240.65 347.596C244.681 341.321 273.997 295.774 282.917 284.152C292.516 271.66 303.809 271.173 303.809 271.173C310.176 281.206 318.213 288.838 328.174 290.276C329.542 290.473 330.874 290.601 332.145 290.659C332.75 294.741 336.756 315.572 356.28 326.231C356.28 326.231 357.031 311.722 367.041 310.434C367.041 310.434 377.644 304.867 386.395 313.009C386.395 313.009 400.266 298.743 386.395 258.682L376.494 250.099L376.482 250.087L371.943 239.741C371.943 239.741 422.598 237.317 434.315 247.721C446.032 258.113 520.98 353.151 520.98 353.151L411.959 434.26C411.959 434.26 345.859 371.442 320.041 344.348Z" fill="white"/>
|
||||
<path d="M386.395 258.682C400.267 298.743 386.395 313.009 386.395 313.009C377.644 304.867 367.041 310.434 367.041 310.434L381.179 260.769L376.494 250.099L386.395 258.682Z" fill="#D7F2ED"/>
|
||||
<path d="M352.384 301.167L367.042 310.434C357.032 311.721 356.281 326.231 356.281 326.231C336.757 315.572 332.751 294.741 332.146 290.659C333.38 290.717 334.578 290.705 335.716 290.635L352.384 301.167Z" fill="#D7F2ED"/>
|
||||
<path d="M319.702 343.826C313.604 336.614 307.506 329.402 301.407 322.189C300.916 321.609 300.064 322.434 300.551 323.009C306.649 330.221 312.747 337.433 318.846 344.646C319.336 345.226 320.189 344.4 319.702 343.826Z" fill="#2E303D"/>
|
||||
<path d="M314.358 345.246C310.04 343.47 305.724 341.694 301.407 339.919C300.699 339.628 300.081 340.626 300.795 340.92C305.113 342.695 309.429 344.471 313.747 346.247C314.455 346.539 315.072 345.54 314.358 345.246Z" fill="#2E303D"/>
|
||||
<path d="M410.726 378.326C405.237 369.625 399.748 360.925 394.258 352.224C388.796 343.564 383.332 334.905 377.87 326.245C374.773 321.338 371.678 316.432 368.582 311.524C368.179 310.886 367.132 311.469 367.537 312.11C373.027 320.811 378.516 329.511 384.005 338.213C389.469 346.872 394.931 355.531 400.394 364.191C403.49 369.098 406.585 374.004 409.682 378.912C410.083 379.55 411.13 378.967 410.726 378.326Z" fill="#2E303D"/>
|
||||
<path d="M241.533 343.316C241.473 344.743 241.17 346.169 240.65 347.596C236.486 359.159 218.693 369.992 212.907 373.263L211.079 366.849C211.079 366.849 201.699 368.867 194.836 363.173C194.654 363.509 194.364 363.81 194.025 364.019C193.056 364.588 191.834 364.588 190.696 364.495C185.552 364.054 180.541 362.163 176.462 359.113C174.053 357.315 171.886 354.984 171.221 352.131C170.579 349.428 171.656 346.215 174.162 344.893C174.065 344.464 174.005 344.023 173.98 343.583C173.871 341.066 175.251 338.653 177.127 336.89C178.858 335.243 181.001 334.072 183.143 332.958C183.167 332.854 183.192 332.761 183.216 332.668C183.736 330.882 185.068 329.398 186.617 328.296C188.021 327.298 189.619 326.579 191.217 325.883C183.458 322.056 176.014 317.811 176.764 315.909C178.277 312.046 194.17 313.415 210.244 318.808C226.306 324.213 231.559 332.263 231.559 332.263C236.558 330.14 242.029 330.558 241.533 343.316Z" fill="#FFC6B0"/>
|
||||
<path d="M235.643 345.487C231.898 347.027 228.152 348.567 224.407 350.107C222.511 350.886 220.615 351.666 218.719 352.445C217.16 353.085 215.263 354.129 213.514 353.611C211.631 353.052 211.612 351.031 212.333 349.584C213.054 348.136 214.183 346.815 215.225 345.569C217.284 343.111 219.611 340.857 222.151 338.853C225.097 336.527 228.342 334.562 231.779 332.976C232.482 332.652 231.868 331.651 231.168 331.975C224.524 335.043 218.621 339.563 214.062 345.119C212.283 347.287 208.931 351.11 211.602 353.825C212.82 355.063 214.779 355.069 216.361 354.599C218.327 354.015 220.218 353.082 222.105 352.306C226.822 350.367 231.537 348.427 236.254 346.488C236.967 346.196 236.352 345.196 235.643 345.487Z" fill="#2E303D"/>
|
||||
<path d="M206.118 333.907C201.421 331.221 196.726 328.534 192.03 325.847C191.359 325.463 190.75 326.467 191.418 326.849L205.506 334.909C206.177 335.293 206.786 334.29 206.118 333.907Z" fill="#2E303D"/>
|
||||
<path d="M208.309 355.636C208.18 354.539 207.662 353.525 207.222 352.518C206.739 351.41 206.256 350.303 205.772 349.194C203.55 344.098 201.326 339.001 199.104 333.905C198.809 333.226 197.637 333.524 197.937 334.213C199.735 338.334 201.532 342.456 203.33 346.577C204.239 348.66 205.146 350.744 206.054 352.827C206.605 354.091 208.302 357.416 205.855 357.954C204.138 358.331 202.135 356.688 200.833 355.81C199.328 354.795 197.896 353.685 196.542 352.494C193.85 350.128 191.464 347.446 189.458 344.521C187.19 341.214 185.414 337.62 184.195 333.839C183.967 333.128 182.797 333.43 183.029 334.147C185.387 341.464 189.796 348.137 195.686 353.314C197.117 354.571 198.634 355.741 200.221 356.812C201.728 357.828 203.533 359.183 205.473 359.154C207.453 359.122 208.515 357.384 208.309 355.636Z" fill="#2E303D"/>
|
||||
<path d="M198.139 356.244C197.675 355.656 196.623 356.233 197.094 356.829C197.913 357.869 197.996 359.282 197.035 360.274C196.081 361.258 194.666 361.267 193.447 360.752C192.205 360.228 191.121 359.343 190.063 358.546C188.96 357.716 187.878 356.862 186.816 355.984C182.602 352.501 178.727 348.651 175.23 344.503C174.741 343.921 173.889 344.747 174.375 345.323C177.587 349.134 181.118 352.693 184.94 355.947C186.802 357.532 188.729 359.054 190.724 360.484C192.476 361.741 194.766 362.939 196.921 361.81C199.012 360.714 199.567 358.055 198.139 356.244Z" fill="#2E303D"/>
|
||||
<path d="M381.178 260.769L367.04 310.434L352.382 301.167C367.464 280.638 364.522 256.257 364.522 256.257C364.522 256.257 362.174 289.093 335.715 290.635C334.577 290.705 333.379 290.717 332.144 290.659C330.873 290.601 329.542 290.473 328.174 290.276C318.212 288.838 310.175 281.206 303.808 271.173C291.16 251.247 285.047 221.903 283.389 212.891C298.289 211.023 312.765 205.027 326.903 199.622C331.272 197.952 335.884 196.293 340.568 196.792C345.362 197.291 349.659 200.028 352.878 203.473C355.698 206.5 357.805 210.049 359.79 213.633C360.346 210.362 362.658 200.55 370.405 203.38C371.301 203.705 372.1 204.227 372.789 204.888C379.217 211.104 376.856 230.404 369.57 234.336L371.942 239.741L376.481 250.087L376.493 250.099L381.178 260.769Z" fill="#FFC6B0"/>
|
||||
<path d="M364.523 256.257C364.523 256.257 367.464 280.638 352.382 301.167L335.715 290.635C362.174 289.093 364.523 256.257 364.523 256.257Z" fill="#2E303D"/>
|
||||
<path d="M371.482 187.35C370.768 182.988 369.655 178.453 366.616 175.136C363.894 172.175 359.189 170.601 355.498 172.059C356.556 168.166 356.043 163.908 353.957 160.391C351.803 156.763 348.108 154.025 343.891 152.973C333.628 150.412 324.255 156.884 315.921 161.608C311.467 164.133 306.817 166.156 301.765 167.3C296.842 168.416 291.735 168.745 286.699 168.285C284.139 168.051 281.617 167.587 279.134 166.949C276.656 166.312 274.186 165.577 271.615 165.383C267.344 165.061 262.992 166.61 261.273 170.611C259.672 174.337 260.495 178.687 262.053 182.29C263.148 184.823 264.699 187.159 266.606 189.193C261.952 188.729 257.035 191.009 254.703 194.922C252.065 199.353 252.997 205.454 256.846 208.98C260.174 212.03 264.992 213.004 269.579 213.329C274.227 213.665 278.827 213.468 283.39 212.888C298.29 211.021 312.767 205.024 326.904 199.62C331.274 197.949 335.885 196.291 340.57 196.79C345.363 197.288 349.66 200.026 352.88 203.47C355.7 206.497 357.806 210.047 359.791 213.631C360.348 210.36 362.66 200.547 370.406 203.378C371.302 203.702 372.101 204.224 372.791 204.885C372.874 199.03 372.438 193.149 371.482 187.35ZM345.785 158.9C340 156.905 333.512 158.204 327.871 160.547C322.231 162.878 317.074 166.195 311.41 168.457C301.061 172.563 289.15 172.922 278.571 169.431C274.65 168.132 270.365 166.323 266.552 167.877C263.596 169.082 261.952 172.052 261.637 175.17C261.635 174.471 261.672 173.771 261.794 173.081C262.122 171.225 262.975 169.453 264.521 168.246C266.195 166.937 268.439 166.487 270.554 166.5C273.048 166.515 275.474 167.191 277.861 167.82C280.186 168.432 282.521 168.943 284.913 169.249C294.193 170.437 303.8 168.923 312.177 164.911C320.766 160.797 328.622 153.908 338.687 153.6C343.189 153.463 347.522 154.966 350.666 158.098C353.837 161.257 355.312 165.704 354.698 170.046C354.676 170.195 354.632 170.341 354.606 170.49C354.831 165.543 350.805 160.644 345.785 158.9Z" fill="#2E303D"/>
|
||||
<path d="M346.015 256.652C346.015 256.652 352.745 268.436 342.481 275.279C332.217 282.134 324.979 272.403 324.979 272.403L346.015 256.652Z" fill="white"/>
|
||||
<path d="M311.023 235.299L324.979 261.906C324.979 261.906 313.625 268.03 311.023 264.481C308.408 260.932 311.023 235.299 311.023 235.299Z" fill="#FFB09D"/>
|
||||
<path d="M305.884 241.306C306.955 244.778 305.782 248.171 303.265 248.883C300.747 249.595 297.838 247.359 296.768 243.886C295.697 240.414 296.87 237.021 299.388 236.308C301.905 235.596 304.814 237.833 305.884 241.306Z" fill="#2E303D"/>
|
||||
<path d="M335.337 231.786C336.407 235.258 335.235 238.651 332.718 239.363C330.2 240.075 327.291 237.839 326.221 234.366C325.15 230.894 326.323 227.501 328.841 226.789C331.357 226.076 334.266 228.313 335.337 231.786Z" fill="#2E303D"/>
|
||||
<path d="M299.765 227.255C297.471 227.78 295.256 228.638 293.196 229.733C292.087 230.322 291.705 231.93 292.418 232.928C293.189 234.008 294.565 234.305 295.752 233.674C296.263 233.403 296.788 233.16 297.317 232.925C298.554 232.419 299.828 232.005 301.136 231.706C302.37 231.424 303.183 229.966 302.771 228.824C302.326 227.581 301.087 226.953 299.765 227.255Z" fill="#2E303D"/>
|
||||
<path d="M334.261 219.454C333.754 219.035 333.222 218.886 332.558 218.824C329.627 218.553 326.568 218.989 323.843 220.057C323.231 220.297 322.73 220.598 322.403 221.173C322.12 221.673 322.011 222.392 322.208 222.938C322.6 224.029 323.961 224.997 325.216 224.505C326.343 224.063 327.513 223.755 328.711 223.548C330.018 223.383 331.333 223.342 332.648 223.463C333.231 223.517 333.984 223.123 334.368 222.732C334.766 222.326 335.063 221.666 335.025 221.1C334.984 220.495 334.758 219.864 334.261 219.454Z" fill="#2E303D"/>
|
||||
<path d="M355.172 152.55C354.865 151.867 353.822 152.457 354.128 153.136C356.378 158.129 357.493 163.538 357.435 168.973C357.426 169.72 358.637 169.72 358.645 168.973C358.704 163.321 357.51 157.737 355.172 152.55Z" fill="#2E303D"/>
|
||||
<path d="M360.716 162.552C360.2 164.591 359.684 166.631 359.167 168.67C358.983 169.395 360.15 169.705 360.334 168.979C360.851 166.94 361.366 164.899 361.883 162.86C362.067 162.136 360.9 161.826 360.716 162.552Z" fill="#2E303D"/>
|
||||
<path d="M352.49 506.063V513.474H244.498L162.178 470.595V463.925L246.071 506.063H352.49Z" fill="#8E8E8E"/>
|
||||
<path d="M352.49 506.063H246.071L162.178 463.925H268.597L352.49 506.063Z" fill="#B7B7B7"/>
|
||||
<path d="M257.334 502.822H244.229L233.898 497.633H247.003L257.334 502.822Z" fill="#8E8E8E"/>
|
||||
<path d="M243.484 495.889H230.379L220.048 490.701H233.153L243.484 495.889Z" fill="#8E8E8E"/>
|
||||
<path d="M231.766 489.228H218.661L208.33 484.038H221.435L231.766 489.228Z" fill="#8E8E8E"/>
|
||||
<path d="M217.917 482.294H204.812L194.481 477.105H207.586L217.917 482.294Z" fill="#8E8E8E"/>
|
||||
<path d="M273.15 501.814H260.045L249.713 496.625H262.818L273.15 501.814Z" fill="#8E8E8E"/>
|
||||
<path d="M261.431 495.153H248.326L237.995 489.964H251.1L261.431 495.153Z" fill="#8E8E8E"/>
|
||||
<path d="M247.582 488.22H234.477L224.146 483.03H237.25L247.582 488.22Z" fill="#8E8E8E"/>
|
||||
<path d="M276.009 493.917H262.904L252.573 488.728H265.678L276.009 493.917Z" fill="#8E8E8E"/>
|
||||
<path d="M264.291 487.255H251.186L240.855 482.065H253.96L264.291 487.255Z" fill="#8E8E8E"/>
|
||||
<path d="M250.443 480.322H237.338L227.006 475.133H240.111L250.443 480.322Z" fill="#8E8E8E"/>
|
||||
<path d="M324.284 503.448H311.178L300.848 498.26H313.953L324.284 503.448Z" fill="#8E8E8E"/>
|
||||
<path d="M310.434 496.516H297.329L286.999 491.327H300.104L310.434 496.516Z" fill="#8E8E8E"/>
|
||||
<path d="M298.716 489.854H285.611L275.28 484.665H288.385L298.716 489.854Z" fill="#8E8E8E"/>
|
||||
<path d="M284.868 482.921H271.763L261.431 477.732H274.536L284.868 482.921Z" fill="#8E8E8E"/>
|
||||
<path d="M340.1 502.441H326.995L316.664 497.253H329.769L340.1 502.441Z" fill="#8E8E8E"/>
|
||||
<path d="M328.383 495.78H315.278L304.947 490.59H318.052L328.383 495.78Z" fill="#8E8E8E"/>
|
||||
<path d="M314.533 488.846H301.428L291.097 483.657H304.202L314.533 488.846Z" fill="#8E8E8E"/>
|
||||
<path d="M420.478 541.675H314.059L259.722 514.328H366.141L420.478 541.675Z" fill="#D5E0E0"/>
|
||||
<path d="M346.673 538.391H315.701L299.887 530.432H330.859L346.673 538.391Z" fill="#009C98"/>
|
||||
<path d="M356.343 537.89C356.155 537.89 355.962 537.847 355.782 537.758L319.057 519.275C318.465 518.977 318.236 518.276 318.547 517.708C318.859 517.141 319.589 516.925 320.182 517.219L356.907 535.702C357.499 536 357.728 536.7 357.417 537.269C357.199 537.665 356.778 537.89 356.343 537.89Z" fill="#B7B7B7"/>
|
||||
<path d="M368.698 537.209C368.509 537.209 368.317 537.166 368.136 537.077L331.411 518.594C330.819 518.296 330.591 517.595 330.902 517.027C331.214 516.46 331.944 516.244 332.537 516.539L369.262 535.022C369.854 535.32 370.083 536.021 369.772 536.589C369.554 536.983 369.132 537.209 368.698 537.209Z" fill="#B7B7B7"/>
|
||||
<path d="M385.496 538.231C385.307 538.231 385.115 538.188 384.935 538.099L348.21 519.617C347.618 519.319 347.389 518.618 347.7 518.05C348.012 517.483 348.742 517.267 349.334 517.562L386.059 536.045C386.651 536.343 386.88 537.044 386.569 537.612C386.352 538.006 385.931 538.231 385.496 538.231Z" fill="#B7B7B7"/>
|
||||
<path d="M397.851 537.549C397.662 537.549 397.469 537.506 397.289 537.417L360.564 518.935C359.972 518.637 359.743 517.936 360.055 517.368C360.367 516.801 361.097 516.585 361.69 516.88L398.415 535.363C399.007 535.661 399.235 536.362 398.924 536.929C398.706 537.324 398.285 537.549 397.851 537.549Z" fill="#B7B7B7"/>
|
||||
<path d="M508.81 229.824L529.521 219.491C537.78 221.565 546.75 221.449 555.466 218.689C579.531 211.071 592.593 186.202 584.643 163.143C576.693 140.084 550.741 127.567 526.677 135.185C502.626 142.8 489.563 167.668 497.513 190.727C499.813 197.396 503.628 203.193 508.463 207.867L508.81 229.824Z" fill="#A6E2E2"/>
|
||||
<path d="M554.008 207.453V210.332H551.418H533.93H531.238V202.103L554.008 207.453Z" fill="#8E8E8E"/>
|
||||
<path d="M533.931 210.332H551.419C551.419 210.332 551.006 213.799 542.619 213.799C534.243 213.799 533.931 210.332 533.931 210.332Z" fill="#B7B7B7"/>
|
||||
<path d="M554.008 199.621V207.453L531.238 202.103V199.621H532.869H552.892H554.008Z" fill="#B7B7B7"/>
|
||||
<path d="M569.733 165.111C569.733 174.591 564.384 182.885 556.41 187.347L552.893 199.621H532.87L529.364 187.347C521.391 182.885 516.03 174.592 516.03 165.111C516.03 150.9 528.058 139.386 542.888 139.386C557.716 139.385 569.733 150.9 569.733 165.111Z" fill="#009C98"/>
|
||||
<path d="M532.104 171.077C532.004 170.463 531.03 170.723 531.13 171.334C532.629 180.554 534.13 189.774 535.63 198.995C535.73 199.608 536.704 199.348 536.604 198.737C535.105 189.517 533.604 180.298 532.104 171.077Z" fill="white"/>
|
||||
<path d="M553.398 170.141C551.779 179.847 550.161 189.553 548.541 199.259C548.439 199.869 549.414 200.131 549.516 199.516C551.135 189.811 552.753 180.104 554.373 170.398C554.475 169.788 553.501 169.526 553.398 170.141Z" fill="white"/>
|
||||
<path d="M556.132 177.152C555.373 179.159 553.024 180.514 550.814 180.109C548.947 179.765 547.521 178.438 546.546 176.91C547.458 175.654 548.102 174.193 548.448 172.841C548.813 171.414 548.907 169.925 548.692 168.468C548.529 167.359 547.986 165.944 546.65 165.772C545.09 165.57 544.289 167.075 544.036 168.308C543.709 169.9 543.712 171.538 544.008 173.134C544.236 174.361 544.671 175.63 545.307 176.795C545.174 176.953 545.043 177.111 544.9 177.26C544.035 178.167 542.935 179.009 541.601 179.079C540.325 179.146 539.436 178.383 538.784 177.436C539.458 176.506 539.927 175.407 540.169 174.313C540.523 172.704 540.672 170.914 540.558 169.274C540.47 167.999 539.548 166.5 537.986 166.929C536.381 167.371 536.113 169.245 536.007 170.593C535.888 172.135 536.087 173.713 536.58 175.185C536.826 175.921 537.15 176.695 537.566 177.412C536.912 178.138 536.059 178.671 534.957 178.847C531.915 179.331 530.769 176.348 530.177 174.081C530.019 173.477 529.044 173.733 529.202 174.338C529.86 176.853 531.137 179.874 534.339 179.863C535.881 179.857 537.142 179.207 538.106 178.234C538.352 178.553 538.621 178.85 538.922 179.108C540.088 180.102 541.661 180.28 543.094 179.726C544.163 179.313 545.093 178.601 545.875 177.732C546.808 179.091 548.063 180.214 549.658 180.794C552.641 181.877 556.036 180.231 557.105 177.405C557.329 176.823 556.352 176.57 556.132 177.152ZM537.094 169.908C537.187 169.288 537.313 168.547 537.823 168.108C538.44 167.575 539.137 167.923 539.407 168.584C539.657 169.196 539.557 169.935 539.537 170.576C539.515 171.258 539.487 171.94 539.418 172.618C539.289 173.899 538.934 175.332 538.234 176.508C537.173 174.489 536.759 172.144 537.094 169.908ZM545.895 175.747C544.806 173.436 544.451 170.651 545.1 168.177C545.246 167.616 545.519 166.95 546.155 166.764C546.775 166.585 547.193 167.09 547.418 167.578C547.878 168.577 547.851 169.839 547.762 170.906C547.614 172.675 546.993 174.419 545.982 175.915C545.954 175.858 545.922 175.803 545.895 175.747Z" fill="white"/>
|
||||
<path d="M249.782 236.326L228.235 239.527C223.218 245.464 216.402 250.13 208.251 252.674C185.749 259.694 161.567 247.907 154.24 226.344C146.914 204.781 159.215 181.611 181.718 174.589C204.209 167.572 228.389 179.359 235.717 200.922C237.836 207.159 238.311 213.543 237.371 219.621L249.782 236.326Z" fill="white"/>
|
||||
<path d="M223 203.179L189.314 238L171 219.057L179.879 209.879L189.314 219.631L214.11 194L223 203.179Z" fill="#009C98"/>
|
||||
<path d="M479.887 327.718L452.556 357.109L445.572 375.168L444.144 358.234L441.275 337.6L441.566 333.784L443.2 312.223C438.661 312.629 434.243 312.513 430.091 311.794C413.751 309.01 401.284 297.052 399.722 271.176C398.766 255.413 400.799 243.536 403.547 234.977C407.578 222.404 413.182 217.01 413.182 217.01C413.182 217.01 433.626 249.823 460.715 253.453C460.715 253.453 465.677 242.237 473.412 245.543C481.158 248.848 481.158 271.164 468.885 274.087C467.275 289.524 469.623 305.345 475.675 319.739C476.837 322.487 478.181 325.248 479.887 327.718Z" fill="#FFC6B0"/>
|
||||
<path d="M453.161 283.795C459.211 283.795 464.115 279.095 464.115 273.298C464.115 267.501 459.211 262.801 453.161 262.801C447.111 262.801 442.207 267.501 442.207 273.298C442.207 279.095 447.111 283.795 453.161 283.795Z" fill="#FFB09D"/>
|
||||
<path d="M456.841 309.636L442.34 323.508L443.199 312.223C447.654 311.84 452.241 310.947 456.841 309.636Z" fill="#2E303D"/>
|
||||
<path d="M442.34 323.508L441.565 333.784C441.565 333.784 425.854 340.535 418.652 356.483C417.091 351.634 417.26 346.334 418.386 341.358C419.657 335.791 422.054 330.537 424.474 325.352C426.544 320.91 428.65 316.444 430.091 311.793C434.242 312.513 438.66 312.629 443.199 312.223L442.34 323.508Z" fill="#2E303D"/>
|
||||
<path d="M416.377 258.44L422.61 283.597C422.61 283.597 411.753 286.741 410.325 284.235C408.897 281.742 416.377 258.44 416.377 258.44Z" fill="#FFB09D"/>
|
||||
<path d="M569.148 333.197C565.903 320.477 558.025 309.47 549.049 299.81C541.784 291.989 533.71 284.915 526.052 277.457C523.654 273.713 521.408 269.885 519.406 265.921C511.902 251.087 507.968 234.768 500.246 220.049C492.511 205.319 479.548 191.61 462.554 189.07C437.595 185.335 413.774 206.537 388.949 202.072C387.968 214.169 393.173 226.602 402.614 234.698L403.546 234.977C407.004 224.19 411.61 218.7 412.852 217.355C414.345 224.478 419.508 230.336 424.614 235.51C430.587 241.561 437.309 247.185 445.475 250.307C448.998 251.655 452.743 252.489 456.528 252.636C457.906 252.976 459.298 253.263 460.714 253.453C460.714 253.453 465.676 242.237 473.411 245.543C481.158 248.848 481.158 271.164 468.884 274.087C467.274 289.524 469.622 305.345 475.674 319.738C476.836 322.487 478.18 325.248 479.887 327.718C480.94 329.261 482.138 330.687 483.53 331.94V331.952C484.026 332.392 484.547 332.822 485.103 333.228C495.743 341.01 511.418 336.348 523.945 340.859C535.541 345.035 542.731 356.726 544.619 368.464C546.52 380.202 544.05 392.136 541.605 403.781L541.823 403.851C542.065 403.155 542.295 402.447 542.525 401.752C558.787 396.235 568.421 379.341 569.193 362.719C571.533 353.047 571.611 342.85 569.148 333.197ZM436.205 244.001C432.802 241.625 429.698 238.869 426.763 235.981C423.888 233.153 421.063 230.222 418.702 226.978C416.924 224.536 415.425 221.875 414.527 219.033C418.703 225.091 432.292 243.17 450.236 250.565C445.19 249.325 440.429 246.95 436.205 244.001ZM569.092 356.883C567.916 340.08 559.431 324.399 549.644 310.332C542.977 300.76 535.603 291.588 529.044 281.964C533.71 286.388 538.45 290.746 542.999 295.268C552.609 304.823 561.71 315.492 566.338 328.179C569.683 337.354 570.51 347.277 569.092 356.883Z" fill="#2E303D"/>
|
||||
<path d="M411.812 258.659C411.812 262.281 409.684 265.215 407.058 265.215C404.433 265.215 402.305 262.279 402.305 258.659C402.305 255.04 404.433 252.104 407.058 252.104C409.684 252.104 411.812 255.038 411.812 258.659Z" fill="#2E303D"/>
|
||||
<path d="M436.444 257.719C436.444 261.34 434.316 264.275 431.691 264.275C429.065 264.275 426.938 261.34 426.938 257.719C426.938 254.098 429.065 251.163 431.691 251.163C434.316 251.163 436.444 254.098 436.444 257.719Z" fill="#2E303D"/>
|
||||
<path d="M410.096 243.524C407.742 243.404 405.364 243.624 403.064 244.116C401.827 244.381 400.984 245.819 401.373 246.97C401.793 248.214 403.025 248.873 404.35 248.59C404.921 248.468 405.497 248.378 406.073 248.295C407.408 248.147 408.752 248.095 410.095 248.163C411.362 248.228 412.573 247.05 412.516 245.843C412.455 244.53 411.453 243.592 410.096 243.524Z" fill="#2E303D"/>
|
||||
<path d="M439.059 245.601C438.696 245.061 438.23 244.774 437.612 244.535C434.882 243.479 431.819 243.066 428.89 243.351C428.232 243.414 427.662 243.566 427.179 244.03C426.759 244.433 426.443 245.093 426.469 245.67C426.523 246.822 427.541 248.121 428.89 247.99C430.102 247.873 431.316 247.894 432.525 248.021C433.827 248.216 435.102 248.535 436.326 249.008C436.869 249.218 437.708 249.046 438.191 248.774C438.693 248.492 439.171 247.94 439.303 247.388C439.444 246.794 439.413 246.127 439.059 245.601Z" fill="#2E303D"/>
|
||||
<path d="M440.894 292.111C442.649 296.267 441 300.826 437.209 302.295C433.419 303.765 428.923 301.588 427.168 297.432C425.413 293.276 427.063 288.717 430.854 287.248C434.645 285.778 439.14 287.956 440.894 292.111Z" fill="#E56B45"/>
|
||||
<path d="M442.207 286.335C442.207 286.335 445.826 296.252 435.392 299.557C426.895 302.248 423.324 296.901 422.368 295.069L442.207 286.335Z" fill="white"/>
|
||||
<path d="M541.605 403.781L541.823 403.851C538.458 413.86 534.634 423.905 530.772 433.381V433.392C518.838 462.667 506.54 486.548 506.165 487.256C494.375 471.656 472.419 461.298 465.289 458.225C463.825 457.598 462.989 457.274 462.989 457.274L458.499 470.171C458.874 470.508 459.261 470.844 459.625 471.169L418.918 476.365V460.289C418.918 460.289 417.914 458.202 416.425 454.884C414.392 450.361 411.45 443.541 408.993 436.675C406.294 429.136 404.176 421.539 404.43 416.864C405.108 404.825 432.632 358.396 432.632 358.396C432.669 365.089 434.218 370.494 434.218 370.494C434.339 369.775 434.617 369.009 435.029 368.232C435.15 368.731 439.048 384.134 446.322 395.802L461.815 370.494C462.457 372.083 463.086 373.857 463.655 375.806C463.655 375.806 480.843 349.176 483.53 331.952C484.026 332.393 484.547 332.822 485.104 333.228C495.743 341.01 511.418 336.348 523.946 340.859C535.541 345.035 542.731 356.726 544.619 368.464C546.52 380.202 544.051 392.136 541.605 403.781Z" fill="#009C98"/>
|
||||
<path d="M530.773 433.392L538.023 494.458H505.366L508.078 489.947C507.484 489.03 506.843 488.137 506.165 487.256C506.54 486.548 518.838 462.667 530.773 433.392Z" fill="#009C98"/>
|
||||
<path d="M506.164 487.256C506.842 488.137 507.484 489.03 508.077 489.947L505.366 494.459L491.7 517.25C491.7 517.25 486.895 495.595 459.624 471.169C459.261 470.844 458.874 470.508 458.499 470.171L462.989 457.274C462.989 457.274 463.824 457.598 465.289 458.225C472.418 461.298 494.375 471.656 506.164 487.256Z" fill="#5EBFBC"/>
|
||||
<path d="M491.7 517.25C491.7 517.25 460.436 517.783 373.032 512.947C373.032 512.947 352.612 526.494 344.321 525.635C336.018 524.777 319.641 510.047 315.598 503.923C311.567 497.799 322.11 488.659 322.11 488.659C322.11 488.659 322.219 484.043 328.84 481.352C331.793 480.157 339.891 480.32 347.976 480.865C358.047 481.561 368.093 482.86 368.093 482.86L392.411 479.752L418.919 476.365L459.625 471.169C486.895 495.595 491.7 517.25 491.7 517.25Z" fill="#FFC6B0"/>
|
||||
<path d="M483.53 331.94V331.952C480.842 349.176 463.655 375.806 463.655 375.806C463.086 373.857 462.456 372.083 461.815 370.494C457.663 360.194 452.555 357.109 452.555 357.109L479.886 327.718C480.939 329.261 482.138 330.687 483.53 331.94Z" fill="white"/>
|
||||
<path d="M461.816 370.494L446.322 395.801C439.048 384.133 435.15 368.731 435.029 368.232C435.029 368.22 435.029 368.22 435.029 368.22C437.462 363.511 444.144 358.234 444.144 358.234L445.572 375.168L452.556 357.109C452.556 357.109 457.664 360.194 461.816 370.494Z" fill="#D7F2ED"/>
|
||||
<path d="M432.584 431.595H442.11H451.467L452.217 468.663H424.293L423.724 431.595H432.584ZM445.56 452.565V435.155H430.381V452.565H445.56Z" fill="white"/>
|
||||
<path d="M445.559 435.155H430.381V452.565H445.559V435.155Z" fill="#009C98"/>
|
||||
<path d="M441.275 337.6L444.143 358.234C444.143 358.234 437.462 363.511 435.029 368.22C435.029 368.22 435.029 368.22 435.029 368.232C434.617 369.009 434.339 369.775 434.218 370.494C434.218 370.494 432.669 365.089 432.632 358.396C432.596 351.286 434.254 342.704 441.275 337.6Z" fill="white"/>
|
||||
<path d="M437.45 425.946L442.11 431.595H432.584L437.45 425.946Z" fill="#B7B7B7"/>
|
||||
<path d="M418.653 356.483C425.854 340.535 441.566 333.784 441.566 333.784L441.275 337.6C434.255 342.704 432.596 351.286 432.633 358.396C432.633 358.396 405.108 404.825 404.43 416.864C404.176 421.539 406.294 429.136 408.993 436.675L407.347 437.069L395.534 431.571L395.909 430.841C395.909 430.841 410.942 379.784 416.994 360.762C417.466 359.266 418.023 357.84 418.653 356.483Z" fill="#009C98"/>
|
||||
<path d="M418.919 460.289V476.365L392.411 479.752L311.735 479.592C298.081 485.217 291.021 485.518 285.744 483.001C283.589 483.141 275.51 483.997 273.355 484.124C273.149 486.351 272.435 488.334 270.511 488.334C266.141 488.334 261.263 478.986 261.263 478.986C261.263 478.986 259.92 488.334 255.538 486.084C251.168 483.823 252.342 471.029 252.342 471.029C252.342 471.029 242.417 480.355 241.073 476.84C239.73 473.314 246.29 456.578 262.607 455.128C278.923 453.678 315.768 459.965 315.768 459.965L388.84 448.25L416.425 454.884C417.914 458.202 418.919 460.289 418.919 460.289Z" fill="#FFC6B0"/>
|
||||
<path d="M416.426 454.884L388.84 448.25C387.146 435.248 391.648 429.762 391.648 429.762L395.534 431.571L408.994 436.675C411.451 443.541 414.392 450.361 416.426 454.884Z" fill="#5EBFBC"/>
|
||||
<path d="M360.897 454.749C362.628 455.885 363.1 458.159 362.047 459.898C353.514 458.843 351.48 455.12 351.48 455.12C352.183 453.983 353.574 452.638 354.942 452.568C356.613 452.499 358.791 453.368 360.897 454.749Z" fill="#ED694F"/>
|
||||
<path d="M362.047 459.898L356.891 468.423C350.1 467.484 346.469 463.181 346.469 463.181L351.48 455.12C351.48 455.12 353.514 458.843 362.047 459.898Z" fill="#FF9076"/>
|
||||
<path d="M356.891 468.423L348.854 481.715L335.128 481.437L346.469 463.181C346.469 463.181 350.101 467.484 356.891 468.423Z" fill="#009C98"/>
|
||||
<path d="M489.139 376.88C485.817 386.903 482.495 396.928 479.174 406.951C475.867 416.929 472.56 426.908 469.253 436.885C467.38 442.54 465.505 448.197 463.631 453.852C463.395 454.565 464.563 454.87 464.798 454.161C468.12 444.137 471.442 434.113 474.763 424.089C478.07 414.111 481.377 404.134 484.684 394.156C486.557 388.5 488.432 382.844 490.306 377.188C490.543 376.475 489.374 376.17 489.139 376.88Z" fill="#2E303D"/>
|
||||
<path d="M530.172 435.04C523.213 448.301 516.818 461.833 511.011 475.594C509.373 479.474 507.783 483.375 506.238 487.291C505.962 487.99 507.131 488.292 507.405 487.599C512.845 473.809 518.866 460.23 525.462 446.91C527.334 443.128 529.254 439.367 531.216 435.626C531.566 434.96 530.521 434.372 530.172 435.04Z" fill="#2E303D"/>
|
||||
<path d="M430.984 359.741C425.227 369.966 419.331 380.132 413.744 390.443C408.702 399.745 404.251 409.726 404.289 420.393C404.31 425.938 405.57 431.484 408.441 436.33C408.826 436.98 409.872 436.395 409.487 435.744C404.261 426.927 404.734 416.185 407.744 406.755C409.368 401.669 411.69 396.822 414.215 392.095C416.852 387.157 419.659 382.301 422.407 377.419C425.614 371.721 428.822 366.022 432.029 360.325C432.399 359.67 431.354 359.083 430.984 359.741Z" fill="#2E303D"/>
|
||||
<path d="M461.758 371.847C455.218 386.022 448.678 400.197 442.138 414.372C440.545 417.826 438.951 421.279 437.358 424.732C434.91 410.605 433.861 396.26 434.268 381.944C434.389 377.694 434.638 373.449 435.01 369.213C435.075 368.47 433.864 368.473 433.8 369.213C432.48 384.276 432.742 399.459 434.602 414.469C435.111 418.578 435.74 422.671 436.481 426.746C436.476 426.853 436.502 426.95 436.55 427.04C436.615 427.228 436.753 427.331 436.919 427.36C437.162 427.452 437.439 427.406 437.577 427.107C437.582 427.098 437.586 427.087 437.591 427.078C437.628 427.022 437.661 426.961 437.677 426.893C444.184 412.789 450.69 398.686 457.197 384.582C459.066 380.532 460.933 376.482 462.802 372.433C463.115 371.757 462.072 371.165 461.758 371.847Z" fill="#2E303D"/>
|
||||
<path d="M418.064 476.641C409.484 477.447 400.903 478.253 392.324 479.059C391.555 479.131 391.548 480.292 392.324 480.219C400.904 479.413 409.485 478.607 418.064 477.801C418.833 477.729 418.841 476.569 418.064 476.641Z" fill="#2E303D"/>
|
||||
<path d="M298.374 478.795C291.156 480.985 283.702 482.44 276.16 483.083C275.295 483.157 274.429 483.22 273.563 483.273C272.835 483.317 272.082 483.399 271.361 483.257C270.809 483.146 270.193 482.895 270.23 482.257C270.278 481.466 271.328 480.726 271.872 480.232C274.354 477.977 277.016 475.91 279.834 474.052C283.02 471.95 286.394 470.122 289.908 468.575C290.615 468.263 290 467.263 289.297 467.573C282.462 470.584 276.159 474.682 270.729 479.674C269.711 480.61 268.379 481.996 269.355 483.405C270.056 484.415 271.55 484.53 272.695 484.485C276.788 484.323 280.894 483.815 284.928 483.144C289.588 482.369 294.187 481.285 298.696 479.916C299.435 479.689 299.119 478.569 298.374 478.795Z" fill="#2E303D"/>
|
||||
<path d="M261.878 478.839C260.287 473.717 260.265 468.267 261.82 463.134C262.038 462.416 260.87 462.109 260.653 462.826C259.041 468.148 259.06 473.835 260.711 479.147C260.933 479.862 262.101 479.558 261.878 478.839Z" fill="#2E303D"/>
|
||||
<path d="M257.322 461.26C257.012 461.083 256.691 461.221 256.494 461.468C254.24 464.288 252.703 467.607 252.025 471.1C251.883 471.83 253.05 472.143 253.192 471.409C253.854 467.999 255.339 464.807 257.538 462.053C257.739 461.803 257.578 461.407 257.322 461.26Z" fill="#2E303D"/>
|
||||
<path d="M443.651 358.197C440.155 361.514 436.873 365.032 433.821 368.731C433.343 369.311 434.194 370.136 434.677 369.551C437.728 365.852 441.011 362.334 444.507 359.017C445.061 358.491 444.205 357.671 443.651 358.197Z" fill="#2E303D"/>
|
||||
<path d="M463.843 374.613C461.79 367.992 458.222 361.874 453.421 356.723C452.901 356.165 452.048 356.987 452.566 357.543C457.226 362.544 460.684 368.496 462.676 374.922C462.897 375.635 464.066 375.331 463.843 374.613Z" fill="#2E303D"/>
|
||||
<path d="M446.538 376.134C446.506 375.39 445.294 375.386 445.328 376.134C445.557 381.276 445.787 386.417 446.017 391.559C446.049 392.302 447.261 392.307 447.227 391.559C446.997 386.417 446.767 381.276 446.538 376.134Z" fill="#2E303D"/>
|
||||
<path d="M450.918 379.093C450.584 378.433 449.681 378.072 448.964 378.341C448.748 378.422 448.554 378.548 448.383 378.698C448.363 378.715 448.336 378.722 448.318 378.742C448.283 378.781 448.267 378.831 448.236 378.871C448.179 378.938 448.106 378.993 448.064 379.071C448.041 379.112 448.041 379.16 448.022 379.203C448.005 379.241 447.997 379.281 447.984 379.32C447.936 379.463 447.902 379.604 447.897 379.754C447.897 379.77 447.887 379.785 447.887 379.801C447.887 379.843 447.908 379.88 447.91 379.922C447.919 380.017 447.907 380.112 447.934 380.205C447.945 380.242 447.973 380.271 447.986 380.307C448.012 380.375 448.051 380.436 448.084 380.501C448.14 380.604 448.196 380.703 448.275 380.792C448.291 380.812 448.299 380.837 448.317 380.857C448.358 380.9 448.417 380.923 448.465 380.96C448.525 381.01 448.571 381.075 448.64 381.115C448.667 381.132 448.702 381.132 448.73 381.147C448.807 381.185 448.892 381.204 448.974 381.23C449.075 381.262 449.168 381.305 449.274 381.316C449.657 381.369 450.055 381.303 450.369 381.088C450.688 380.867 450.925 380.566 451.032 380.199C451.142 379.823 451.094 379.439 450.918 379.093Z" fill="#2E303D"/>
|
||||
<path d="M142.207 481.758L138.612 510.151L200.525 506.498V518.328L110.349 528.001L85.8989 510.151L113.787 446.905L123.809 424.172L148.707 430.412L145.584 455.128L142.207 481.758Z" fill="#8E8E8E"/>
|
||||
<path d="M175.287 267.151L217.131 476.086H199.181L157.119 267.151H175.287Z" fill="#8E8E8E"/>
|
||||
<path d="M200.525 506.498L138.613 510.151L142.208 481.758L200.525 506.498Z" fill="#B7B7B7"/>
|
||||
<path d="M157.119 267.151L199.181 476.086L145.584 455.128L148.707 430.412L123.809 424.172L113.787 446.905L109.345 445.095L60.8799 267.151H157.119Z" fill="#B7B7B7"/>
|
||||
<path d="M190.349 429.66C188.028 416.579 185.646 403.508 183.204 390.448C180.749 377.322 178.232 364.206 175.654 351.102C173.089 338.063 170.464 325.034 167.777 312.019C165.091 299.002 162.343 285.996 159.536 273.004C159.185 271.38 158.833 269.755 158.481 268.132C158.322 267.401 157.156 267.711 157.314 268.441C160.136 281.431 162.899 294.433 165.601 307.446C168.302 320.46 170.943 333.485 173.523 346.522C176.115 359.624 178.648 372.736 181.117 385.859C183.575 398.917 185.972 411.986 188.308 425.065C190.644 438.143 192.919 451.232 195.133 464.329C195.41 465.967 195.685 467.603 195.961 469.241C196.085 469.976 197.252 469.664 197.128 468.933C194.929 455.832 192.67 442.741 190.349 429.66Z" fill="#2E303D"/>
|
||||
<path d="M141.231 429.915C137.549 442.493 133.72 455.031 129.739 467.525C125.772 479.973 121.658 492.378 117.397 504.737C114.986 511.729 112.528 518.704 110.025 525.666C109.771 526.373 110.94 526.677 111.192 525.974C115.634 513.624 119.931 501.226 124.079 488.782C128.211 476.383 132.196 463.939 136.032 451.454C138.202 444.39 140.324 437.314 142.398 430.225C142.609 429.503 141.442 429.196 141.231 429.915Z" fill="#2E303D"/>
|
||||
</svg>
|
After Width: | Height: | Size: 33 KiB |
106
public/assets-login-landing/img/hero.svg
Normal file
@ -0,0 +1,106 @@
|
||||
<svg width="649" height="624" viewBox="0 0 649 624" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M291.097 465.407C401.82 465.407 491.579 379.397 491.579 273.298C491.579 167.199 401.82 81.1896 291.097 81.1896C180.374 81.1896 90.6147 167.199 90.6147 273.298C90.6147 379.397 180.374 465.407 291.097 465.407Z" fill="#A6E2E2"/>
|
||||
<path d="M320.041 344.348C320.041 344.348 264.156 409.335 244.39 407.641C224.624 405.948 211.08 374.272 211.08 374.272C211.08 374.272 211.757 373.924 212.907 373.263C218.693 369.992 236.486 359.159 240.65 347.596C244.681 341.321 273.997 295.774 282.917 284.152C292.516 271.66 303.809 271.173 303.809 271.173C310.176 281.206 318.213 288.838 328.174 290.276C329.542 290.473 330.874 290.601 332.145 290.659C332.75 294.741 336.756 315.572 356.28 326.231C356.28 326.231 357.031 311.722 367.041 310.434C367.041 310.434 377.644 304.867 386.395 313.009C386.395 313.009 400.266 298.743 386.395 258.682L376.494 250.099L376.482 250.087L371.943 239.741C371.943 239.741 422.598 237.317 434.315 247.721C446.032 258.113 520.98 353.151 520.98 353.151L411.959 434.26C411.959 434.26 345.859 371.442 320.041 344.348Z" fill="white"/>
|
||||
<path d="M386.395 258.682C400.267 298.743 386.395 313.009 386.395 313.009C377.644 304.867 367.041 310.434 367.041 310.434L381.179 260.769L376.494 250.099L386.395 258.682Z" fill="#D7F2ED"/>
|
||||
<path d="M352.384 301.167L367.042 310.434C357.032 311.721 356.281 326.231 356.281 326.231C336.757 315.572 332.751 294.741 332.146 290.659C333.38 290.717 334.578 290.705 335.716 290.635L352.384 301.167Z" fill="#D7F2ED"/>
|
||||
<path d="M319.702 343.826C313.604 336.614 307.506 329.402 301.407 322.189C300.916 321.609 300.064 322.434 300.551 323.009C306.649 330.221 312.747 337.433 318.846 344.646C319.336 345.226 320.189 344.4 319.702 343.826Z" fill="#2E303D"/>
|
||||
<path d="M314.358 345.246C310.04 343.47 305.724 341.694 301.407 339.919C300.699 339.628 300.081 340.626 300.795 340.92C305.113 342.695 309.429 344.471 313.747 346.247C314.455 346.539 315.072 345.54 314.358 345.246Z" fill="#2E303D"/>
|
||||
<path d="M410.726 378.326C405.237 369.625 399.748 360.925 394.258 352.224C388.796 343.564 383.332 334.905 377.87 326.245C374.773 321.338 371.678 316.432 368.582 311.524C368.179 310.886 367.132 311.469 367.537 312.11C373.027 320.811 378.516 329.511 384.005 338.213C389.469 346.872 394.931 355.531 400.394 364.191C403.49 369.098 406.585 374.004 409.682 378.912C410.083 379.55 411.13 378.967 410.726 378.326Z" fill="#2E303D"/>
|
||||
<path d="M241.533 343.316C241.473 344.743 241.17 346.169 240.65 347.596C236.486 359.159 218.693 369.992 212.907 373.263L211.079 366.849C211.079 366.849 201.699 368.867 194.836 363.173C194.654 363.509 194.364 363.81 194.025 364.019C193.056 364.588 191.834 364.588 190.696 364.495C185.552 364.054 180.541 362.163 176.462 359.113C174.053 357.315 171.886 354.984 171.221 352.131C170.579 349.428 171.656 346.216 174.162 344.893C174.065 344.464 174.005 344.023 173.98 343.583C173.871 341.066 175.251 338.653 177.127 336.89C178.858 335.243 181.001 334.072 183.143 332.958C183.167 332.854 183.192 332.761 183.216 332.668C183.736 330.882 185.068 329.398 186.617 328.296C188.021 327.298 189.619 326.579 191.217 325.883C183.458 322.056 176.014 317.811 176.764 315.909C178.277 312.046 194.17 313.415 210.244 318.808C226.306 324.213 231.559 332.263 231.559 332.263C236.558 330.14 242.029 330.558 241.533 343.316Z" fill="#FFC6B0"/>
|
||||
<path d="M235.643 345.487C231.898 347.027 228.152 348.567 224.407 350.107C222.511 350.886 220.615 351.666 218.719 352.445C217.16 353.085 215.263 354.129 213.514 353.611C211.631 353.052 211.612 351.031 212.333 349.584C213.054 348.136 214.183 346.815 215.225 345.569C217.284 343.111 219.611 340.857 222.151 338.853C225.097 336.527 228.342 334.562 231.779 332.976C232.482 332.652 231.868 331.651 231.168 331.975C224.524 335.043 218.621 339.563 214.062 345.119C212.283 347.287 208.931 351.11 211.602 353.825C212.82 355.063 214.779 355.069 216.361 354.599C218.327 354.015 220.218 353.082 222.105 352.306C226.822 350.367 231.537 348.427 236.254 346.488C236.967 346.196 236.352 345.196 235.643 345.487Z" fill="#2E303D"/>
|
||||
<path d="M206.118 333.907C201.421 331.221 196.726 328.534 192.03 325.847C191.359 325.463 190.75 326.467 191.418 326.849L205.506 334.909C206.177 335.293 206.786 334.29 206.118 333.907Z" fill="#2E303D"/>
|
||||
<path d="M208.309 355.636C208.18 354.539 207.662 353.525 207.222 352.518C206.739 351.41 206.256 350.303 205.772 349.194C203.55 344.098 201.326 339.001 199.104 333.905C198.809 333.226 197.637 333.524 197.937 334.213C199.735 338.334 201.532 342.456 203.33 346.577C204.239 348.66 205.146 350.744 206.054 352.827C206.605 354.091 208.302 357.416 205.855 357.954C204.138 358.331 202.135 356.688 200.833 355.81C199.328 354.795 197.896 353.685 196.542 352.494C193.85 350.128 191.464 347.446 189.458 344.521C187.19 341.214 185.414 337.62 184.195 333.839C183.967 333.128 182.797 333.43 183.029 334.147C185.387 341.464 189.796 348.137 195.686 353.314C197.117 354.571 198.634 355.741 200.221 356.812C201.728 357.828 203.533 359.183 205.473 359.154C207.453 359.122 208.515 357.384 208.309 355.636Z" fill="#2E303D"/>
|
||||
<path d="M198.139 356.244C197.675 355.656 196.623 356.233 197.094 356.829C197.913 357.869 197.996 359.282 197.035 360.274C196.081 361.258 194.666 361.267 193.447 360.752C192.205 360.228 191.121 359.343 190.063 358.546C188.96 357.716 187.878 356.862 186.816 355.984C182.602 352.501 178.727 348.651 175.23 344.503C174.741 343.921 173.889 344.747 174.375 345.323C177.587 349.134 181.118 352.693 184.94 355.947C186.802 357.532 188.729 359.054 190.724 360.484C192.476 361.741 194.766 362.939 196.921 361.81C199.012 360.714 199.567 358.055 198.139 356.244Z" fill="#2E303D"/>
|
||||
<path d="M381.178 260.769L367.04 310.434L352.382 301.167C367.464 280.638 364.522 256.257 364.522 256.257C364.522 256.257 362.174 289.093 335.715 290.635C334.577 290.705 333.379 290.717 332.144 290.659C330.873 290.601 329.542 290.473 328.174 290.276C318.212 288.838 310.175 281.206 303.808 271.173C291.16 251.247 285.047 221.903 283.389 212.891C298.289 211.023 312.765 205.027 326.903 199.622C331.272 197.952 335.884 196.293 340.568 196.792C345.362 197.291 349.659 200.028 352.878 203.473C355.698 206.5 357.805 210.049 359.79 213.633C360.346 210.362 362.658 200.55 370.405 203.38C371.301 203.705 372.1 204.227 372.789 204.888C379.217 211.104 376.856 230.404 369.57 234.336L371.942 239.741L376.481 250.087L376.493 250.099L381.178 260.769Z" fill="#FFC6B0"/>
|
||||
<path d="M364.523 256.257C364.523 256.257 367.464 280.638 352.382 301.167L335.715 290.635C362.174 289.093 364.523 256.257 364.523 256.257Z" fill="#2E303D"/>
|
||||
<path d="M371.482 187.35C370.768 182.988 369.655 178.453 366.616 175.136C363.894 172.175 359.189 170.601 355.498 172.059C356.556 168.166 356.043 163.908 353.957 160.391C351.803 156.763 348.108 154.025 343.891 152.973C333.628 150.412 324.255 156.884 315.921 161.608C311.467 164.133 306.817 166.156 301.765 167.3C296.842 168.416 291.735 168.745 286.699 168.285C284.139 168.051 281.617 167.587 279.134 166.949C276.656 166.312 274.186 165.577 271.615 165.383C267.344 165.061 262.992 166.61 261.273 170.611C259.672 174.337 260.495 178.687 262.053 182.29C263.148 184.823 264.699 187.159 266.606 189.193C261.952 188.729 257.035 191.009 254.703 194.922C252.065 199.353 252.997 205.454 256.846 208.98C260.174 212.03 264.992 213.004 269.579 213.329C274.227 213.665 278.827 213.468 283.39 212.888C298.29 211.021 312.767 205.024 326.904 199.62C331.274 197.949 335.885 196.291 340.57 196.79C345.363 197.288 349.66 200.026 352.88 203.47C355.7 206.497 357.806 210.047 359.791 213.631C360.348 210.36 362.66 200.547 370.406 203.378C371.302 203.702 372.101 204.224 372.791 204.885C372.874 199.03 372.438 193.149 371.482 187.35ZM345.785 158.9C340 156.905 333.512 158.204 327.871 160.547C322.231 162.878 317.074 166.195 311.41 168.457C301.061 172.563 289.15 172.922 278.571 169.431C274.65 168.132 270.365 166.323 266.552 167.877C263.596 169.082 261.952 172.052 261.637 175.17C261.635 174.471 261.672 173.771 261.794 173.081C262.122 171.225 262.975 169.453 264.521 168.246C266.195 166.937 268.439 166.487 270.554 166.5C273.048 166.515 275.474 167.191 277.861 167.82C280.186 168.432 282.521 168.943 284.913 169.249C294.193 170.437 303.8 168.923 312.177 164.911C320.766 160.797 328.622 153.908 338.687 153.6C343.189 153.463 347.522 154.966 350.666 158.098C353.837 161.257 355.312 165.704 354.698 170.046C354.676 170.195 354.632 170.341 354.606 170.49C354.831 165.543 350.805 160.644 345.785 158.9Z" fill="#2E303D"/>
|
||||
<path d="M346.015 256.652C346.015 256.652 352.745 268.436 342.481 275.279C332.217 282.134 324.979 272.403 324.979 272.403L346.015 256.652Z" fill="white"/>
|
||||
<path d="M311.023 235.299L324.979 261.906C324.979 261.906 313.625 268.03 311.023 264.481C308.408 260.932 311.023 235.299 311.023 235.299Z" fill="#FFB09D"/>
|
||||
<path d="M305.884 241.306C306.955 244.778 305.782 248.171 303.265 248.883C300.747 249.595 297.838 247.359 296.768 243.886C295.697 240.414 296.87 237.021 299.388 236.308C301.905 235.596 304.814 237.833 305.884 241.306Z" fill="#2E303D"/>
|
||||
<path d="M335.337 231.786C336.407 235.258 335.235 238.651 332.718 239.363C330.2 240.075 327.291 237.839 326.221 234.366C325.15 230.894 326.323 227.501 328.841 226.789C331.357 226.076 334.266 228.313 335.337 231.786Z" fill="#2E303D"/>
|
||||
<path d="M299.765 227.255C297.471 227.78 295.256 228.638 293.196 229.733C292.087 230.322 291.705 231.93 292.418 232.928C293.189 234.008 294.565 234.305 295.752 233.674C296.263 233.403 296.788 233.16 297.317 232.925C298.554 232.419 299.828 232.005 301.136 231.706C302.37 231.424 303.183 229.966 302.771 228.824C302.326 227.581 301.087 226.953 299.765 227.255Z" fill="#2E303D"/>
|
||||
<path d="M334.261 219.454C333.754 219.035 333.222 218.886 332.558 218.824C329.627 218.553 326.568 218.989 323.843 220.057C323.231 220.297 322.73 220.598 322.403 221.173C322.12 221.673 322.011 222.392 322.208 222.938C322.6 224.029 323.961 224.997 325.216 224.505C326.343 224.063 327.513 223.755 328.711 223.548C330.018 223.383 331.333 223.342 332.648 223.463C333.231 223.517 333.984 223.123 334.368 222.732C334.766 222.326 335.063 221.666 335.025 221.1C334.984 220.495 334.758 219.864 334.261 219.454Z" fill="#2E303D"/>
|
||||
<path d="M355.172 152.55C354.865 151.867 353.822 152.457 354.128 153.136C356.378 158.129 357.493 163.538 357.435 168.973C357.426 169.72 358.637 169.72 358.645 168.973C358.704 163.321 357.51 157.737 355.172 152.55Z" fill="#2E303D"/>
|
||||
<path d="M360.716 162.552C360.2 164.591 359.684 166.631 359.167 168.67C358.983 169.395 360.15 169.705 360.334 168.979C360.851 166.94 361.366 164.899 361.883 162.86C362.067 162.136 360.9 161.826 360.716 162.552Z" fill="#2E303D"/>
|
||||
<path d="M352.49 506.063V513.474H244.498L162.178 470.595V463.925L246.071 506.063H352.49Z" fill="#8E8E8E"/>
|
||||
<path d="M352.49 506.063H246.071L162.178 463.925H268.597L352.49 506.063Z" fill="#B7B7B7"/>
|
||||
<path d="M257.334 502.822H244.229L233.898 497.633H247.003L257.334 502.822Z" fill="#8E8E8E"/>
|
||||
<path d="M243.484 495.889H230.379L220.048 490.701H233.153L243.484 495.889Z" fill="#8E8E8E"/>
|
||||
<path d="M231.766 489.228H218.661L208.33 484.038H221.435L231.766 489.228Z" fill="#8E8E8E"/>
|
||||
<path d="M217.917 482.294H204.812L194.481 477.105H207.586L217.917 482.294Z" fill="#8E8E8E"/>
|
||||
<path d="M273.15 501.814H260.045L249.713 496.625H262.818L273.15 501.814Z" fill="#8E8E8E"/>
|
||||
<path d="M261.431 495.153H248.326L237.995 489.964H251.1L261.431 495.153Z" fill="#8E8E8E"/>
|
||||
<path d="M247.582 488.22H234.477L224.146 483.03H237.25L247.582 488.22Z" fill="#8E8E8E"/>
|
||||
<path d="M276.009 493.917H262.904L252.573 488.728H265.678L276.009 493.917Z" fill="#8E8E8E"/>
|
||||
<path d="M264.291 487.255H251.186L240.855 482.065H253.96L264.291 487.255Z" fill="#8E8E8E"/>
|
||||
<path d="M250.443 480.322H237.338L227.006 475.133H240.111L250.443 480.322Z" fill="#8E8E8E"/>
|
||||
<path d="M324.284 503.448H311.178L300.848 498.26H313.953L324.284 503.448Z" fill="#8E8E8E"/>
|
||||
<path d="M310.434 496.516H297.329L286.999 491.327H300.104L310.434 496.516Z" fill="#8E8E8E"/>
|
||||
<path d="M298.716 489.854H285.611L275.28 484.665H288.385L298.716 489.854Z" fill="#8E8E8E"/>
|
||||
<path d="M284.868 482.921H271.763L261.431 477.732H274.536L284.868 482.921Z" fill="#8E8E8E"/>
|
||||
<path d="M340.1 502.441H326.995L316.664 497.253H329.769L340.1 502.441Z" fill="#8E8E8E"/>
|
||||
<path d="M328.383 495.78H315.278L304.947 490.59H318.052L328.383 495.78Z" fill="#8E8E8E"/>
|
||||
<path d="M314.533 488.846H301.428L291.097 483.657H304.202L314.533 488.846Z" fill="#8E8E8E"/>
|
||||
<path d="M420.478 541.675H314.059L259.722 514.328H366.141L420.478 541.675Z" fill="#D5E0E0"/>
|
||||
<path d="M346.673 538.391H315.701L299.887 530.432H330.859L346.673 538.391Z" fill="#009C98"/>
|
||||
<path d="M356.343 537.89C356.155 537.89 355.962 537.847 355.782 537.758L319.057 519.275C318.465 518.977 318.236 518.276 318.547 517.708C318.859 517.141 319.589 516.925 320.182 517.219L356.907 535.702C357.499 536 357.728 536.7 357.417 537.269C357.199 537.665 356.778 537.89 356.343 537.89Z" fill="#B7B7B7"/>
|
||||
<path d="M368.698 537.209C368.509 537.209 368.317 537.166 368.136 537.077L331.411 518.594C330.819 518.296 330.591 517.595 330.902 517.027C331.214 516.46 331.944 516.244 332.537 516.539L369.262 535.022C369.854 535.32 370.083 536.021 369.772 536.589C369.554 536.983 369.132 537.209 368.698 537.209Z" fill="#B7B7B7"/>
|
||||
<path d="M385.496 538.231C385.307 538.231 385.115 538.188 384.935 538.099L348.21 519.617C347.618 519.319 347.389 518.618 347.7 518.05C348.012 517.483 348.742 517.267 349.334 517.562L386.059 536.045C386.651 536.343 386.88 537.044 386.569 537.612C386.352 538.006 385.931 538.231 385.496 538.231Z" fill="#B7B7B7"/>
|
||||
<path d="M397.851 537.549C397.662 537.549 397.469 537.506 397.289 537.417L360.564 518.935C359.972 518.637 359.743 517.936 360.055 517.368C360.367 516.801 361.097 516.585 361.69 516.88L398.415 535.363C399.007 535.661 399.235 536.362 398.924 536.929C398.706 537.324 398.285 537.549 397.851 537.549Z" fill="#B7B7B7"/>
|
||||
<path d="M508.81 229.824L529.521 219.491C537.78 221.565 546.75 221.449 555.466 218.689C579.531 211.071 592.593 186.202 584.643 163.143C576.693 140.084 550.741 127.567 526.677 135.185C502.626 142.8 489.563 167.668 497.513 190.727C499.813 197.396 503.628 203.193 508.463 207.867L508.81 229.824Z" fill="#A6E2E2"/>
|
||||
<path d="M554.008 207.453V210.332H551.418H533.93H531.238V202.103L554.008 207.453Z" fill="#8E8E8E"/>
|
||||
<path d="M533.931 210.332H551.419C551.419 210.332 551.006 213.799 542.619 213.799C534.243 213.799 533.931 210.332 533.931 210.332Z" fill="#B7B7B7"/>
|
||||
<path d="M554.008 199.621V207.453L531.238 202.103V199.621H532.869H552.892H554.008Z" fill="#B7B7B7"/>
|
||||
<path d="M569.733 165.111C569.733 174.591 564.384 182.885 556.41 187.347L552.893 199.621H532.87L529.364 187.347C521.391 182.885 516.03 174.592 516.03 165.111C516.03 150.9 528.058 139.386 542.888 139.386C557.716 139.385 569.733 150.9 569.733 165.111Z" fill="#009C98"/>
|
||||
<path d="M532.104 171.077C532.004 170.463 531.03 170.723 531.13 171.334C532.629 180.554 534.13 189.774 535.63 198.995C535.73 199.608 536.704 199.348 536.604 198.737C535.105 189.517 533.604 180.298 532.104 171.077Z" fill="white"/>
|
||||
<path d="M553.398 170.141C551.779 179.847 550.161 189.553 548.541 199.259C548.439 199.869 549.414 200.131 549.516 199.516C551.135 189.811 552.753 180.104 554.373 170.398C554.475 169.788 553.501 169.526 553.398 170.141Z" fill="white"/>
|
||||
<path d="M556.132 177.152C555.373 179.159 553.024 180.514 550.814 180.109C548.947 179.765 547.521 178.438 546.546 176.91C547.458 175.654 548.102 174.193 548.448 172.841C548.813 171.414 548.907 169.925 548.692 168.468C548.529 167.359 547.986 165.944 546.65 165.772C545.09 165.57 544.289 167.075 544.036 168.308C543.709 169.9 543.712 171.538 544.008 173.134C544.236 174.361 544.671 175.63 545.307 176.795C545.174 176.953 545.043 177.111 544.9 177.26C544.035 178.167 542.935 179.009 541.601 179.079C540.325 179.146 539.436 178.383 538.784 177.436C539.458 176.506 539.927 175.407 540.169 174.313C540.523 172.704 540.672 170.914 540.558 169.274C540.47 167.999 539.548 166.5 537.986 166.929C536.381 167.371 536.113 169.245 536.007 170.593C535.888 172.135 536.087 173.713 536.58 175.185C536.826 175.921 537.15 176.695 537.566 177.412C536.912 178.138 536.059 178.671 534.957 178.847C531.915 179.331 530.769 176.348 530.177 174.081C530.019 173.477 529.044 173.733 529.202 174.338C529.86 176.853 531.137 179.874 534.339 179.863C535.881 179.857 537.142 179.207 538.106 178.234C538.352 178.553 538.621 178.85 538.922 179.108C540.088 180.102 541.661 180.28 543.094 179.726C544.163 179.313 545.093 178.601 545.875 177.732C546.808 179.091 548.063 180.214 549.658 180.794C552.641 181.877 556.036 180.231 557.105 177.405C557.329 176.823 556.352 176.57 556.132 177.152ZM537.094 169.908C537.187 169.288 537.313 168.547 537.823 168.108C538.44 167.575 539.137 167.923 539.407 168.584C539.657 169.196 539.557 169.935 539.537 170.576C539.515 171.258 539.487 171.94 539.418 172.618C539.289 173.899 538.934 175.332 538.234 176.508C537.173 174.489 536.759 172.144 537.094 169.908ZM545.895 175.747C544.806 173.436 544.451 170.651 545.1 168.177C545.246 167.616 545.519 166.95 546.155 166.764C546.775 166.585 547.193 167.09 547.418 167.578C547.878 168.577 547.851 169.839 547.762 170.906C547.614 172.675 546.993 174.419 545.982 175.915C545.954 175.858 545.922 175.803 545.895 175.747Z" fill="white"/>
|
||||
<path d="M249.782 236.326L228.235 239.527C223.218 245.464 216.402 250.13 208.251 252.674C185.749 259.694 161.567 247.907 154.24 226.344C146.914 204.781 159.215 181.611 181.718 174.589C204.209 167.572 228.389 179.359 235.717 200.922C237.836 207.159 238.311 213.543 237.371 219.621L249.782 236.326Z" fill="white"/>
|
||||
<path d="M166.558 201.73L199.299 236.61L217.099 217.635L208.469 208.441L199.299 218.21L175.198 192.535L166.558 201.73Z" fill="#009C98"/>
|
||||
<path d="M479.887 327.718L452.556 357.109L445.572 375.168L444.144 358.234L441.275 337.6L441.566 333.784L443.2 312.223C438.661 312.629 434.243 312.513 430.091 311.794C413.751 309.01 401.284 297.052 399.722 271.176C398.766 255.413 400.799 243.536 403.547 234.977C407.578 222.404 413.182 217.01 413.182 217.01C413.182 217.01 433.626 249.823 460.715 253.453C460.715 253.453 465.677 242.237 473.412 245.543C481.158 248.848 481.158 271.164 468.885 274.087C467.275 289.524 469.623 305.345 475.675 319.739C476.837 322.487 478.181 325.248 479.887 327.718Z" fill="#FFC6B0"/>
|
||||
<path d="M453.161 283.795C459.211 283.795 464.115 279.095 464.115 273.298C464.115 267.501 459.211 262.801 453.161 262.801C447.111 262.801 442.207 267.501 442.207 273.298C442.207 279.095 447.111 283.795 453.161 283.795Z" fill="#FFB09D"/>
|
||||
<path d="M456.841 309.636L442.34 323.508L443.199 312.223C447.654 311.84 452.241 310.947 456.841 309.636Z" fill="#2E303D"/>
|
||||
<path d="M442.34 323.508L441.565 333.784C441.565 333.784 425.854 340.535 418.652 356.483C417.091 351.634 417.26 346.334 418.386 341.358C419.657 335.791 422.054 330.537 424.474 325.352C426.544 320.91 428.65 316.444 430.091 311.793C434.242 312.513 438.66 312.629 443.199 312.223L442.34 323.508Z" fill="#2E303D"/>
|
||||
<path d="M416.377 258.44L422.61 283.597C422.61 283.597 411.753 286.741 410.325 284.235C408.897 281.742 416.377 258.44 416.377 258.44Z" fill="#FFB09D"/>
|
||||
<path d="M569.148 333.197C565.903 320.477 558.025 309.47 549.049 299.81C541.784 291.989 533.71 284.915 526.052 277.457C523.654 273.713 521.408 269.885 519.406 265.921C511.902 251.087 507.968 234.768 500.246 220.049C492.511 205.319 479.548 191.61 462.554 189.07C437.595 185.335 413.774 206.537 388.949 202.072C387.968 214.169 393.173 226.602 402.614 234.698L403.546 234.977C407.004 224.19 411.61 218.7 412.852 217.355C414.345 224.478 419.508 230.336 424.614 235.51C430.587 241.561 437.309 247.185 445.475 250.307C448.998 251.655 452.743 252.489 456.528 252.636C457.906 252.976 459.298 253.263 460.714 253.453C460.714 253.453 465.676 242.237 473.411 245.543C481.158 248.848 481.158 271.164 468.884 274.087C467.274 289.524 469.622 305.345 475.674 319.738C476.836 322.487 478.18 325.248 479.887 327.718C480.94 329.261 482.138 330.687 483.53 331.94V331.952C484.026 332.392 484.547 332.822 485.103 333.228C495.743 341.01 511.418 336.348 523.945 340.859C535.541 345.035 542.731 356.726 544.619 368.464C546.52 380.202 544.05 392.136 541.605 403.781L541.823 403.851C542.065 403.155 542.295 402.447 542.525 401.752C558.787 396.235 568.421 379.341 569.193 362.719C571.533 353.047 571.611 342.85 569.148 333.197ZM436.205 244.001C432.802 241.625 429.698 238.869 426.763 235.981C423.888 233.153 421.063 230.222 418.702 226.978C416.924 224.536 415.425 221.875 414.527 219.033C418.703 225.091 432.292 243.17 450.236 250.565C445.19 249.325 440.429 246.95 436.205 244.001ZM569.092 356.883C567.916 340.08 559.431 324.399 549.644 310.332C542.977 300.76 535.603 291.588 529.044 281.964C533.71 286.388 538.45 290.746 542.999 295.268C552.609 304.823 561.71 315.492 566.338 328.179C569.683 337.354 570.51 347.277 569.092 356.883Z" fill="#2E303D"/>
|
||||
<path d="M411.812 258.659C411.812 262.281 409.684 265.215 407.058 265.215C404.433 265.215 402.305 262.279 402.305 258.659C402.305 255.04 404.433 252.104 407.058 252.104C409.684 252.104 411.812 255.038 411.812 258.659Z" fill="#2E303D"/>
|
||||
<path d="M436.444 257.719C436.444 261.34 434.316 264.275 431.691 264.275C429.065 264.275 426.938 261.34 426.938 257.719C426.938 254.098 429.065 251.163 431.691 251.163C434.316 251.163 436.444 254.098 436.444 257.719Z" fill="#2E303D"/>
|
||||
<path d="M410.096 243.524C407.742 243.404 405.364 243.624 403.064 244.116C401.827 244.381 400.984 245.819 401.373 246.97C401.793 248.214 403.025 248.873 404.35 248.59C404.921 248.468 405.497 248.378 406.073 248.295C407.408 248.147 408.752 248.095 410.095 248.163C411.362 248.228 412.573 247.05 412.516 245.843C412.455 244.53 411.453 243.592 410.096 243.524Z" fill="#2E303D"/>
|
||||
<path d="M439.059 245.601C438.696 245.061 438.23 244.774 437.612 244.535C434.882 243.479 431.819 243.066 428.89 243.351C428.232 243.414 427.662 243.566 427.179 244.03C426.759 244.433 426.443 245.093 426.469 245.67C426.523 246.822 427.541 248.121 428.89 247.99C430.102 247.873 431.316 247.894 432.525 248.021C433.827 248.216 435.102 248.535 436.326 249.008C436.869 249.218 437.708 249.046 438.191 248.774C438.693 248.492 439.171 247.94 439.303 247.388C439.444 246.794 439.413 246.127 439.059 245.601Z" fill="#2E303D"/>
|
||||
<path d="M440.894 292.111C442.649 296.267 441 300.826 437.209 302.295C433.419 303.765 428.923 301.588 427.168 297.432C425.413 293.276 427.063 288.717 430.854 287.248C434.645 285.778 439.14 287.956 440.894 292.111Z" fill="#E56B45"/>
|
||||
<path d="M442.207 286.335C442.207 286.335 445.826 296.252 435.392 299.557C426.895 302.248 423.324 296.901 422.368 295.069L442.207 286.335Z" fill="white"/>
|
||||
<path d="M541.605 403.781L541.823 403.851C538.458 413.86 534.634 423.905 530.772 433.381V433.392C518.838 462.667 506.54 486.548 506.165 487.256C494.375 471.656 472.419 461.298 465.289 458.225C463.825 457.598 462.989 457.274 462.989 457.274L458.499 470.171C458.874 470.508 459.261 470.844 459.625 471.169L418.918 476.365V460.289C418.918 460.289 417.914 458.202 416.425 454.884C414.392 450.361 411.45 443.541 408.993 436.675C406.294 429.136 404.176 421.539 404.43 416.864C405.108 404.825 432.632 358.396 432.632 358.396C432.669 365.089 434.218 370.494 434.218 370.494C434.339 369.775 434.617 369.009 435.029 368.232C435.15 368.731 439.048 384.134 446.322 395.802L461.815 370.494C462.457 372.083 463.086 373.857 463.655 375.806C463.655 375.806 480.843 349.176 483.53 331.952C484.026 332.393 484.547 332.822 485.104 333.228C495.743 341.01 511.418 336.348 523.946 340.859C535.541 345.035 542.731 356.726 544.619 368.464C546.52 380.202 544.051 392.136 541.605 403.781Z" fill="#009C98"/>
|
||||
<path d="M530.773 433.392L538.023 494.458H505.366L508.078 489.947C507.484 489.03 506.843 488.137 506.165 487.256C506.54 486.548 518.838 462.667 530.773 433.392Z" fill="#009C98"/>
|
||||
<path d="M506.164 487.256C506.842 488.137 507.484 489.03 508.077 489.947L505.366 494.459L491.7 517.25C491.7 517.25 486.895 495.595 459.624 471.169C459.261 470.844 458.874 470.508 458.499 470.171L462.989 457.274C462.989 457.274 463.824 457.598 465.289 458.225C472.418 461.298 494.375 471.656 506.164 487.256Z" fill="#5EBFBC"/>
|
||||
<path d="M491.7 517.25C491.7 517.25 460.436 517.783 373.032 512.947C373.032 512.947 352.612 526.494 344.321 525.635C336.018 524.777 319.641 510.047 315.598 503.923C311.567 497.799 322.11 488.659 322.11 488.659C322.11 488.659 322.219 484.043 328.84 481.352C331.793 480.157 339.891 480.32 347.976 480.865C358.047 481.561 368.093 482.86 368.093 482.86L392.411 479.752L418.919 476.365L459.625 471.169C486.895 495.595 491.7 517.25 491.7 517.25Z" fill="#FFC6B0"/>
|
||||
<path d="M483.53 331.94V331.952C480.842 349.176 463.655 375.806 463.655 375.806C463.086 373.857 462.456 372.083 461.815 370.494C457.663 360.194 452.555 357.109 452.555 357.109L479.886 327.718C480.939 329.261 482.138 330.687 483.53 331.94Z" fill="white"/>
|
||||
<path d="M461.816 370.494L446.322 395.801C439.048 384.133 435.15 368.731 435.029 368.232C435.029 368.22 435.029 368.22 435.029 368.22C437.462 363.511 444.144 358.234 444.144 358.234L445.572 375.168L452.556 357.109C452.556 357.109 457.664 360.194 461.816 370.494Z" fill="#D7F2ED"/>
|
||||
<path d="M432.584 431.595H442.11H451.467L452.217 468.663H424.293L423.724 431.595H432.584ZM445.56 452.565V435.155H430.381V452.565H445.56Z" fill="white"/>
|
||||
<path d="M445.559 435.155H430.381V452.565H445.559V435.155Z" fill="#009C98"/>
|
||||
<path d="M441.275 337.6L444.143 358.234C444.143 358.234 437.462 363.511 435.029 368.22C435.029 368.22 435.029 368.22 435.029 368.232C434.617 369.009 434.339 369.775 434.218 370.494C434.218 370.494 432.669 365.089 432.632 358.396C432.596 351.286 434.254 342.704 441.275 337.6Z" fill="white"/>
|
||||
<path d="M437.45 425.946L442.11 431.595H432.584L437.45 425.946Z" fill="#B7B7B7"/>
|
||||
<path d="M418.653 356.483C425.854 340.535 441.566 333.784 441.566 333.784L441.275 337.6C434.255 342.704 432.596 351.286 432.633 358.396C432.633 358.396 405.108 404.825 404.43 416.864C404.176 421.539 406.294 429.136 408.993 436.675L407.347 437.069L395.534 431.571L395.909 430.841C395.909 430.841 410.942 379.784 416.994 360.762C417.466 359.266 418.023 357.84 418.653 356.483Z" fill="#009C98"/>
|
||||
<path d="M418.919 460.289V476.365L392.411 479.752L311.735 479.592C298.081 485.217 291.021 485.518 285.744 483.001C283.589 483.141 275.51 483.997 273.355 484.124C273.149 486.351 272.435 488.334 270.511 488.334C266.141 488.334 261.263 478.986 261.263 478.986C261.263 478.986 259.92 488.334 255.538 486.084C251.168 483.823 252.342 471.029 252.342 471.029C252.342 471.029 242.417 480.355 241.073 476.84C239.73 473.314 246.29 456.578 262.607 455.128C278.923 453.678 315.768 459.965 315.768 459.965L388.84 448.25L416.425 454.884C417.914 458.202 418.919 460.289 418.919 460.289Z" fill="#FFC6B0"/>
|
||||
<path d="M416.426 454.884L388.84 448.25C387.146 435.248 391.648 429.762 391.648 429.762L395.534 431.571L408.994 436.675C411.451 443.541 414.392 450.361 416.426 454.884Z" fill="#5EBFBC"/>
|
||||
<path d="M360.897 454.749C362.628 455.885 363.1 458.159 362.047 459.898C353.514 458.843 351.48 455.12 351.48 455.12C352.183 453.983 353.574 452.638 354.942 452.568C356.613 452.499 358.791 453.368 360.897 454.749Z" fill="#ED694F"/>
|
||||
<path d="M362.047 459.898L356.891 468.423C350.1 467.484 346.469 463.181 346.469 463.181L351.48 455.12C351.48 455.12 353.514 458.843 362.047 459.898Z" fill="#FF9076"/>
|
||||
<path d="M356.891 468.423L348.854 481.715L335.128 481.437L346.469 463.181C346.469 463.181 350.101 467.484 356.891 468.423Z" fill="#009C98"/>
|
||||
<path d="M489.139 376.88C485.817 386.903 482.495 396.928 479.174 406.951C475.867 416.929 472.56 426.908 469.253 436.885C467.38 442.54 465.505 448.197 463.631 453.852C463.395 454.565 464.563 454.87 464.798 454.161C468.12 444.137 471.442 434.113 474.763 424.089C478.07 414.111 481.377 404.134 484.684 394.156C486.557 388.5 488.432 382.844 490.306 377.188C490.543 376.475 489.374 376.17 489.139 376.88Z" fill="#2E303D"/>
|
||||
<path d="M530.172 435.04C523.213 448.301 516.818 461.833 511.011 475.594C509.373 479.474 507.783 483.375 506.238 487.291C505.962 487.99 507.131 488.292 507.405 487.599C512.845 473.809 518.866 460.23 525.462 446.91C527.334 443.128 529.254 439.367 531.216 435.626C531.566 434.96 530.521 434.372 530.172 435.04Z" fill="#2E303D"/>
|
||||
<path d="M430.984 359.741C425.227 369.966 419.331 380.132 413.744 390.443C408.702 399.745 404.251 409.726 404.289 420.393C404.31 425.938 405.57 431.484 408.441 436.33C408.826 436.98 409.872 436.395 409.487 435.744C404.261 426.927 404.734 416.185 407.744 406.755C409.368 401.669 411.69 396.822 414.215 392.095C416.852 387.157 419.659 382.301 422.407 377.419C425.614 371.721 428.822 366.022 432.029 360.325C432.399 359.67 431.354 359.083 430.984 359.741Z" fill="#2E303D"/>
|
||||
<path d="M461.758 371.847C455.218 386.022 448.678 400.197 442.138 414.372C440.545 417.826 438.951 421.279 437.358 424.732C434.91 410.605 433.861 396.26 434.268 381.944C434.389 377.694 434.638 373.449 435.01 369.213C435.075 368.47 433.864 368.473 433.8 369.213C432.48 384.276 432.742 399.459 434.602 414.469C435.111 418.578 435.74 422.671 436.481 426.746C436.476 426.853 436.502 426.95 436.55 427.04C436.615 427.228 436.753 427.331 436.919 427.36C437.162 427.452 437.439 427.406 437.577 427.107C437.582 427.098 437.586 427.087 437.591 427.078C437.628 427.022 437.661 426.961 437.677 426.893C444.184 412.789 450.69 398.686 457.197 384.582C459.066 380.532 460.933 376.482 462.802 372.433C463.115 371.757 462.072 371.165 461.758 371.847Z" fill="#2E303D"/>
|
||||
<path d="M418.064 476.641C409.484 477.447 400.903 478.253 392.324 479.059C391.555 479.131 391.548 480.292 392.324 480.219C400.904 479.413 409.485 478.607 418.064 477.801C418.833 477.729 418.841 476.569 418.064 476.641Z" fill="#2E303D"/>
|
||||
<path d="M298.374 478.795C291.156 480.985 283.702 482.44 276.16 483.083C275.295 483.157 274.429 483.22 273.563 483.273C272.835 483.317 272.082 483.399 271.361 483.257C270.809 483.146 270.193 482.895 270.23 482.257C270.278 481.466 271.328 480.726 271.872 480.232C274.354 477.977 277.016 475.91 279.834 474.052C283.02 471.95 286.394 470.122 289.908 468.575C290.615 468.263 290 467.263 289.297 467.573C282.462 470.584 276.159 474.682 270.729 479.674C269.711 480.61 268.379 481.996 269.355 483.405C270.056 484.415 271.55 484.53 272.695 484.485C276.788 484.323 280.894 483.815 284.928 483.144C289.588 482.369 294.187 481.285 298.696 479.916C299.435 479.689 299.119 478.569 298.374 478.795Z" fill="#2E303D"/>
|
||||
<path d="M261.878 478.839C260.287 473.717 260.265 468.267 261.82 463.134C262.038 462.416 260.87 462.109 260.653 462.826C259.041 468.148 259.06 473.835 260.711 479.147C260.933 479.862 262.101 479.558 261.878 478.839Z" fill="#2E303D"/>
|
||||
<path d="M257.322 461.26C257.012 461.083 256.691 461.221 256.494 461.468C254.24 464.288 252.703 467.607 252.025 471.1C251.883 471.83 253.05 472.143 253.192 471.409C253.854 467.999 255.339 464.807 257.538 462.053C257.739 461.803 257.578 461.407 257.322 461.26Z" fill="#2E303D"/>
|
||||
<path d="M443.651 358.197C440.155 361.514 436.873 365.032 433.821 368.731C433.343 369.311 434.194 370.136 434.677 369.551C437.728 365.852 441.011 362.334 444.507 359.017C445.061 358.491 444.205 357.671 443.651 358.197Z" fill="#2E303D"/>
|
||||
<path d="M463.843 374.613C461.79 367.992 458.222 361.874 453.421 356.723C452.901 356.165 452.048 356.987 452.566 357.543C457.226 362.544 460.684 368.496 462.676 374.922C462.897 375.635 464.066 375.331 463.843 374.613Z" fill="#2E303D"/>
|
||||
<path d="M446.538 376.134C446.506 375.39 445.294 375.386 445.328 376.134C445.557 381.276 445.787 386.417 446.017 391.559C446.049 392.302 447.261 392.307 447.227 391.559C446.997 386.417 446.767 381.276 446.538 376.134Z" fill="#2E303D"/>
|
||||
<path d="M450.918 379.093C450.584 378.433 449.681 378.072 448.964 378.341C448.748 378.422 448.554 378.548 448.383 378.698C448.363 378.715 448.336 378.722 448.318 378.742C448.283 378.781 448.267 378.831 448.236 378.871C448.179 378.938 448.106 378.993 448.064 379.071C448.041 379.112 448.041 379.16 448.022 379.203C448.005 379.241 447.997 379.281 447.984 379.32C447.936 379.463 447.902 379.604 447.897 379.754C447.897 379.77 447.887 379.785 447.887 379.801C447.887 379.843 447.908 379.88 447.91 379.922C447.919 380.017 447.907 380.112 447.934 380.205C447.945 380.242 447.973 380.271 447.986 380.307C448.012 380.375 448.051 380.436 448.084 380.501C448.14 380.604 448.196 380.703 448.275 380.792C448.291 380.812 448.299 380.837 448.317 380.857C448.358 380.9 448.417 380.923 448.465 380.96C448.525 381.01 448.571 381.075 448.64 381.115C448.667 381.132 448.702 381.132 448.73 381.147C448.807 381.185 448.892 381.204 448.974 381.23C449.075 381.262 449.168 381.305 449.274 381.316C449.657 381.369 450.055 381.303 450.369 381.088C450.688 380.867 450.925 380.566 451.032 380.199C451.142 379.823 451.094 379.439 450.918 379.093Z" fill="#2E303D"/>
|
||||
<path d="M142.207 481.758L138.612 510.151L200.525 506.498V518.328L110.349 528.001L85.8989 510.151L113.787 446.905L123.809 424.172L148.707 430.412L145.584 455.128L142.207 481.758Z" fill="#8E8E8E"/>
|
||||
<path d="M175.287 267.151L217.131 476.086H199.181L157.119 267.151H175.287Z" fill="#8E8E8E"/>
|
||||
<path d="M200.525 506.498L138.613 510.151L142.208 481.758L200.525 506.498Z" fill="#B7B7B7"/>
|
||||
<path d="M157.119 267.151L199.181 476.086L145.584 455.128L148.707 430.412L123.809 424.172L113.787 446.905L109.345 445.095L60.8799 267.151H157.119Z" fill="#B7B7B7"/>
|
||||
<path d="M190.349 429.66C188.028 416.579 185.646 403.508 183.204 390.448C180.749 377.322 178.232 364.206 175.654 351.102C173.089 338.063 170.464 325.034 167.777 312.019C165.091 299.002 162.343 285.996 159.536 273.004C159.185 271.38 158.833 269.755 158.481 268.132C158.322 267.401 157.156 267.711 157.314 268.441C160.136 281.431 162.899 294.433 165.601 307.446C168.302 320.46 170.943 333.485 173.523 346.522C176.115 359.624 178.648 372.736 181.117 385.859C183.575 398.917 185.972 411.986 188.308 425.065C190.644 438.143 192.919 451.232 195.133 464.329C195.41 465.967 195.685 467.603 195.961 469.241C196.085 469.976 197.252 469.664 197.128 468.933C194.929 455.832 192.67 442.741 190.349 429.66Z" fill="#2E303D"/>
|
||||
<path d="M141.231 429.915C137.549 442.493 133.72 455.031 129.739 467.525C125.772 479.973 121.658 492.378 117.397 504.737C114.986 511.729 112.528 518.704 110.025 525.666C109.771 526.373 110.94 526.677 111.192 525.974C115.634 513.624 119.931 501.226 124.079 488.782C128.211 476.383 132.196 463.939 136.032 451.454C138.202 444.39 140.324 437.314 142.398 430.225C142.609 429.503 141.442 429.196 141.231 429.915Z" fill="#2E303D"/>
|
||||
</svg>
|
After Width: | Height: | Size: 33 KiB |
155
public/assets-login-landing/img/login.svg
Normal file
@ -0,0 +1,155 @@
|
||||
<svg width="630" height="428" viewBox="0 0 630 428" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M88.6621 392.713C98.4511 378.729 88.6621 353.558 88.6621 353.558L79.5721 373.179C80.2711 363.434 71.8811 338.875 71.8811 338.875C66.9871 347.265 63.4911 378.03 63.4911 378.03C59.9951 356.355 45.3121 324.28 45.3121 324.28C41.1171 339.051 45.3121 375.234 45.3121 375.234L26.0841 350.762C25.7341 370.339 38.3201 406.348 38.3201 406.348L13.8481 390.616C20.8401 410.193 31.3281 422.08 31.3281 422.08H92.1581C106.142 409.495 102.646 378.031 102.646 378.031C92.8571 393.412 88.6621 392.713 88.6621 392.713Z" fill="#489896"/>
|
||||
<path d="M554.606 405.368C554.606 405.368 567.975 367.118 567.603 346.322L547.178 372.317C547.178 372.317 551.634 333.882 547.178 318.192C547.178 318.192 531.581 352.264 527.867 375.288C527.867 375.288 524.153 342.609 518.954 333.696C518.954 333.696 510.041 359.784 510.784 370.136L501.129 349.293C501.129 349.293 490.731 376.031 501.129 390.885C501.129 390.885 496.673 391.628 486.275 375.288C486.275 375.288 482.561 408.71 497.416 422.079H562.032C562.032 422.079 573.173 409.453 580.6 388.657L554.606 405.368Z" fill="#489896"/>
|
||||
<path d="M518.797 118.317H423.755V218.883H518.797V118.317Z" fill="#F5FFFA"/>
|
||||
<path d="M489.842 128.798H505.923C505.923 128.798 506.889 150.051 510.429 153.56H493.694C493.694 153.56 488.887 141.077 489.842 128.798Z" fill="#009C98"/>
|
||||
<path d="M489.842 158.204H505.923C505.923 158.204 506.889 179.457 510.429 182.966H493.694C493.694 182.966 488.887 170.483 489.842 158.204Z" fill="#009C98"/>
|
||||
<path d="M400.421 222.61H92.1609C87.2989 222.61 83.3569 218.668 83.3569 213.806V33.83C83.3569 28.968 87.2979 25.026 92.1609 25.026H400.421C405.283 25.026 409.225 28.968 409.225 33.83V213.806C409.225 218.668 405.284 222.61 400.421 222.61Z" fill="#E2E2E2"/>
|
||||
<path d="M83.3579 44.709L409.225 51.186V33.526L83.3579 44.709Z" fill="#036D6A"/>
|
||||
<path d="M309.851 130.219H296.934V217.511H309.851V130.219Z" fill="white"/>
|
||||
<path d="M331.683 116.702H318.766V217.511H331.683V116.702Z" fill="white"/>
|
||||
<path d="M357.641 90.6331H344.724V217.51H357.641V90.6331Z" fill="white"/>
|
||||
<path d="M388.074 64.704H375.157V217.51H388.074V64.704Z" fill="white"/>
|
||||
<path d="M222.341 130.219C243.11 130.219 259.947 113.382 259.947 92.613C259.947 71.8438 243.11 55.007 222.341 55.007C201.572 55.007 184.735 71.8438 184.735 92.613C184.735 113.382 201.572 130.219 222.341 130.219Z" fill="white"/>
|
||||
<path d="M259.947 92.613C259.947 77.16 250.623 63.89 237.297 58.106L222.341 92.613L240.752 125.401C252.206 118.956 259.947 106.691 259.947 92.613Z" fill="white"/>
|
||||
<path d="M359.857 69.973C359.849 69.938 359.845 69.904 359.834 69.871C359.829 69.856 359.829 69.84 359.824 69.824C359.79 69.737 359.743 69.659 359.688 69.588C359.685 69.583 359.683 69.578 359.68 69.573C359.61 69.485 359.522 69.415 359.427 69.356C359.399 69.339 359.369 69.328 359.339 69.313C359.262 69.276 359.182 69.25 359.096 69.234C359.075 69.23 359.058 69.217 359.036 69.214C359.021 69.212 359.007 69.219 358.992 69.218C358.969 69.216 358.948 69.208 358.925 69.208H348.226C347.692 69.208 347.261 69.64 347.261 70.173C347.261 70.706 347.693 71.138 348.226 71.138H356.443L327.849 97.352C327.122 96.784 326.219 96.432 325.225 96.432C324.336 96.432 323.51 96.703 322.825 97.167L310.921 84.739C311.074 84.299 311.174 83.833 311.174 83.34C311.174 80.972 309.255 79.053 306.887 79.053C304.519 79.053 302.6 80.972 302.6 83.34C302.6 85.218 303.815 86.796 305.495 87.376L300.723 106.459C298.593 106.709 296.935 108.499 296.935 110.696C296.935 111.032 296.983 111.355 297.056 111.669L255.972 138.764C255.526 139.058 255.404 139.656 255.697 140.101C255.883 140.383 256.191 140.535 256.504 140.535C256.686 140.535 256.871 140.484 257.034 140.376L297.926 113.409C298.712 114.363 299.888 114.984 301.221 114.984C303.589 114.984 305.508 113.065 305.508 110.697C305.508 108.836 304.315 107.268 302.658 106.675L307.435 87.573C308.37 87.452 309.212 87.045 309.857 86.422L321.519 98.598C321.158 99.226 320.936 99.944 320.936 100.72C320.936 103.088 322.855 105.007 325.223 105.007C327.591 105.007 329.51 103.088 329.51 100.72C329.51 100.048 329.342 99.421 329.067 98.855L357.666 72.636L356.68 81.138C356.619 81.668 356.998 82.147 357.528 82.208C357.566 82.213 357.604 82.215 357.64 82.215C358.124 82.215 358.541 81.853 358.598 81.361L359.882 70.285C359.884 70.264 359.876 70.245 359.877 70.223C359.883 70.14 359.875 70.057 359.857 69.973Z" fill="white"/>
|
||||
<path d="M400.421 44.709H92.1609C87.2989 44.709 83.3569 40.767 83.3569 35.905V33.83C83.3569 28.968 87.2979 25.026 92.1609 25.026H400.421C405.283 25.026 409.225 28.968 409.225 33.83V35.905C409.225 40.767 405.284 44.709 400.421 44.709Z" fill="#009C98"/>
|
||||
<path d="M306.588 33.526H213.306C209.562 33.526 206.527 30.491 206.527 26.747C206.527 23.003 209.562 19.968 213.306 19.968H306.588C310.332 19.968 313.367 23.003 313.367 26.747C313.367 30.491 310.332 33.526 306.588 33.526Z" fill="#028481"/>
|
||||
<path d="M423.755 71.149C423.755 69.615 423.755 68.08 423.755 66.546C423.818 65.994 423.882 65.442 423.943 64.89C424.883 56.438 428.111 48.981 433.808 42.66C439.857 35.948 447.351 31.758 456.268 30.179C457.746 29.918 459.244 29.769 460.732 29.568C462.266 29.568 463.801 29.568 465.335 29.568C465.532 29.611 465.728 29.68 465.927 29.694C472.071 30.128 477.819 31.884 483.064 35.099C493.239 41.336 499.504 50.326 501.701 62.089C501.976 63.561 502.112 65.059 502.313 66.546C502.313 68.08 502.313 69.615 502.313 71.149C502.25 71.701 502.186 72.253 502.125 72.805C501.185 81.257 497.957 88.714 492.26 95.035C486.211 101.747 478.717 105.937 469.8 107.516C468.322 107.778 466.824 107.926 465.336 108.127C463.802 108.127 462.267 108.127 460.733 108.127C460.536 108.084 460.34 108.015 460.141 108.001C453.997 107.567 448.248 105.811 443.004 102.596C432.829 96.359 426.564 87.369 424.367 75.606C424.092 74.134 423.955 72.635 423.755 71.149ZM496.213 68.858C496.227 50.564 481.388 35.708 463.064 35.669C444.793 35.63 429.92 50.468 429.856 68.799C429.792 87.085 444.727 102.038 463.043 102.027C481.354 102.015 496.199 87.17 496.213 68.858Z" fill="#009C98"/>
|
||||
<path d="M459.98 59.953C459.981 56.962 459.955 53.97 459.989 50.979C460.015 48.674 462.111 47.21 464.156 48.015C465.398 48.504 466.086 49.624 466.087 51.205C466.092 56.267 466.117 61.33 466.063 66.392C466.054 67.297 466.35 67.81 467.055 68.327C470.332 70.729 473.565 73.192 476.819 75.626C477.95 76.472 478.486 77.566 478.134 78.964C477.607 81.054 475.238 81.919 473.437 80.676C472.302 79.893 471.22 79.032 470.116 78.205C467.314 76.105 464.534 73.975 461.703 71.916C460.496 71.038 459.945 69.953 459.968 68.468C460.011 65.629 459.98 62.791 459.98 59.953Z" fill="#009C98"/>
|
||||
<path d="M629.496 422.335C629.496 424.959 488.579 427.086 314.748 427.086C140.917 427.086 0 424.959 0 422.335C0 419.711 140.917 417.584 314.748 417.584C488.579 417.584 629.496 419.711 629.496 422.335Z" fill="#009C98"/>
|
||||
<path d="M45.844 251.184C51.3192 249.044 54.0227 242.87 51.8823 237.395C49.742 231.92 43.5683 229.216 38.093 231.357C32.6178 233.497 29.9143 239.671 32.0547 245.146C34.1951 250.621 40.3687 253.325 45.844 251.184Z" stroke="#009C98" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M568.79 156.867C572.988 156.867 576.391 153.464 576.391 149.266C576.391 145.068 572.988 141.665 568.79 141.665C564.592 141.665 561.189 145.068 561.189 149.266C561.189 153.464 564.592 156.867 568.79 156.867Z" stroke="#009C98" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M80.1518 10.248C82.7056 10.248 84.7758 8.17776 84.7758 5.624C84.7758 3.07024 82.7056 1 80.1518 1C77.5981 1 75.5278 3.07024 75.5278 5.624C75.5278 8.17776 77.5981 10.248 80.1518 10.248Z" stroke="#009C98" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M562.122 262.174C566.215 260.279 567.998 255.425 566.103 251.331C564.208 247.238 559.353 245.456 555.26 247.351C551.167 249.246 549.385 254.1 551.28 258.193C553.174 262.287 558.029 264.069 562.122 262.174Z" stroke="#009C98" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M121.987 405.928L127.825 365.178L108.572 363.657L106.139 405.928C106.139 405.928 112.604 412.952 121.987 405.928Z" fill="#FC8D60"/>
|
||||
<path d="M81.146 421.589H126.246C126.246 421.589 126.827 408.056 121.988 405.928C117.149 403.799 110.023 408.912 107.604 404.807C105.184 400.702 96.928 410.163 90.489 412.151C84.049 414.139 81.146 412.466 81.146 421.589Z" fill="#462D4B"/>
|
||||
<path d="M101.931 411.188C98.5911 407.115 96.1501 408.643 96.0471 408.708C95.8391 408.845 95.7811 409.121 95.9141 409.333C96.0481 409.544 96.3281 409.607 96.5401 409.476C96.6171 409.43 98.4391 408.37 101.224 411.768C101.314 411.878 101.445 411.935 101.577 411.935C101.679 411.935 101.781 411.901 101.866 411.832C102.062 411.671 102.091 411.384 101.931 411.188Z" fill="#462D4B"/>
|
||||
<path d="M93.1231 410.526C92.8741 410.564 92.7041 410.797 92.7421 411.045C92.7801 411.293 93.0091 411.466 93.2621 411.427C93.4181 411.404 97.1131 410.888 98.5241 413.948C98.6011 414.116 98.7661 414.214 98.9381 414.214C99.0021 414.214 99.0671 414.201 99.1291 414.172C99.3581 414.067 99.4581 413.795 99.3531 413.567C97.6511 409.877 93.1711 410.519 93.1231 410.526Z" fill="#462D4B"/>
|
||||
<path d="M106.559 397.83L122.375 403.223L122.796 399.363L106.559 397.83Z" fill="#CC665E"/>
|
||||
<path d="M160.515 405.928L154.677 365.178L173.93 363.657L176.363 405.928C176.363 405.928 169.899 412.952 160.515 405.928Z" fill="#FC8D60"/>
|
||||
<path d="M201.357 421.589H156.257C156.257 421.589 155.676 408.056 160.515 405.928C165.354 403.799 172.48 408.912 174.899 404.807C177.319 400.702 185.575 410.163 192.014 412.151C198.453 414.139 201.357 412.466 201.357 421.589Z" fill="#462D4B"/>
|
||||
<path d="M180.571 411.188C183.911 407.115 186.352 408.643 186.455 408.708C186.663 408.845 186.721 409.121 186.588 409.333C186.454 409.544 186.174 409.607 185.962 409.476C185.885 409.43 184.063 408.37 181.278 411.768C181.188 411.878 181.057 411.935 180.925 411.935C180.823 411.935 180.721 411.901 180.635 411.832C180.44 411.671 180.412 411.384 180.571 411.188Z" fill="#462D4B"/>
|
||||
<path d="M189.379 410.526C189.628 410.564 189.798 410.797 189.76 411.045C189.722 411.293 189.493 411.466 189.241 411.427C189.085 411.404 185.39 410.888 183.979 413.948C183.902 414.116 183.737 414.214 183.565 414.214C183.501 414.214 183.436 414.201 183.374 414.172C183.145 414.067 183.045 413.795 183.15 413.567C184.851 409.877 189.332 410.519 189.379 410.526Z" fill="#462D4B"/>
|
||||
<path d="M159.979 402.186L175.882 397.571L159.355 397.83L159.979 402.186Z" fill="#CC665E"/>
|
||||
<path d="M110.549 239.811L98.8862 388.706C98.5242 393.332 101.939 397.394 106.56 397.831L122.797 399.364C127.468 399.805 131.612 396.378 132.056 391.708L142.252 284.514L153.764 391.661C154.268 396.347 158.489 399.729 163.172 399.198L174.162 397.951C178.65 397.442 181.956 393.511 181.688 389.002L172.815 239.81H110.549V239.811Z" fill="#08605E"/>
|
||||
<path d="M140.5 245.703V284.514C140.5 284.79 140.724 285.014 141 285.014C141.276 285.014 141.5 284.79 141.5 284.514V271.239L145.509 267.387C145.601 267.299 145.655 267.179 145.662 267.053L146.769 245.703H173.164L172.702 239.811H110.437L110.087 245.703H140.5ZM141.5 245.703H145.768L144.674 266.803L141.5 269.853V245.703Z" fill="#132442"/>
|
||||
<path d="M147.205 128.783C147.205 128.783 146.171 137.672 151.474 142.917C156.777 148.162 155.903 175.559 145.753 171.047C135.603 166.535 124.156 135.049 124.156 135.049C124.156 135.049 130.32 127.268 130.662 120.667C131.005 114.066 147.783 122.86 147.205 128.783Z" fill="#FFC4B0"/>
|
||||
<path d="M129.632 125.321C130.185 123.78 130.583 122.193 130.662 120.667C131.004 114.066 147.782 122.86 147.205 128.784C147.205 128.784 139.844 131.328 129.632 125.321Z" fill="#AA4E49"/>
|
||||
<path d="M120.283 115.553C117 111.599 116.075 106.952 118.216 105.174C120.357 103.396 124.755 105.161 128.037 109.115C128.062 109.146 128.084 109.177 128.109 109.207C131.226 113.013 132.159 117.424 130.292 119.305C130.229 119.368 130.172 119.437 130.103 119.494C127.963 121.272 123.566 119.507 120.283 115.553Z" fill="#FFC4B0"/>
|
||||
<path d="M157.185 100.714C157.185 100.714 156.737 106.813 158.062 111.508C159.388 116.203 155.374 124.64 151.184 127.631C146.994 130.623 136.85 127.258 132.858 124.263C128.866 121.269 125.067 112.628 124.265 108.581C123.463 104.534 127.044 87.387 138.957 87.456C150.869 87.527 157.604 90.361 157.185 100.714Z" fill="#FFC4B0"/>
|
||||
<path d="M144.189 121.176C145.758 121.536 148.372 122.466 149.587 120.902C149.978 120.4 149.275 119.687 148.88 120.196C147.952 121.389 145.657 120.489 144.454 120.212C143.827 120.067 143.561 121.031 144.189 121.176Z" fill="#462D4B"/>
|
||||
<path d="M134.978 105.8C135.275 104.486 136.258 103.165 137.663 102.97C138.3 102.882 138.028 101.919 137.397 102.006C135.673 102.244 134.379 103.919 134.014 105.534C133.872 106.163 134.836 106.429 134.978 105.8Z" fill="#462D4B"/>
|
||||
<path d="M149.798 102.738C151.086 102.342 152.721 102.538 153.589 103.66C153.982 104.169 154.682 103.455 154.293 102.95C153.229 101.573 151.132 101.283 149.55 101.769C148.933 101.959 149.182 102.927 149.798 102.738Z" fill="#462D4B"/>
|
||||
<path d="M141.684 112.171C141.259 111.898 140.78 111.415 141.208 110.933C141.006 110.959 140.804 110.985 140.602 111.011C141.121 111.351 141.445 112.008 141.239 112.615C141.4 112.492 141.56 112.37 141.721 112.248C141.177 112.219 141.352 110.935 141.355 110.58C141.144 110.741 140.933 110.901 140.722 111.062C141.151 111.178 141.618 111.886 141.223 112.25C140.747 112.688 141.456 113.393 141.93 112.957C142.895 112.068 142.127 110.404 140.988 110.098C140.673 110.013 140.357 110.254 140.355 110.58C140.348 111.642 140.307 113.171 141.721 113.248C141.951 113.261 142.134 113.084 142.203 112.881C142.556 111.842 141.982 110.722 141.107 110.149C140.928 110.032 140.644 110.067 140.501 110.227C139.609 111.232 140.167 112.384 141.179 113.036C141.723 113.384 142.224 112.518 141.684 112.171Z" fill="#462D4B"/>
|
||||
<path d="M151.629 111.091C151.204 110.818 150.725 110.335 151.153 109.853C150.951 109.879 150.749 109.905 150.547 109.931C151.066 110.271 151.39 110.928 151.184 111.535C151.345 111.412 151.505 111.29 151.666 111.168C151.122 111.139 151.297 109.855 151.3 109.5C151.089 109.661 150.878 109.821 150.667 109.982C151.096 110.098 151.563 110.806 151.168 111.17C150.692 111.608 151.401 112.313 151.875 111.877C152.84 110.988 152.072 109.324 150.933 109.018C150.618 108.933 150.302 109.174 150.3 109.5C150.293 110.562 150.252 112.091 151.666 112.168C151.896 112.181 152.079 112.004 152.148 111.801C152.501 110.762 151.927 109.642 151.052 109.069C150.873 108.952 150.589 108.987 150.446 109.147C149.554 110.152 150.112 111.304 151.124 111.956C151.668 112.304 152.169 111.438 151.629 111.091Z" fill="#462D4B"/>
|
||||
<path d="M158.91 81.462C159.948 80.146 160.572 78.488 160.572 76.681C160.572 72.409 157.109 68.946 152.837 68.946C149.971 68.946 147.476 70.508 146.139 72.824C145.913 68.755 142.552 65.523 138.426 65.523C136.21 65.523 134.218 66.46 132.808 67.952C132.135 67.761 131.426 67.652 130.691 67.652C127.632 67.652 124.996 69.432 123.741 72.009C119.664 72.227 116.423 75.592 116.423 79.723C116.423 80.079 116.455 80.426 116.502 80.769C114.195 82.108 112.639 84.598 112.639 87.458C112.639 89.646 113.551 91.618 115.012 93.025C113.551 94.432 112.639 96.404 112.639 98.592C112.639 102.864 116.102 106.327 120.374 106.327C120.91 106.327 121.433 106.271 121.938 106.166C123.159 110.056 126.192 119.133 127.031 116.138C127.787 113.442 127.463 107.405 127.217 104.171C130.86 103.896 133.792 101.101 134.284 97.522C134.788 97.625 135.31 97.68 135.845 97.68C137.595 97.68 139.203 97.092 140.499 96.113C141.911 97.635 143.923 98.593 146.163 98.593C148.729 98.593 150.996 97.339 152.403 95.415C153.544 96.078 154.866 96.464 156.28 96.464C160.552 96.464 164.015 93.001 164.015 88.729C164.013 85.381 161.884 82.54 158.91 81.462Z" fill="#272B34"/>
|
||||
<path d="M217.684 173.978C217.684 173.978 213.188 170.748 214.676 161.016C216.164 151.285 217.016 155.712 217.584 158.663C218.152 161.614 219.976 165.016 222.684 160.289C225.392 155.563 233.346 142.243 231.924 148.056C230.502 153.869 227.589 157.882 227.589 157.882C227.589 157.882 238.2 142.306 236.855 147.946C235.51 153.586 230.566 159.611 230.566 159.611C230.566 159.611 239.187 148.159 238.704 151.374C238.221 154.589 233.856 162.516 233.856 162.516C233.856 162.516 240.324 156.332 238.743 160.621C237.162 164.911 226.794 181.113 217.684 173.978Z" fill="#FFC4B0"/>
|
||||
<path d="M128.108 128.798C128.108 128.798 110.32 136.036 105.759 139.229C101.198 142.422 84.7759 199.213 84.7759 202.635C84.7759 206.056 97.5479 226.127 101.654 224.987C105.759 223.847 110.549 223.341 110.549 223.341L108.585 237.524C108.418 238.733 109.357 239.812 110.578 239.812H173.847C175.015 239.812 175.937 238.821 175.854 237.657L173.271 201.412C173.271 201.412 189.236 223.162 194.482 220.882C199.728 218.601 227.781 178.231 227.781 178.231L211.359 165.231L191.516 187.354C191.516 187.354 172.814 141.282 170.077 138.773C167.34 136.264 147.127 130.22 147.127 130.22C147.127 130.22 146.014 147.669 145.444 148.923C144.875 150.176 128.108 128.798 128.108 128.798Z" fill="#A4CDBB"/>
|
||||
<path d="M145.445 148.922L142.252 154.206L144.722 156.867L141.239 218.752L149.512 230.612L154.677 218.448L147.22 156.867L148.792 154.573L145.445 148.922Z" fill="#413F72"/>
|
||||
<path d="M128.108 128.798L131.251 147.896L145.102 148.868L133.053 146.223L128.108 128.798Z" fill="black"/>
|
||||
<path d="M151.451 143.942L145.445 148.922L153.58 143.942L147.128 130.219L151.451 143.942Z" fill="black"/>
|
||||
<path d="M137.31 198.974L110.549 223.34L139.417 200.658L138.426 196.4L144.304 195.411L145.102 193.663L136.18 195.115L137.31 198.974Z" fill="black"/>
|
||||
<path d="M108.42 191.534L109.485 158.691L105.379 193.663L96.4077 199.745L131.251 181.719L108.42 191.534Z" fill="black"/>
|
||||
<path d="M168.937 156.867L173.27 201.411L175.668 204.546L168.937 156.867Z" fill="black"/>
|
||||
<path d="M147.555 182.165C148.69 181.773 152.682 180.252 156.611 177.052C161.252 173.273 146.873 179.099 141.862 181.235C136.851 183.371 137.448 179.558 138.775 176.862C140.102 174.165 142.093 170.121 135.036 176.985C133.295 178.678 132.087 180.274 131.249 181.72L136.178 195.116C142.714 196.464 151.858 192.861 154.469 191.187C158.317 188.719 149.428 189.751 149.428 189.751C149.428 189.751 157.691 186.061 160.016 183.788C161.878 181.967 153.405 184.129 149.961 185.061C152.36 184.349 157.319 182.649 160.609 179.938C164.73 176.544 149.932 181.376 147.555 182.165Z" fill="#FFC4B0"/>
|
||||
<path d="M431.523 415.056L402.51 289.333C401.951 286.913 399.796 285.199 397.313 285.199C396.162 285.199 395.116 285.564 394.258 286.168C393.399 285.564 392.353 285.199 391.203 285.199C388.719 285.199 386.564 286.913 386.006 289.333L356.992 415.056C356.221 418.398 358.759 421.589 362.189 421.589C364.673 421.589 366.828 419.875 367.386 417.455L394.257 301.013L421.128 417.455C421.687 419.875 423.841 421.589 426.325 421.589C429.756 421.589 432.294 418.398 431.523 415.056Z" fill="#769989"/>
|
||||
<path d="M471.745 328.621H471.463C469.484 328.621 467.426 330.225 466.865 332.203L442.537 418.006C441.976 419.984 443.125 421.588 445.104 421.588H445.387C447.366 421.588 449.424 419.984 449.985 418.006L474.313 332.203C474.872 330.225 473.723 328.621 471.745 328.621Z" fill="#009C98"/>
|
||||
<path d="M426.623 328.621H426.34C424.361 328.621 422.303 330.225 421.742 332.203L397.414 418.006C396.853 419.984 398.002 421.588 399.981 421.588H400.263C402.241 421.588 404.3 419.984 404.861 418.006L429.189 332.203C429.75 330.225 428.601 328.621 426.623 328.621Z" fill="#009C98"/>
|
||||
<path d="M524.003 418.007L499.675 332.204C499.114 330.225 497.055 328.622 495.077 328.622H494.794C492.815 328.622 491.666 330.226 492.227 332.204L516.555 418.007C517.116 419.985 519.175 421.589 521.153 421.589H521.435C523.415 421.589 524.564 419.985 524.003 418.007Z" fill="#009C98"/>
|
||||
<path d="M428.677 405.928L422.711 377.228H403.896L413.072 403.852C413.072 403.852 416.966 414.101 428.677 405.928Z" fill="#FFC8AF"/>
|
||||
<path d="M388.987 421.589H434.087C434.087 421.589 434.668 408.056 429.829 405.928C424.99 403.799 417.864 408.912 415.445 404.807C413.026 400.702 404.769 410.163 398.33 412.151C391.891 414.139 388.987 412.466 388.987 421.589Z" fill="#462D4B"/>
|
||||
<path d="M411.219 398.479L426.611 395.992L425.813 392.152L411.219 398.479Z" fill="#B1605A"/>
|
||||
<path d="M407.128 412.436C404.568 408.547 401.313 410.308 401.281 410.324C401.061 410.447 400.983 410.725 401.105 410.945C401.228 411.166 401.507 411.242 401.726 411.121C401.829 411.062 404.266 409.748 406.365 412.939C406.453 413.072 406.598 413.144 406.746 413.144C406.832 413.144 406.92 413.12 406.997 413.069C407.208 412.929 407.266 412.647 407.128 412.436Z" fill="#462D4B"/>
|
||||
<path d="M399.118 411.404C398.867 411.425 398.681 411.646 398.703 411.897C398.724 412.148 398.936 412.333 399.197 412.313C399.236 412.309 403.299 412.003 404.662 414.867C404.74 415.031 404.904 415.127 405.074 415.127C405.14 415.127 405.207 415.113 405.27 415.083C405.497 414.975 405.594 414.703 405.486 414.475C403.848 411.036 399.313 411.384 399.118 411.404Z" fill="#462D4B"/>
|
||||
<path d="M452.7 405.928L446.734 377.228H427.919L437.095 403.852C437.095 403.852 440.989 414.101 452.7 405.928Z" fill="#FFC8AF"/>
|
||||
<path d="M413.302 421.589H458.402C458.402 421.589 458.983 408.056 454.144 405.928C449.305 403.799 442.179 408.912 439.76 404.807C437.34 400.702 429.084 410.163 422.645 412.151C416.205 414.139 413.302 412.466 413.302 421.589Z" fill="#462D4B"/>
|
||||
<path d="M433.734 394.1H450.242L449.534 390.695L433.734 394.1Z" fill="#B1605A"/>
|
||||
<path d="M434.087 411.188C430.747 407.115 428.306 408.643 428.203 408.708C427.995 408.845 427.937 409.121 428.07 409.333C428.204 409.544 428.484 409.607 428.696 409.476C428.774 409.43 430.596 408.37 433.381 411.768C433.471 411.878 433.602 411.935 433.734 411.935C433.836 411.935 433.938 411.901 434.023 411.832C434.218 411.671 434.247 411.384 434.087 411.188Z" fill="#462D4B"/>
|
||||
<path d="M425.28 410.526C425.032 410.564 424.861 410.797 424.899 411.045C424.937 411.293 425.166 411.466 425.418 411.427C425.574 411.404 429.269 410.888 430.68 413.948C430.757 414.116 430.922 414.214 431.094 414.214C431.158 414.214 431.223 414.201 431.285 414.172C431.514 414.067 431.614 413.795 431.509 413.567C429.807 409.877 425.327 410.519 425.28 410.526Z" fill="#462D4B"/>
|
||||
<path d="M521.696 235.478C521.696 235.478 491.24 219.989 467.315 243.927C443.391 267.865 437.811 333.612 447.9 338.599C447.9 338.599 506.645 328.381 513.031 316.217C519.417 304.053 527.928 249.01 521.696 235.478Z" fill="#009C98"/>
|
||||
<path d="M454.255 194.886C454.255 194.886 455.289 203.775 449.986 209.02C444.683 214.266 445.557 241.662 455.707 237.15C465.856 232.638 477.304 201.152 477.304 201.152C477.304 201.152 471.14 193.371 470.798 186.77C470.456 180.169 453.678 188.963 454.255 194.886Z" fill="#FF9A8F"/>
|
||||
<path d="M471.828 191.424C471.275 189.883 470.877 188.296 470.798 186.77C470.456 180.169 453.678 188.963 454.255 194.887C454.255 194.887 461.617 197.43 471.828 191.424Z" fill="#B1605A"/>
|
||||
<path d="M481.178 181.656C484.461 177.702 485.386 173.055 483.245 171.277C481.104 169.499 476.706 171.263 473.424 175.218C473.399 175.248 473.377 175.28 473.352 175.31C470.235 179.116 469.302 183.527 471.169 185.408C471.232 185.471 471.289 185.54 471.358 185.597C473.497 187.374 477.895 185.61 481.178 181.656Z" fill="#FF9A8F"/>
|
||||
<path d="M444.276 166.817C444.276 166.817 444.724 172.916 443.399 177.611C442.073 182.306 446.087 190.743 450.277 193.734C454.467 196.726 464.611 193.361 468.603 190.366C472.595 187.372 476.394 178.731 477.197 174.684C477.999 170.637 474.418 153.49 462.505 153.559C450.591 153.629 443.856 156.464 444.276 166.817Z" fill="#FFC8AF"/>
|
||||
<path d="M460.689 169.807C461.755 169.676 464.114 169.936 464.517 171.169C464.715 171.775 465.695 171.568 465.493 170.954C464.884 169.091 462.167 168.622 460.474 168.83C459.835 168.908 460.054 169.885 460.689 169.807Z" fill="#462D4B"/>
|
||||
<path d="M446.765 169.494C447.741 169.045 450.067 168.575 450.825 169.626C451.199 170.144 452.069 169.648 451.69 169.125C450.543 167.535 447.812 167.915 446.263 168.629C445.678 168.897 446.184 169.761 446.765 169.494Z" fill="#462D4B"/>
|
||||
<path d="M462.054 174.181C462.032 173.948 462.03 173.726 462.069 173.494C462.077 173.451 462.103 173.359 462.154 173.336C462.025 173.395 461.849 173.112 461.914 173.277C462.04 173.602 461.893 174.073 461.742 174.366C461.633 174.578 461.543 174.299 461.807 174.585C461.882 174.667 461.831 174.711 461.843 174.592C461.853 174.491 461.881 174.391 461.913 174.296C462.034 173.932 462.209 173.54 462.445 173.235C462.18 173.225 461.915 173.215 461.65 173.205C461.846 173.501 461.975 173.9 461.611 174.104C461.049 174.421 461.631 175.234 462.187 174.923C463.047 174.44 462.947 173.351 462.468 172.63C462.292 172.363 461.87 172.347 461.673 172.6C461.247 173.145 460.721 174.111 460.856 174.827C460.942 175.279 461.331 175.518 461.779 175.449C462.22 175.381 462.495 175.083 462.691 174.7C463.003 174.095 463.173 172.806 462.433 172.423C462.029 172.214 461.572 172.448 461.313 172.771C460.992 173.172 461.013 173.797 461.057 174.279C461.118 174.921 462.113 174.824 462.054 174.181Z" fill="#462D4B"/>
|
||||
<path d="M448.054 174.181C448.032 173.948 448.03 173.726 448.069 173.494C448.077 173.451 448.103 173.359 448.154 173.336C448.025 173.395 447.849 173.112 447.914 173.277C448.04 173.602 447.893 174.073 447.742 174.366C447.633 174.578 447.543 174.299 447.807 174.585C447.882 174.667 447.831 174.711 447.843 174.592C447.853 174.491 447.881 174.391 447.913 174.296C448.034 173.932 448.209 173.54 448.445 173.235C448.18 173.225 447.915 173.215 447.65 173.205C447.846 173.501 447.975 173.9 447.611 174.104C447.049 174.421 447.631 175.234 448.187 174.923C449.047 174.44 448.947 173.351 448.468 172.63C448.292 172.363 447.87 172.347 447.673 172.6C447.247 173.145 446.721 174.111 446.856 174.827C446.942 175.279 447.331 175.518 447.779 175.449C448.22 175.381 448.495 175.083 448.691 174.7C449.003 174.095 449.173 172.806 448.433 172.423C448.029 172.214 447.572 172.448 447.313 172.771C446.992 173.172 447.013 173.797 447.057 174.279C447.118 174.921 448.113 174.824 448.054 174.181Z" fill="#462D4B"/>
|
||||
<path d="M446.605 161.048C446.605 161.048 452.97 164.697 454.871 162.112C454.871 162.112 467.719 166.307 466.199 162.043C466.199 162.043 471.825 169.791 472.965 166.218C472.965 166.218 473.866 171.26 475.246 169.791C475.246 169.791 472.572 184.497 473.757 183.568C474.942 182.639 480.003 170.713 480.003 170.713C480.003 170.713 482.567 170.447 483.245 171.276C483.245 171.276 485.168 161.237 481.974 155.877C478.78 150.517 463.334 138.543 462.732 142.877C462.732 142.877 445.823 138.658 441.718 145.956C437.613 153.255 438.563 168.869 444.276 166.816C444.276 166.816 443.885 162.093 446.605 161.048Z" fill="#733F59"/>
|
||||
<path d="M451.359 187.156C452.928 187.516 455.542 188.446 456.757 186.882C457.148 186.38 456.445 185.666 456.05 186.175C455.122 187.368 452.827 186.468 451.624 186.191C450.997 186.046 450.731 187.011 451.359 187.156Z" fill="#462D4B"/>
|
||||
<path d="M501.931 292.953C501.931 292.953 503.814 318.498 484.398 322.603C464.982 326.708 446.784 331.042 446.784 331.042L455.403 389.43L428.946 395.132L427.882 391.255L408.419 399.694C408.419 399.694 385.611 329.902 384.699 323.516C383.787 317.13 383.102 311.884 396.559 304.586C410.016 297.287 432.823 287.48 432.823 287.48L501.931 292.953Z" fill="#015651"/>
|
||||
<path d="M409.027 317.434C411.892 313.267 439.224 298.285 447.016 294.067L501.98 296.374L501.93 292.953H420.489L446.21 294.033C437.01 297.559 408.632 308.992 405.072 317.129C405.072 317.129 412.066 358.943 427.88 391.254C427.88 391.254 405.682 322.299 409.027 317.434Z" fill="black"/>
|
||||
<path d="M454.057 200.321C454.057 200.321 456.638 205.358 468.451 198.807L473.82 202.862L451.64 243.926L446.964 204.331L454.057 200.321Z" fill="#FFF9EF"/>
|
||||
<path d="M457.011 202.29L458.424 208.626L456.581 209.876L458.06 220.957L452.943 235.478L449.82 223.34L454.757 209.857L454.18 208.375L457.011 202.29Z" fill="#26111C"/>
|
||||
<path d="M460.222 209.249L456.956 202.044L459.109 211.7L467.315 202.748L460.222 209.249Z" fill="#D8C4F2"/>
|
||||
<path d="M452.943 211.035L457.011 202.29C457.011 202.29 451.469 210.446 451.355 210.617C451.24 210.788 452.943 211.035 452.943 211.035Z" fill="#D8C4F2"/>
|
||||
<path d="M473.352 194.9C473.352 194.9 486.649 197.844 489.842 202.406C493.035 206.968 513.562 263.303 505.579 267.864L504.21 292.953H432.822V267.864H396.102L399.979 258.589C399.979 258.589 417.085 253.495 421.418 251.899C421.418 251.899 432.062 206.892 434.647 204.915C437.232 202.938 454.329 197.238 454.329 197.238C454.329 197.238 451.193 230.916 452.942 235.477C452.942 235.477 461.044 200.547 473.352 194.9Z" fill="#015651"/>
|
||||
<path d="M469.03 205.2L475.474 204.332L473.352 194.9L473.82 202.862L466.75 204.003L470.969 210.104L452.943 235.478L473.82 211.187L469.03 205.2Z" fill="black"/>
|
||||
<path d="M445.652 208.393L452.943 235.478L447.42 208.678L451.101 206.142L446.964 204.332L454.33 197.238L445.31 204.332L448.771 206.142L445.652 208.393Z" fill="black"/>
|
||||
<path d="M482.012 244.601L478.211 215.711V244.601L445.311 258.59C445.311 258.59 476.843 247.186 481.708 247.034C486.574 246.882 491.591 248.859 491.591 248.859C491.591 248.859 489.462 245.361 482.012 244.601Z" fill="black"/>
|
||||
<path d="M421.419 251.899C422.103 261.174 427.881 260.718 427.881 260.718C423.472 259.198 421.419 251.899 421.419 251.899Z" fill="black"/>
|
||||
<path d="M437.917 267.865L439.198 215.711L434.42 267.865H437.917Z" fill="black"/>
|
||||
<path d="M445.824 258.589L449.084 257.241V267.865H441.946L445.824 258.589Z" fill="#FFF9EF"/>
|
||||
<path d="M445.824 258.589L441.947 267.864H428.946C428.946 267.864 429.858 258.973 445.824 258.589Z" fill="#FFC8AF"/>
|
||||
<path d="M441.946 267.865H439.198L445.824 258.589L441.946 267.865Z" fill="#B1605A"/>
|
||||
<path d="M399.98 258.589L396.103 267.864H383.102C383.102 267.864 384.014 258.973 399.98 258.589Z" fill="#FFC8AF"/>
|
||||
<path d="M396.103 267.865H393.354L399.98 258.589L396.103 267.865Z" fill="#B1605A"/>
|
||||
<path d="M399.98 258.589L396.103 267.865H401.69L402.167 257.935L399.98 258.589Z" fill="#FFF9EF"/>
|
||||
<path d="M447.9 338.599C447.9 338.599 441.947 321.843 456.957 317.586C468.935 314.189 499.057 304.4 501.635 300.273C504.213 296.146 510.827 233.881 519.266 234.337C527.705 234.793 536.372 273.338 531.582 290.216C526.791 307.094 527.294 340.226 447.9 338.599Z" fill="#007C79"/>
|
||||
<path d="M158.534 415.056L129.521 289.333C128.962 286.913 126.808 285.199 124.324 285.199C123.173 285.199 122.127 285.564 121.269 286.168C120.41 285.564 119.365 285.199 118.214 285.199C115.73 285.199 113.575 286.913 113.017 289.333L84.0041 415.056C83.2331 418.398 85.7711 421.589 89.2011 421.589C91.6851 421.589 93.8401 419.875 94.3981 417.455L121.269 301.013L148.14 417.455C148.699 419.875 150.853 421.589 153.337 421.589C156.767 421.589 159.305 418.398 158.534 415.056Z" fill="#769989"/>
|
||||
<path d="M532.001 284.286H99.9419C97.3189 284.286 95.1919 282.159 95.1919 279.536V272.614C95.1919 269.991 97.3189 267.864 99.9419 267.864H532.001C534.624 267.864 536.751 269.991 536.751 272.614V279.536C536.751 282.16 534.624 284.286 532.001 284.286Z" fill="#769989"/>
|
||||
<path d="M522.23 292.953H108.04C105.647 292.953 103.706 291.013 103.706 288.62C103.706 286.227 105.646 284.287 108.04 284.287H522.23C524.623 284.287 526.563 286.227 526.563 288.62C526.563 291.013 524.623 292.953 522.23 292.953Z" fill="#769989"/>
|
||||
<path d="M225.008 284.286H99.9419C97.3189 284.286 95.1919 282.159 95.1919 279.536V272.614C95.1919 269.991 97.3189 267.864 99.9419 267.864H225.008C227.631 267.864 229.758 269.991 229.758 272.614V279.536C229.758 282.16 227.631 284.286 225.008 284.286Z" fill="#769989"/>
|
||||
<path d="M237.588 292.953H108.04C105.647 292.953 103.706 291.013 103.706 288.62C103.706 286.227 105.646 284.287 108.04 284.287H237.588C239.981 284.287 241.921 286.227 241.921 288.62C241.922 291.013 239.982 292.953 237.588 292.953Z" fill="#769989"/>
|
||||
<path d="M271.438 262.372L259.225 226.753C258.941 225.923 258.16 225.366 257.283 225.366H200.236C198.827 225.366 197.837 226.752 198.294 228.084L211.458 266.477C211.742 267.307 212.523 267.864 213.4 267.864H233.407H273.321H295.029C296.163 267.864 297.082 266.945 297.082 265.811C297.082 264.677 296.163 263.758 295.029 263.758H273.38C272.503 263.759 271.723 263.202 271.438 262.372Z" fill="#00A18F"/>
|
||||
<path d="M275.087 262.372L262.874 226.753C262.59 225.923 261.809 225.366 260.932 225.366H203.885C202.476 225.366 201.486 226.752 201.943 228.084L215.107 266.477C215.392 267.307 216.172 267.864 217.049 267.864H237.056H276.97H298.678C299.812 267.864 300.731 266.945 300.731 265.811C300.731 264.677 299.812 263.758 298.678 263.758H277.028C276.152 263.759 275.372 263.202 275.087 262.372Z" fill="#22D6BC"/>
|
||||
<path d="M268.39 263.759H220.567C219.69 263.759 218.91 263.202 218.625 262.372L207.65 230.365C207.193 229.033 208.183 227.646 209.592 227.646H257.415C258.292 227.646 259.072 228.203 259.357 229.033L270.332 261.04C270.788 262.373 269.798 263.759 268.39 263.759Z" fill="#B1F2E8"/>
|
||||
<path d="M405.191 263.689L389.48 225.969C389.232 225.374 388.651 224.986 388.006 224.986H332.107C330.968 224.986 330.195 226.145 330.633 227.196L347.163 266.882C347.411 267.477 347.992 267.865 348.637 267.865H380.702H406.931H435.213C436.095 267.865 436.809 267.15 436.809 266.268C436.809 265.386 436.094 264.672 435.213 264.672H406.666C406.02 264.672 405.439 264.284 405.191 263.689Z" fill="#22D6BC"/>
|
||||
<path d="M400.887 267.865H344.988C344.343 267.865 343.762 267.477 343.514 266.882L326.984 227.196C326.546 226.144 327.319 224.986 328.458 224.986H384.357C385.002 224.986 385.583 225.374 385.831 225.969L402.361 265.655C402.799 266.706 402.026 267.865 400.887 267.865Z" fill="#00A2A9"/>
|
||||
<path d="M268.607 409.273L272.94 385.249H286.777L280.275 406.503C280.275 406.503 277.73 423.784 268.607 409.273Z" fill="#FF9E9B"/>
|
||||
<path d="M270.637 398.021L282.205 400.195L282.797 397.944L270.637 398.021Z" fill="#E27171"/>
|
||||
<path d="M245.191 421.589H265.189L271.68 418.431L273.259 421.589H282.206C282.206 421.589 281.796 403.394 280.276 406.503C277.988 411.183 274.424 408.613 271.931 407.191C269.541 405.827 266.561 406.213 264.641 408.185C262.47 410.414 259.663 412.819 257.12 413.521C252.032 414.923 245.191 414.397 245.191 421.589Z" fill="#462D4B"/>
|
||||
<path d="M216.941 400.014L229.135 378.866L242.158 383.54L228.858 401.348C228.858 401.348 220.626 416.753 216.941 400.014Z" fill="#FF9E9B"/>
|
||||
<path d="M223.6 388.465L230.93 398.575L233.174 395.571L223.6 388.465Z" fill="#E27171"/>
|
||||
<path d="M190.741 403.696L209.563 410.451L216.739 409.672L217.158 413.177L225.579 416.199C225.579 416.199 231.339 398.936 228.859 401.348C225.124 404.98 222.638 401.357 220.772 399.176C218.983 397.085 216.048 396.442 213.575 397.649C210.779 399.014 207.325 400.329 204.693 400.13C199.432 399.733 193.171 396.926 190.741 403.696Z" fill="#462D4B"/>
|
||||
<path d="M356.853 299.837C356.853 299.837 356.437 317.738 344.719 320.17C333.001 322.603 308.977 324.123 308.977 324.123L287.556 398.02H264.578L276.742 324.731L238.729 399.694L219.266 385.249C219.266 385.249 252.109 301.19 256.975 297.971C261.841 294.752 278.262 292.193 297.801 288.62C314.852 285.501 356.853 299.837 356.853 299.837Z" fill="#004D4B"/>
|
||||
<path d="M297.801 288.62C297.801 288.62 302.731 296.451 314.749 300.556C324.88 304.017 349.32 302.094 356.746 301.404C356.838 300.429 356.853 299.837 356.853 299.837C356.853 299.837 314.852 285.501 297.801 288.62Z" fill="#004D4B"/>
|
||||
<path d="M264.578 398.021H287.556L308.977 324.124L276.742 324.732L264.578 398.021Z" fill="#004D4B"/>
|
||||
<path d="M318.556 201.411C318.556 201.411 312.398 204.076 308.977 206.662C305.556 209.248 278.187 243.927 278.187 243.927L247.396 256.311L246.484 267.865L292.328 262.553L302.363 256.311L297.802 288.62C297.802 288.62 320.838 301.849 339.54 301.164C358.242 300.48 359.611 299.111 359.611 299.111C359.611 299.111 359.155 224.986 358.471 216.775C357.787 208.564 350.944 203.769 347.979 202.29C345.013 200.81 328.135 196.159 318.556 201.411Z" fill="#57C6BF"/>
|
||||
<path d="M297.801 288.62L305.784 260.722L315.971 241.788L302.362 256.31L297.801 288.62Z" fill="#004D4B"/>
|
||||
<path d="M358.47 216.775C357.786 208.564 350.943 203.769 347.978 202.29C345.013 200.81 328.135 196.16 318.556 201.411C318.556 201.411 317.474 201.881 315.971 202.612C315.971 202.612 308.812 219.342 329.145 228.636C347.7 237.117 353.391 238.241 358.924 232.413C358.788 224.653 358.636 218.768 358.47 216.775Z" fill="#004D4B"/>
|
||||
<path d="M247.396 256.31L246.483 267.865L252.4 267.179L251.136 254.806L247.396 256.31Z" fill="#FFF9EF"/>
|
||||
<path d="M247.396 256.31C247.396 256.31 229.758 258.285 229.758 267.864H246.484L247.396 256.31Z" fill="#FF9E9B"/>
|
||||
<path d="M247.396 256.31L246.483 267.865L243.839 267.861L247.396 256.31Z" fill="#E27171"/>
|
||||
<path d="M326.197 162.637C317.191 162.637 309.889 171.317 309.889 182.024C309.889 182.243 309.91 182.456 309.917 182.673L309.902 182.68C309.902 182.68 309.912 182.77 309.928 182.924C309.953 183.569 310.003 184.205 310.08 184.832C310.174 186.425 310.212 188.524 309.89 189.749C309.398 191.619 313.128 201.017 315.972 202.613C318.74 205.189 322.409 201.412 326.197 201.412C335.203 201.412 342.504 192.732 342.504 182.025C342.504 171.318 335.203 162.637 326.197 162.637Z" fill="#FF9E9B"/>
|
||||
<path d="M312.689 181.653C313.755 181.523 316.114 181.783 316.517 183.015C316.715 183.622 317.695 183.414 317.493 182.8C316.884 180.937 314.167 180.468 312.474 180.677C311.835 180.755 312.054 181.732 312.689 181.653Z" fill="#462D4B"/>
|
||||
<path d="M314.054 186.028C314.032 185.794 314.03 185.572 314.069 185.34C314.077 185.298 314.103 185.205 314.154 185.182C314.025 185.242 313.849 184.958 313.914 185.123C314.04 185.448 313.893 185.92 313.742 186.213C313.633 186.424 313.543 186.145 313.807 186.432C313.882 186.513 313.831 186.557 313.843 186.439C313.853 186.337 313.881 186.238 313.913 186.142C314.034 185.778 314.209 185.387 314.445 185.082C314.18 185.072 313.915 185.061 313.65 185.051C313.846 185.347 313.975 185.746 313.611 185.95C313.049 186.267 313.631 187.08 314.187 186.769C315.047 186.286 314.947 185.198 314.468 184.476C314.292 184.209 313.87 184.193 313.673 184.446C313.247 184.992 312.721 185.957 312.856 186.673C312.942 187.126 313.331 187.364 313.779 187.295C314.22 187.228 314.495 186.929 314.691 186.547C315.003 185.941 315.173 184.652 314.433 184.269C314.029 184.061 313.572 184.295 313.313 184.617C312.992 185.019 313.013 185.643 313.057 186.125C313.118 186.767 314.113 186.67 314.054 186.028Z" fill="#462D4B"/>
|
||||
<path d="M311.183 195.156C311.985 195.516 313.321 196.446 313.941 194.882C314.141 194.38 313.782 193.666 313.58 194.175C313.106 195.368 311.933 194.468 311.319 194.191C310.998 194.046 310.862 195.011 311.183 195.156Z" fill="#462D4B"/>
|
||||
<path d="M310.382 177.279C310.382 177.279 305.327 173.592 308.976 166.598C312.625 159.604 321.14 153.674 328.591 155.194C336.042 156.714 341.972 158.995 345.317 169.031C348.662 179.066 350.487 185.038 356.113 194.901C361.739 204.764 364.932 227.419 356.113 232.893C347.294 238.367 321.369 224.777 317.416 215.711C313.463 206.645 318.252 188.709 318.1 184.42C317.948 180.131 315.089 174.644 313.842 172.984C312.596 171.325 310.382 177.279 310.382 177.279Z" fill="black"/>
|
||||
<path d="M344.719 167.399C341.29 158.745 335.618 156.628 328.592 155.194C327.971 155.067 327.341 155.01 326.708 154.983C326.79 155.276 330.183 166.938 344.719 167.399Z" fill="#9E3A16"/>
|
||||
<path d="M349.535 161.258C347.628 164.857 340.756 164.951 334.187 161.47C327.618 157.988 323.839 152.249 325.746 148.65C327.653 145.051 334.525 144.957 341.094 148.438C347.663 151.92 351.442 157.659 349.535 161.258Z" fill="black"/>
|
||||
<path d="M305.604 335.76C305.604 335.76 270.204 330.662 268.379 321.235C266.554 311.808 304.415 305.751 311.714 301.19C319.012 296.629 321.749 236.054 354.593 237.65C387.436 239.246 393.518 285.858 388.349 301.19C383.178 316.521 362.443 342.834 305.604 335.76Z" fill="#007C79"/>
|
||||
<path d="M383.061 418.007L358.733 332.204C358.172 330.225 356.113 328.622 354.135 328.622H353.853C351.874 328.622 350.725 330.226 351.286 332.204L375.614 418.007C376.175 419.985 378.234 421.589 380.212 421.589H380.494C382.473 421.589 383.622 419.985 383.061 418.007Z" fill="#009C98"/>
|
||||
<path d="M298.363 328.621H298.081C296.102 328.621 294.044 330.225 293.483 332.203L269.155 418.006C268.594 419.984 269.743 421.588 271.722 421.588H272.004C273.983 421.588 276.041 419.984 276.602 418.006L300.93 332.203C301.491 330.225 300.342 328.621 298.363 328.621Z" fill="#009C98"/>
|
||||
<path d="M334.372 328.621H334.089C332.111 328.621 330.052 330.225 329.491 332.203L305.163 418.006C304.602 419.984 305.751 421.588 307.73 421.588H308.012C309.991 421.588 312.049 419.984 312.61 418.006L336.938 332.203C337.5 330.225 336.35 328.621 334.372 328.621Z" fill="#009C98"/>
|
||||
<path d="M387.093 304.402C386.238 301.76 384.975 298.78 383.203 295.368C369.847 269.653 331.176 309.222 325.251 315.609C319.326 321.995 305.631 324.428 288.059 324.519C270.487 324.61 279.062 329.274 279.062 329.274V329.276C290.079 333.524 305.603 335.761 305.603 335.761C358.641 342.361 380.24 319.893 387.093 304.402Z" fill="#009C98"/>
|
||||
<path d="M573.154 346.06C580.778 349.199 592.307 338.752 598.905 322.727C605.502 306.702 604.67 291.166 597.046 288.028C589.422 284.889 577.893 295.336 571.295 311.361C564.698 327.386 565.53 342.922 573.154 346.06Z" fill="#009C98"/>
|
||||
<path d="M603.617 367.947C615.485 358.824 621.586 346.85 617.246 341.204C612.905 335.558 599.766 338.377 587.898 347.501C576.031 356.625 569.929 368.598 574.27 374.244C578.61 379.89 591.75 377.071 603.617 367.947Z" fill="#009C98"/>
|
||||
<path d="M547.476 300.399C541.299 301.305 537.834 312.565 539.738 325.549C541.642 338.534 548.193 348.325 554.37 347.42C560.547 346.515 564.012 335.254 562.109 322.27C560.204 309.285 553.653 299.493 547.476 300.399Z" fill="#009C98"/>
|
||||
<path d="M522.887 335.73C518.661 339.08 520.944 348.997 527.986 357.88C535.028 366.762 544.163 371.247 548.389 367.897C552.615 364.547 550.332 354.63 543.29 345.747C536.247 336.864 527.112 332.379 522.887 335.73Z" fill="#009C98"/>
|
||||
<path d="M615.565 341.841C615.503 341.709 615.348 341.653 615.215 341.716C615.116 341.763 609.167 344.612 600.987 350.145C600.948 350.159 600.915 350.184 600.886 350.214C597.741 352.345 594.27 354.873 590.677 357.787L590.681 347.444C590.681 347.299 590.563 347.181 590.418 347.181C590.274 347.18 590.155 347.299 590.155 347.444L590.151 358.215C587.574 360.326 584.94 362.631 582.323 365.136C577.637 369.621 573.462 374.288 569.821 379.104C569.42 376.893 568.178 368.29 570.202 355.122C570.871 350.769 571.951 345.628 573.666 339.824L587.525 335.52C587.664 335.477 587.741 335.33 587.698 335.191C587.655 335.052 587.508 334.97 587.369 335.018L573.847 339.217C575.938 332.26 578.939 324.37 583.233 315.747L599.481 312.73C599.624 312.704 599.718 312.567 599.691 312.424C599.665 312.281 599.528 312.183 599.385 312.214L583.529 315.159C587.177 307.904 591.734 300.141 597.434 291.986C597.517 291.867 597.488 291.703 597.369 291.62C597.25 291.538 597.086 291.566 597.003 291.685C594.66 295.037 592.51 298.323 590.535 301.535L587.032 292.365C586.98 292.23 586.826 292.161 586.693 292.213C586.557 292.265 586.489 292.417 586.541 292.552L590.19 302.104C587.404 306.672 584.968 311.092 582.85 315.333C582.807 315.375 582.78 315.429 582.773 315.49C580.862 319.327 579.208 323.018 577.773 326.549L570.333 319.494C570.227 319.395 570.061 319.399 569.961 319.504C569.861 319.609 569.866 319.776 569.971 319.876L577.562 327.074C575.795 331.471 574.365 335.618 573.22 339.472C573.187 339.519 573.17 339.575 573.173 339.634C571.44 345.495 570.35 350.685 569.677 355.076C567.457 369.553 569.165 378.568 569.396 379.676C565.901 384.366 562.906 389.194 560.445 394.132C558.699 397.636 557.23 401.199 556.019 404.81C556.721 398.312 556.343 391.708 554.878 385.07C553.977 380.99 552.664 376.893 550.957 372.806C551.33 372.034 554.241 365.725 555.269 354.682C555.581 351.332 555.734 347.319 555.537 342.695C555.55 342.652 555.548 342.608 555.532 342.567C555.399 339.526 555.11 336.217 554.619 332.662L561.518 328.768C561.614 328.714 561.647 328.593 561.593 328.497C561.539 328.401 561.418 328.368 561.322 328.422L554.56 332.238C554.154 329.38 553.617 326.365 552.918 323.195C552.924 323.149 552.914 323.104 552.89 323.065C552.113 319.56 551.135 315.866 549.927 311.998L554.362 305.651C554.425 305.561 554.403 305.437 554.313 305.374C554.225 305.311 554.099 305.333 554.036 305.423L549.779 311.516C548.918 308.793 547.942 305.984 546.837 303.092C546.798 302.989 546.683 302.938 546.58 302.977C546.477 303.016 546.426 303.131 546.465 303.234C549.155 310.272 551.077 316.812 552.424 322.812L541.316 317.737C541.217 317.689 541.098 317.735 541.052 317.835C541.006 317.935 541.05 318.053 541.15 318.099L552.533 323.3C554.104 330.423 554.859 336.771 555.118 342.265L545.955 336.697C545.862 336.636 545.739 336.67 545.682 336.764C545.625 336.858 545.655 336.98 545.749 337.037L555.14 342.744C555.333 347.323 555.183 351.298 554.875 354.619C553.943 364.664 551.451 370.757 550.75 372.307C548.96 368.1 546.75 363.904 544.131 359.749C542.668 357.428 541.157 355.251 539.651 353.227L541.626 345.313C541.652 345.206 541.587 345.097 541.481 345.072C541.374 345.045 541.266 345.11 541.239 345.217L539.342 352.816C537.238 350.015 535.152 347.52 533.233 345.378C533.217 345.351 533.198 345.326 533.171 345.309C528.178 339.742 524.331 336.556 524.267 336.504C524.181 336.433 524.057 336.446 523.987 336.532C523.917 336.617 523.93 336.742 524.014 336.812C524.076 336.863 527.725 339.888 532.519 345.182L522.88 343.584C522.772 343.566 522.669 343.639 522.651 343.748C522.635 343.842 522.689 343.932 522.775 343.966C522.788 343.971 522.801 343.975 522.815 343.977L532.948 345.657C536.319 349.422 540.206 354.27 543.8 359.972C544.399 360.923 544.998 361.917 545.593 362.943L536.001 361.9C535.892 361.888 535.794 361.967 535.782 362.076C535.772 362.167 535.826 362.251 535.907 362.283C535.923 362.289 535.94 362.293 535.958 362.296L545.838 363.371C552.094 374.311 557.622 389.312 555.427 406.147H556.192C561.105 390.836 570.146 378.433 578.973 369.228L591.975 371.016C591.999 371.019 592.022 371.019 592.045 371.016C592.16 371.001 592.255 370.911 592.272 370.791C592.292 370.647 592.191 370.515 592.048 370.495L579.426 368.76C580.516 367.635 581.602 366.554 582.674 365.527C589.104 359.372 595.637 354.407 601.161 350.663L614.68 351.756C614.699 351.757 614.717 351.757 614.735 351.755C614.856 351.739 614.953 351.642 614.963 351.515C614.975 351.37 614.867 351.244 614.722 351.232L601.861 350.193C609.699 344.946 615.342 342.239 615.439 342.193C615.571 342.129 615.627 341.972 615.565 341.841Z" fill="white"/>
|
||||
<path d="M563.411 387.694H558.967H543.477L549.133 419.744H558.967H563.411H573.245L578.9 387.694H563.411Z" fill="white"/>
|
||||
<path d="M575.644 407.645C574.454 407.645 573.852 406.814 573.157 405.852C572.409 404.818 571.56 403.645 569.858 403.645C568.156 403.645 567.308 404.818 566.56 405.852C565.865 406.814 565.263 407.645 564.073 407.645C562.883 407.645 562.282 406.814 561.587 405.852C560.839 404.818 559.992 403.645 558.291 403.645C556.591 403.645 555.744 404.818 554.997 405.852C554.303 406.814 553.702 407.645 552.514 407.645C551.325 407.645 550.725 406.814 550.03 405.852C549.283 404.818 548.435 403.645 546.734 403.645C546.458 403.645 546.234 403.869 546.234 404.145C546.234 404.421 546.458 404.645 546.734 404.645C547.923 404.645 548.524 405.476 549.219 406.438C549.966 407.472 550.814 408.645 552.514 408.645C554.214 408.645 555.061 407.472 555.808 406.438C556.502 405.476 557.103 404.645 558.291 404.645C559.48 404.645 560.081 405.476 560.776 406.438C561.524 407.472 562.372 408.645 564.073 408.645C565.775 408.645 566.623 407.472 567.371 406.438C568.066 405.476 568.668 404.645 569.858 404.645C571.049 404.645 571.651 405.476 572.346 406.438C573.094 407.472 573.943 408.645 575.644 408.645C575.92 408.645 576.144 408.421 576.144 408.145C576.144 407.869 575.921 407.645 575.644 407.645Z" fill="#009C98"/>
|
||||
<path d="M576.399 403.371C575.125 403.371 574.489 402.536 573.752 401.568C572.969 400.538 572.08 399.371 570.311 399.371C568.542 399.371 567.653 400.538 566.87 401.568C566.134 402.536 565.498 403.371 564.224 403.371C562.951 403.371 562.316 402.536 561.58 401.568C560.796 400.538 559.908 399.371 558.14 399.371C556.372 399.371 555.486 400.538 554.702 401.568C553.968 402.536 553.333 403.371 552.061 403.371C550.789 403.371 550.154 402.536 549.418 401.568C548.635 400.538 547.747 399.371 545.979 399.371C545.703 399.371 545.479 399.595 545.479 399.871C545.479 400.147 545.703 400.371 545.979 400.371C547.251 400.371 547.886 401.206 548.622 402.174C549.405 403.204 550.293 404.371 552.061 404.371C553.829 404.371 554.715 403.204 555.499 402.174C556.233 401.206 556.868 400.371 558.14 400.371C559.413 400.371 560.048 401.206 560.784 402.174C561.568 403.204 562.456 404.371 564.224 404.371C565.994 404.371 566.882 403.204 567.665 402.174C568.401 401.206 569.037 400.371 570.311 400.371C571.585 400.371 572.221 401.206 572.958 402.174C573.741 403.204 574.63 404.371 576.399 404.371C576.675 404.371 576.899 404.147 576.899 403.871C576.899 403.594 576.675 403.371 576.399 403.371Z" fill="#009C98"/>
|
||||
<path d="M50.4326 359.89C56.8806 357.235 57.5846 344.097 52.0048 330.544C46.4251 316.991 36.6746 308.156 30.2265 310.811C23.7785 313.465 23.0746 326.604 28.6543 340.157C34.234 353.71 43.9845 362.545 50.4326 359.89Z" fill="#009C98"/>
|
||||
<path d="M13.153 355.752C16.824 350.977 27.936 353.362 37.972 361.078C48.008 368.794 53.168 378.92 49.497 383.695C45.826 388.47 34.714 386.085 24.678 378.369C14.642 370.653 9.48198 360.527 13.153 355.752Z" fill="#009C98"/>
|
||||
<path d="M72.1468 321.274C77.3708 322.04 80.3008 331.563 78.6908 342.544C77.0808 353.525 71.5408 361.806 66.3158 361.04C61.0918 360.274 58.1618 350.751 59.7708 339.77C61.3828 328.789 66.9228 320.508 72.1468 321.274Z" fill="#009C98"/>
|
||||
<path d="M92.9431 351.154C96.5171 353.987 94.5861 362.374 88.6301 369.886C82.6741 377.398 74.9491 381.191 71.3751 378.357C67.8011 375.524 69.7321 367.137 75.6881 359.625C81.6441 352.113 89.3691 348.32 92.9431 351.154Z" fill="#009C98"/>
|
||||
<path d="M14.5632 356.322C14.6162 356.211 14.7472 356.163 14.8592 356.216C14.9432 356.256 19.9742 358.665 26.8922 363.344C26.9252 363.356 26.9532 363.377 26.9782 363.402C29.6382 365.204 32.5732 367.342 35.6122 369.807L35.6092 361.06C35.6092 360.937 35.7092 360.837 35.8312 360.837C35.9532 360.836 36.0532 360.936 36.0532 361.059L36.0562 370.168C38.2362 371.953 40.4632 373.902 42.6772 376.021C46.6402 379.814 50.1712 383.761 53.2502 387.834C53.5892 385.964 54.6392 378.688 52.9282 367.552C52.3622 363.871 51.4482 359.523 49.9992 354.614L38.2782 350.974C38.1612 350.938 38.0952 350.813 38.1322 350.696C38.1682 350.579 38.2932 350.509 38.4102 350.55L49.8462 354.101C48.0772 348.217 45.5402 341.545 41.9092 334.252L28.1672 331.7C28.0462 331.678 27.9672 331.562 27.9892 331.441C28.0112 331.32 28.1272 331.237 28.2482 331.263L41.6582 333.753C38.5732 327.618 34.7192 321.052 29.8982 314.155C29.8282 314.054 29.8522 313.916 29.9532 313.845C30.0542 313.775 30.1922 313.799 30.2632 313.9C32.2442 316.735 34.0632 319.514 35.7332 322.231L38.6952 314.476C38.7392 314.361 38.8692 314.303 38.9822 314.348C39.0972 314.392 39.1542 314.52 39.1102 314.635L36.0242 322.713C38.3802 326.576 40.4402 330.314 42.2322 333.901C42.2682 333.937 42.2922 333.982 42.2972 334.034C43.9132 337.279 45.3122 340.401 46.5262 343.387L52.8192 337.42C52.9082 337.336 53.0492 337.339 53.1332 337.428C53.2172 337.517 53.2142 337.658 53.1252 337.742L46.7052 343.83C48.2002 347.549 49.4092 351.056 50.3772 354.315C50.4052 354.355 50.4192 354.402 50.4172 354.452C51.8832 359.409 52.8042 363.798 53.3732 367.512C55.2502 379.755 53.8062 387.38 53.6102 388.317C56.5662 392.283 59.0992 396.366 61.1802 400.543C62.6562 403.506 63.8992 406.519 64.9232 409.573C64.3292 404.078 64.6492 398.492 65.8882 392.878C66.6502 389.427 67.7602 385.963 69.2042 382.506C68.8882 381.854 66.4272 376.517 65.5572 367.178C65.2932 364.345 65.1642 360.951 65.3302 357.041C65.3192 357.005 65.3212 356.968 65.3342 356.933C65.4472 354.361 65.6912 351.562 66.1062 348.556L60.2722 345.263C60.1912 345.217 60.1632 345.115 60.2082 345.034C60.2542 344.953 60.3562 344.925 60.4372 344.97L66.1552 348.198C66.4982 345.781 66.9522 343.231 67.5442 340.55C67.5392 340.511 67.5472 340.473 67.5682 340.44C68.2252 337.476 69.0522 334.351 70.0742 331.081L66.3232 325.713C66.2702 325.637 66.2882 325.532 66.3652 325.479C66.4392 325.426 66.5462 325.445 66.5992 325.521L70.1992 330.674C70.9272 328.371 71.7532 325.996 72.6872 323.549C72.7202 323.462 72.8182 323.419 72.9042 323.452C72.9912 323.485 73.0342 323.583 73.0012 323.669C70.7262 329.621 69.1012 335.152 67.9612 340.226L77.3552 335.934C77.4392 335.893 77.5402 335.933 77.5782 336.017C77.6172 336.102 77.5802 336.201 77.4952 336.24L67.8682 340.638C66.5402 346.662 65.9012 352.03 65.6822 356.677L73.4312 351.968C73.5102 351.916 73.6142 351.945 73.6622 352.024C73.7102 352.103 73.6852 352.207 73.6052 352.255L65.6632 357.082C65.5002 360.954 65.6272 364.316 65.8872 367.125C66.6752 375.62 68.7832 380.773 69.3762 382.084C70.8902 378.526 72.7592 374.978 74.9742 371.464C76.2112 369.501 77.4892 367.66 78.7632 365.948L77.0922 359.255C77.0702 359.165 77.1252 359.073 77.2152 359.051C77.3052 359.028 77.3972 359.083 77.4192 359.174L79.0232 365.601C80.8032 363.233 82.5662 361.123 84.1892 359.31C84.2022 359.287 84.2192 359.266 84.2412 359.251C88.4642 354.543 91.7172 351.849 91.7722 351.804C91.8452 351.744 91.9502 351.755 92.0092 351.827C92.0682 351.899 92.0572 352.005 91.9862 352.064C91.9332 352.107 88.8472 354.665 84.7932 359.143L92.9452 357.791C93.0372 357.776 93.1232 357.838 93.1392 357.93C93.1522 358.01 93.1072 358.086 93.0342 358.114C93.0232 358.118 93.0122 358.121 93.0002 358.123L84.4312 359.544C81.5802 362.728 78.2922 366.828 75.2542 371.651C74.7472 372.455 74.2412 373.296 73.7382 374.164L81.8502 373.282C81.9422 373.272 82.0252 373.339 82.0352 373.431C82.0432 373.508 81.9982 373.579 81.9292 373.606C81.9152 373.611 81.9012 373.615 81.8862 373.617L73.5302 374.526C68.2402 383.778 63.5642 396.465 65.4202 410.702H64.7732C60.6182 397.753 52.9722 387.264 45.5072 379.479L34.5122 380.994C34.4922 380.997 34.4722 380.997 34.4532 380.994C34.3562 380.982 34.2752 380.905 34.2612 380.804C34.2442 380.682 34.3292 380.57 34.4512 380.554L45.1262 379.086C44.2042 378.135 43.2862 377.22 42.3792 376.352C36.9412 371.147 31.4162 366.948 26.7442 363.781L15.3102 364.705C15.2942 364.706 15.2792 364.706 15.2632 364.704C15.1612 364.691 15.0792 364.608 15.0702 364.501C15.0602 364.378 15.1512 364.272 15.2742 364.262L26.1502 363.383C19.5212 358.945 14.7492 356.656 14.6672 356.618C14.5582 356.565 14.5112 356.433 14.5632 356.322Z" fill="white"/>
|
||||
<path d="M58.6708 395.101H62.4288H75.5288L70.7458 422.206H62.4288H58.6708H50.3538L45.5708 395.101H58.6708Z" fill="white"/>
|
||||
<path d="M48.3249 411.974C49.3319 411.974 49.8399 411.271 50.4279 410.458C51.0609 409.583 51.7779 408.592 53.2179 408.592C54.6579 408.592 55.3739 409.584 56.0069 410.458C56.5949 411.272 57.1039 411.974 58.1109 411.974C59.1179 411.974 59.6259 411.271 60.2139 410.458C60.8469 409.583 61.5629 408.592 63.0009 408.592C64.4389 408.592 65.1549 409.584 65.7869 410.458C66.3739 411.272 66.8819 411.974 67.8869 411.974C68.8929 411.974 69.3999 411.271 69.9879 410.458C70.6199 409.583 71.3369 408.592 72.7749 408.592C73.0089 408.592 73.1979 408.781 73.1979 409.015C73.1979 409.249 73.0089 409.438 72.7749 409.438C71.7689 409.438 71.2609 410.141 70.6729 410.954C70.0409 411.829 69.3239 412.821 67.8859 412.821C66.4479 412.821 65.7319 411.829 65.0999 410.954C64.5129 410.14 64.0049 409.438 62.9999 409.438C61.9939 409.438 61.4859 410.141 60.8979 410.954C60.2649 411.829 59.5479 412.821 58.1099 412.821C56.6709 412.821 55.9539 411.829 55.3209 410.954C54.7329 410.14 54.2239 409.438 53.2169 409.438C52.2089 409.438 51.7009 410.141 51.1129 410.954C50.4799 411.829 49.7629 412.821 48.3239 412.821C48.0899 412.821 47.9009 412.632 47.9009 412.398C47.9009 412.164 48.0909 411.974 48.3249 411.974Z" fill="#009C98"/>
|
||||
<path d="M47.6857 408.359C48.7637 408.359 49.3007 407.653 49.9237 406.834C50.5857 405.963 51.3377 404.976 52.8337 404.976C54.3307 404.976 55.0817 405.963 55.7437 406.834C56.3667 407.653 56.9037 408.359 57.9817 408.359C59.0587 408.359 59.5957 407.653 60.2177 406.834C60.8807 405.963 61.6317 404.976 63.1277 404.976C64.6227 404.976 65.3727 405.963 66.0347 406.834C66.6557 407.653 67.1927 408.359 68.2677 408.359C69.3437 408.359 69.8807 407.653 70.5027 406.834C71.1647 405.963 71.9157 404.976 73.4117 404.976C73.6457 404.976 73.8347 405.165 73.8347 405.399C73.8347 405.633 73.6457 405.822 73.4117 405.822C72.3357 405.822 71.7987 406.528 71.1767 407.347C70.5147 408.218 69.7637 409.205 68.2677 409.205C66.7727 409.205 66.0227 408.218 65.3607 407.347C64.7397 406.528 64.2027 405.822 63.1277 405.822C62.0507 405.822 61.5137 406.528 60.8917 407.347C60.2287 408.218 59.4777 409.205 57.9817 409.205C56.4847 409.205 55.7337 408.218 55.0717 407.347C54.4487 406.528 53.9117 405.822 52.8337 405.822C51.7557 405.822 51.2187 406.528 50.5957 407.347C49.9337 408.218 49.1817 409.205 47.6857 409.205C47.4517 409.205 47.2627 409.016 47.2627 408.782C47.2627 408.548 47.4527 408.359 47.6857 408.359Z" fill="#009C98"/>
|
||||
<path d="M533.094 415.056L504.081 289.333C503.522 286.913 501.368 285.199 498.884 285.199C497.733 285.199 496.687 285.564 495.829 286.168C494.97 285.564 493.924 285.199 492.774 285.199C490.29 285.199 488.135 286.913 487.577 289.333L458.564 415.056C457.793 418.398 460.331 421.589 463.761 421.589C466.245 421.589 468.4 419.875 468.958 417.455L495.829 301.013L522.7 417.455C523.259 419.875 525.413 421.589 527.897 421.589C531.326 421.589 533.865 418.398 533.094 415.056Z" fill="#769989"/>
|
||||
<path d="M249.309 415.056L220.296 289.333C219.737 286.913 217.582 285.199 215.099 285.199C213.948 285.199 212.902 285.564 212.044 286.168C211.185 285.564 210.14 285.199 208.989 285.199C206.505 285.199 204.35 286.913 203.792 289.333L174.779 415.056C174.008 418.398 176.546 421.589 179.976 421.589C182.46 421.589 184.615 419.875 185.173 417.455L212.044 301.013L238.915 417.455C239.474 419.875 241.628 421.589 244.112 421.589C247.542 421.589 250.08 418.398 249.309 415.056Z" fill="#769989"/>
|
||||
</svg>
|
After Width: | Height: | Size: 56 KiB |
16918
public/assets-login-landing/js/apexcharts.min.js
vendored
Normal file
163
public/assets-login-landing/js/index.js
Normal file
@ -0,0 +1,163 @@
|
||||
|
||||
function project(){
|
||||
//paexchart
|
||||
setTimeout(()=>{
|
||||
var options1 = {
|
||||
series: [
|
||||
{
|
||||
name: 'Pelayanan',
|
||||
data: [40, 35, 78, 50, 75, 48, 62, 47, 80, 56, 40, 50]
|
||||
},
|
||||
{
|
||||
name: "Total Pelayanan",
|
||||
data: [45, 30, 65, 35, 50, 70, 38, 60, 36, 65, 32, 45]
|
||||
},
|
||||
],
|
||||
chart: {
|
||||
height: 330,
|
||||
type: 'area',
|
||||
zoom: {
|
||||
enabled: false
|
||||
},
|
||||
toolbar: {
|
||||
show: false,
|
||||
},
|
||||
dropShadow: {
|
||||
enabled: false,
|
||||
enabledOnSeries: undefined,
|
||||
top: 5,
|
||||
left: 0,
|
||||
blur: 0,
|
||||
color: '#000',
|
||||
opacity: 0,
|
||||
},
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false
|
||||
},
|
||||
stroke: {
|
||||
width: [3, 3],
|
||||
curve:'smooth',
|
||||
dashArray: [0, 0],
|
||||
},
|
||||
legend: {
|
||||
show: true,
|
||||
position: 'top',
|
||||
horizontalAlign: 'center',
|
||||
fontWeight: 600,
|
||||
tooltipHoverFormatter: function(val, opts) {
|
||||
return val + ' - ' + opts.w.globals.series[opts.seriesIndex][opts.dataPointIndex] + ''
|
||||
},
|
||||
labels: {
|
||||
colors: '#74767c',
|
||||
},
|
||||
markers: {
|
||||
width: 9,
|
||||
height: 9,
|
||||
strokeWidth: 0,
|
||||
radius: 12,
|
||||
offsetX: 0,
|
||||
offsetY: 0
|
||||
},
|
||||
},
|
||||
markers: {
|
||||
size: [0, 0],
|
||||
hover: {
|
||||
sizeOffset: 4
|
||||
}
|
||||
},
|
||||
colors: [myVarVal, '#fb8d34'],
|
||||
xaxis: {
|
||||
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep',
|
||||
'Oct', 'Nov', 'Dec'
|
||||
],
|
||||
axisBorder: {
|
||||
show: true,
|
||||
color: 'rgba(119, 119, 142, 0.05)',
|
||||
},
|
||||
axisTicks: {
|
||||
show: true,
|
||||
color: 'rgba(119, 119, 142, 0.05)',
|
||||
},
|
||||
},
|
||||
tooltip: {
|
||||
y: [
|
||||
{
|
||||
title: {
|
||||
formatter: function (val) {
|
||||
return val + " (mins)"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
title: {
|
||||
formatter: function (val) {
|
||||
return val + " per session"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
title: {
|
||||
formatter: function (val) {
|
||||
return val;
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
grid: {
|
||||
borderColor: 'rgba(119, 119, 142, 0.1)',
|
||||
}
|
||||
};
|
||||
document.getElementById('project-budget').innerHTML = '';
|
||||
var chart1 = new ApexCharts(document.querySelector("#project-budget"), options1);
|
||||
chart1.render();
|
||||
}, 300);
|
||||
|
||||
}
|
||||
|
||||
/* Chartjs (#chartDonut) */
|
||||
function chart() {
|
||||
'use strict';
|
||||
var options = {
|
||||
series: [{
|
||||
data: [448, 470, 540, 580, 690, 1100, 1200]
|
||||
}],
|
||||
chart: {
|
||||
type: 'bar',
|
||||
height: 345,
|
||||
},
|
||||
plotOptions: {
|
||||
bar: {
|
||||
borderRadius: 1,
|
||||
horizontal: true,
|
||||
}
|
||||
},
|
||||
colors:[myVarVal],
|
||||
dataLabels: {
|
||||
enabled: false
|
||||
},
|
||||
xaxis: {
|
||||
categories: ['South Korea','China','Netherlands','Canada','Germany','Argentina','Cuba'
|
||||
],
|
||||
axisBorder: {
|
||||
show: true,
|
||||
color: 'rgba(119, 119, 142, 0.05)',
|
||||
},
|
||||
axisTicks: {
|
||||
show: true,
|
||||
color: 'rgba(119, 119, 142, 0.05)',
|
||||
},
|
||||
},
|
||||
grid: {
|
||||
borderColor: 'rgba(119, 119, 142, 0.1)',
|
||||
}
|
||||
};
|
||||
|
||||
var chart = new ApexCharts(document.querySelector("#chart-1"), options);
|
||||
chart.render();
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
194
public/assets-login-landing/js/main.js
Normal file
@ -0,0 +1,194 @@
|
||||
|
||||
(function() {
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* Easy selector helper function
|
||||
*/
|
||||
const select = (el, all = false) => {
|
||||
el = el.trim()
|
||||
if (all) {
|
||||
return [...document.querySelectorAll(el)]
|
||||
} else {
|
||||
return document.querySelector(el)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Easy event listener function
|
||||
*/
|
||||
const on = (type, el, listener, all = false) => {
|
||||
let selectEl = select(el, all)
|
||||
if (selectEl) {
|
||||
if (all) {
|
||||
selectEl.forEach(e => e.addEventListener(type, listener))
|
||||
} else {
|
||||
selectEl.addEventListener(type, listener)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Easy on scroll event listener
|
||||
*/
|
||||
const onscroll = (el, listener) => {
|
||||
el.addEventListener('scroll', listener)
|
||||
}
|
||||
|
||||
/**
|
||||
* Navbar links active state on scroll
|
||||
*/
|
||||
let navbarlinks = select('#navbar .scrollto', true)
|
||||
const navbarlinksActive = () => {
|
||||
let position = window.scrollY + 200
|
||||
navbarlinks.forEach(navbarlink => {
|
||||
if (!navbarlink.hash) return
|
||||
let section = select(navbarlink.hash)
|
||||
if (!section) return
|
||||
if (position >= section.offsetTop && position <= (section.offsetTop + section.offsetHeight)) {
|
||||
navbarlink.classList.add('active')
|
||||
} else {
|
||||
navbarlink.classList.remove('active')
|
||||
}
|
||||
})
|
||||
}
|
||||
window.addEventListener('load', navbarlinksActive)
|
||||
onscroll(document, navbarlinksActive)
|
||||
|
||||
/**
|
||||
* Scrolls to an element with header offset
|
||||
*/
|
||||
const scrollto = (el) => {
|
||||
let header = select('#header')
|
||||
let offset = header.offsetHeight
|
||||
|
||||
let elementPos = select(el).offsetTop
|
||||
window.scrollTo({
|
||||
top: elementPos - offset,
|
||||
behavior: 'smooth'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* Toggle .header-scrolled class to #header when page is scrolled
|
||||
*/
|
||||
let selectHeader = select('#header')
|
||||
if (selectHeader) {
|
||||
const headerScrolled = () => {
|
||||
if (window.scrollY > 100) {
|
||||
selectHeader.classList.add('header-scrolled')
|
||||
} else {
|
||||
selectHeader.classList.remove('header-scrolled')
|
||||
}
|
||||
}
|
||||
window.addEventListener('load', headerScrolled)
|
||||
onscroll(document, headerScrolled)
|
||||
}
|
||||
|
||||
/**
|
||||
* Back to top button
|
||||
*/
|
||||
let backtotop = select('.back-to-top')
|
||||
if (backtotop) {
|
||||
const toggleBacktotop = () => {
|
||||
if (window.scrollY > 100) {
|
||||
backtotop.classList.add('active')
|
||||
} else {
|
||||
backtotop.classList.remove('active')
|
||||
}
|
||||
}
|
||||
window.addEventListener('load', toggleBacktotop)
|
||||
onscroll(document, toggleBacktotop)
|
||||
}
|
||||
|
||||
/**
|
||||
* Mobile nav toggle
|
||||
*/
|
||||
on('click', '.mobile-nav-toggle', function(e) {
|
||||
select('#navbar').classList.toggle('navbar-mobile')
|
||||
this.classList.toggle('bi-list')
|
||||
this.classList.toggle('bi-x')
|
||||
})
|
||||
|
||||
/**
|
||||
* Mobile nav dropdowns activate
|
||||
*/
|
||||
on('click', '.navbar .dropdown > a', function(e) {
|
||||
if (select('#navbar').classList.contains('navbar-mobile')) {
|
||||
e.preventDefault()
|
||||
this.nextElementSibling.classList.toggle('dropdown-active')
|
||||
}
|
||||
}, true)
|
||||
|
||||
/**
|
||||
* Scrool with ofset on links with a class name .scrollto
|
||||
*/
|
||||
on('click', '.scrollto', function(e) {
|
||||
if (select(this.hash)) {
|
||||
e.preventDefault()
|
||||
|
||||
let navbar = select('#navbar')
|
||||
if (navbar.classList.contains('navbar-mobile')) {
|
||||
navbar.classList.remove('navbar-mobile')
|
||||
let navbarToggle = select('.mobile-nav-toggle')
|
||||
navbarToggle.classList.toggle('bi-list')
|
||||
navbarToggle.classList.toggle('bi-x')
|
||||
}
|
||||
scrollto(this.hash)
|
||||
}
|
||||
}, true)
|
||||
|
||||
/**
|
||||
* Scroll with ofset on page load with hash links in the url
|
||||
*/
|
||||
window.addEventListener('load', () => {
|
||||
if (window.location.hash) {
|
||||
if (select(window.location.hash)) {
|
||||
scrollto(window.location.hash)
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* Testimonials slider
|
||||
*/
|
||||
new Swiper('.testimonials-slider', {
|
||||
speed: 600,
|
||||
loop: true,
|
||||
autoplay: {
|
||||
delay: 5000,
|
||||
disableOnInteraction: false
|
||||
},
|
||||
slidesPerView: 'auto',
|
||||
pagination: {
|
||||
el: '.swiper-pagination',
|
||||
type: 'bullets',
|
||||
clickable: true
|
||||
},
|
||||
breakpoints: {
|
||||
320: {
|
||||
slidesPerView: 1,
|
||||
spaceBetween: 20
|
||||
},
|
||||
|
||||
1200: {
|
||||
slidesPerView: 3,
|
||||
spaceBetween: 20
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Animation on scroll
|
||||
*/
|
||||
window.addEventListener('load', () => {
|
||||
AOS.init({
|
||||
duration: 1000,
|
||||
easing: 'ease-in-out',
|
||||
once: true,
|
||||
mirror: false
|
||||
})
|
||||
});
|
||||
|
||||
})()
|
331
public/assets-login-landing/js/themecolor.js
Normal file
@ -0,0 +1,331 @@
|
||||
const handleThemeUpdate = (cssVars) => {
|
||||
const root = document.querySelector(':root');
|
||||
const keys = Object.keys(cssVars);
|
||||
keys.forEach(key => {
|
||||
root.style.setProperty(key, cssVars[key]);
|
||||
});
|
||||
}
|
||||
|
||||
function dynamicPrimaryColor(primaryColor) {
|
||||
'use strict'
|
||||
|
||||
primaryColor.forEach((item) => {
|
||||
item.addEventListener('input', (e) => {
|
||||
const cssPropName = `--primary-${e.target.getAttribute('data-id')}`;
|
||||
const cssPropName1 = `--primary-${e.target.getAttribute('data-id1')}`;
|
||||
const cssPropName2 = `--primary-${e.target.getAttribute('data-id2')}`;
|
||||
handleThemeUpdate({
|
||||
[cssPropName]: e.target.value,
|
||||
// 95 is used as the opacity 0.95
|
||||
[cssPropName1]: e.target.value + 95,
|
||||
[cssPropName2]: e.target.value,
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
function dynamicBackgroundColor(BackgroundColor) {
|
||||
'use strict'
|
||||
|
||||
BackgroundColor.forEach((item) => {
|
||||
item.addEventListener('input', (e) => {
|
||||
const cssPropName = `--dark-${e.target.getAttribute('data-id3')}`;
|
||||
const cssPropName1 = `--dark-${e.target.getAttribute('data-id4')}`;
|
||||
handleThemeUpdate({
|
||||
[cssPropName]: e.target.value + 'dd',
|
||||
[cssPropName1]: e.target.value,
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
(function() {
|
||||
'use strict'
|
||||
|
||||
// Light theme color picker
|
||||
const dynamicPrimaryLight = document.querySelectorAll('input.color-primary-light');
|
||||
const dynamicBgColor = document.querySelectorAll('input.background-primary-light');
|
||||
|
||||
// themeSwitch(LightThemeSwitchers);
|
||||
dynamicPrimaryColor(dynamicPrimaryLight);
|
||||
dynamicBackgroundColor(dynamicBgColor);
|
||||
|
||||
localStorageBackup();
|
||||
|
||||
})();
|
||||
|
||||
function localStorageBackup() {
|
||||
'use strict'
|
||||
|
||||
// if there is a value stored, update color picker and background color
|
||||
// Used to retrive the data from local storage
|
||||
if (localStorage.AdminorprimaryColor) {
|
||||
// document.getElementById('colorID').value = localStorage.AdminorprimaryColor;
|
||||
document.querySelector('html').style.setProperty('--primary-bg-color', localStorage.AdminorprimaryColor);
|
||||
document.querySelector('html').style.setProperty('--primary-bg-hover', localStorage.AdminorprimaryHoverColor);
|
||||
document.querySelector('html').style.setProperty('--primary-bg-border', localStorage.AdminorprimaryBorderColor);
|
||||
}
|
||||
|
||||
if (localStorage.AdminorbgColor) {
|
||||
document.body.classList.add('dark-theme');
|
||||
document.body.classList.remove('light-theme');
|
||||
$('#myonoffswitch2').prop('checked', true);
|
||||
$('#myonoffswitch5').prop('checked', true);
|
||||
$('#myonoffswitch8').prop('checked', true);
|
||||
// document.getElementById('bgID').value = localStorage.AdminorthemeColor;
|
||||
document.querySelector('html').style.setProperty('--dark-body', localStorage.AdminorbgColor);
|
||||
document.querySelector('html').style.setProperty('--dark-theme', localStorage.AdminorthemeColor);
|
||||
}
|
||||
if(localStorage.AdminorlightMode){
|
||||
document.querySelector('body')?.classList.add('light-theme');
|
||||
document.querySelector('body')?.classList.remove('dark-theme');
|
||||
}
|
||||
|
||||
if(localStorage.AdminordarkMode){
|
||||
document.querySelector('body')?.classList.add('dark-theme');
|
||||
document.querySelector('body')?.classList.remove('light-theme');
|
||||
}
|
||||
if(localStorage.Adminorhorizontal){
|
||||
document.querySelector('body').classList.add('horizontal')
|
||||
}
|
||||
if(localStorage.AdminorhorizontalHover){
|
||||
document.querySelector('body').classList.add('horizontal-hover')
|
||||
}
|
||||
if(localStorage.Adminorrtl){
|
||||
document.querySelector('body').classList.add('rtl')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorclosedmenu){
|
||||
document.querySelector('body').classList.add('closed-menu')
|
||||
}
|
||||
|
||||
if(localStorage.Adminoricontextmenu){
|
||||
document.querySelector('body').classList.add('icontext-menu')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorsideiconmenu){
|
||||
document.querySelector('body').classList.add('sideicon-menu')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorhoversubmenu){
|
||||
document.querySelector('body').classList.add('hover-submenu')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorhoversubmenu1){
|
||||
document.querySelector('body').classList.add('hover-submenu1')
|
||||
}
|
||||
if(localStorage.Adminordoublemenu){
|
||||
document.querySelector('body').classList.add('double-menu')
|
||||
}
|
||||
|
||||
if(localStorage.Adminordoublemenutabs){
|
||||
document.querySelector('body').classList.add('double-menu-tabs')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorbodystyle){
|
||||
document.querySelector('body').classList.add('body-style1')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorboxedwidth){
|
||||
document.querySelector('body').classList.add('layout-boxed')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorscrollable){
|
||||
document.querySelector('body').classList.add('scrollable-layout')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorlightmenu){
|
||||
document.querySelector('body').classList.add('light-menu')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorcolormenu){
|
||||
document.querySelector('body').classList.add('color-menu')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorgradientmenu){
|
||||
document.querySelector('body').classList.add('gradient-menu')
|
||||
}
|
||||
|
||||
if(localStorage.Adminordarkmenu){
|
||||
document.querySelector('body').classList.add('dark-menu')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorlightheader){
|
||||
document.querySelector('body').classList.add('light-header')
|
||||
}
|
||||
|
||||
|
||||
if(localStorage.Adminorgradientheader){
|
||||
document.querySelector('body').classList.add('gradient-header')
|
||||
}
|
||||
|
||||
if(localStorage.Adminorcolorheader){
|
||||
document.querySelector('body').classList.add('color-header')
|
||||
}
|
||||
|
||||
if(localStorage.Adminordarkheader){
|
||||
document.querySelector('body').classList.add('dark-header')
|
||||
}
|
||||
// Boxed style
|
||||
if (document.querySelector('body').classList.contains('layout-boxed')) {
|
||||
$('#myonoffswitch10').prop('checked', true);
|
||||
}
|
||||
// scrollable-layout style
|
||||
if (document.querySelector('body').classList.contains('scrollable-layout')) {
|
||||
$('#myonoffswitch12').prop('checked', true);
|
||||
}
|
||||
// closed-menu style
|
||||
if (document.querySelector('body').classList.contains('closed-menu')) {
|
||||
$('#myonoffswitch30').prop('checked', true);
|
||||
}
|
||||
// icontext-menu style
|
||||
if (document.querySelector('body').classList.contains('icontext-menu')) {
|
||||
$('#myonoffswitch14').prop('checked', true);
|
||||
}
|
||||
// iconoverlay-menu style
|
||||
if (document.querySelector('body').classList.contains('sideicon-menu')) {
|
||||
$('#myonoffswitch15').prop('checked', true);
|
||||
}
|
||||
// hover-submenu style
|
||||
if (document.querySelector('body').classList.contains('hover-submenu')) {
|
||||
$('#myonoffswitch32').prop('checked', true);
|
||||
}
|
||||
// hover-submenu1 style
|
||||
if (document.querySelector('body').classList.contains('hover-submenu1')) {
|
||||
$('#myonoffswitch33').prop('checked', true);
|
||||
}
|
||||
}
|
||||
|
||||
// triggers on changing the color picker
|
||||
function changePrimaryColor() {
|
||||
'use strict';
|
||||
checkOptions();
|
||||
|
||||
var userColor = document.getElementById('colorID').value;
|
||||
localStorage.setItem('AdminorprimaryColor', userColor);
|
||||
// to store value as opacity 0.95 we use 95
|
||||
localStorage.setItem('AdminorprimaryHoverColor', userColor + 95);
|
||||
localStorage.setItem('AdminorprimaryBorderColor', userColor);
|
||||
|
||||
names()
|
||||
}
|
||||
// triggers on changing the color picker
|
||||
function changeBackgroundColor() {
|
||||
|
||||
var userColor = document.getElementById('bgID').value;
|
||||
localStorage.setItem('AdminorbgColor', userColor + 'dd');
|
||||
localStorage.setItem('AdminorthemeColor', userColor);
|
||||
names()
|
||||
|
||||
document.body.classList.add('dark-theme');
|
||||
document.body.classList.remove('light-theme');
|
||||
$('#myonoffswitch2').prop('checked', true);
|
||||
$('#myonoffswitch5').prop('checked', true);
|
||||
$('#myonoffswitch8').prop('checked', true);
|
||||
|
||||
localStorage.setItem("AdminordarkMode", true);
|
||||
names();
|
||||
}
|
||||
|
||||
|
||||
// to check the value is hexa or not
|
||||
const isValidHex = (hexValue) => /^#([A-Fa-f0-9]{3,4}){1,2}$/.test(hexValue)
|
||||
|
||||
const getChunksFromString = (st, chunkSize) => st.match(new RegExp(`.{${chunkSize}}`, "g"))
|
||||
// convert hex value to 256
|
||||
const convertHexUnitTo256 = (hexStr) => parseInt(hexStr.repeat(2 / hexStr.length), 16)
|
||||
// get alpha value is equla to 1 if there was no value is asigned to alpha in function
|
||||
const getAlphafloat = (a, alpha) => {
|
||||
if (typeof a !== "undefined") { return a / 255 }
|
||||
if ((typeof alpha != "number") || alpha < 0 || alpha > 1) {
|
||||
return 1
|
||||
}
|
||||
return alpha
|
||||
}
|
||||
// convertion of hex code to rgba code
|
||||
function hexToRgba(hexValue, alpha) {
|
||||
'use strict'
|
||||
|
||||
if (!isValidHex(hexValue)) { return null }
|
||||
const chunkSize = Math.floor((hexValue.length - 1) / 3)
|
||||
const hexArr = getChunksFromString(hexValue.slice(1), chunkSize)
|
||||
const [r, g, b, a] = hexArr.map(convertHexUnitTo256)
|
||||
return `rgba(${r}, ${g}, ${b}, ${getAlphafloat(a, alpha)})`
|
||||
}
|
||||
|
||||
|
||||
let myVarVal
|
||||
|
||||
function names() {
|
||||
'use strict'
|
||||
|
||||
let primaryColorVal = getComputedStyle(document.documentElement).getPropertyValue('--primary-bg-color').trim();
|
||||
|
||||
//get variable
|
||||
myVarVal = localStorage.getItem("AdminorprimaryColor") || primaryColorVal;
|
||||
// index charts
|
||||
if(document.querySelector('#chart-1') !== null){
|
||||
chart();
|
||||
}
|
||||
if(document.querySelector('#project-budget') !== null){
|
||||
project();
|
||||
}
|
||||
|
||||
// index2 charts
|
||||
if(document.querySelector('#sales-budaget') !== null){
|
||||
sales();
|
||||
}
|
||||
if(document.querySelector('#chart-pai') !== null){
|
||||
chartpai();
|
||||
}
|
||||
// index3 charts
|
||||
if(document.querySelector('#growthcompany') !== null){
|
||||
growthcompany();
|
||||
}
|
||||
if(document.querySelector('#chart-company') !== null){
|
||||
chartcompany();
|
||||
}
|
||||
|
||||
// index4 charts
|
||||
if(document.querySelector('#cryptochart') !== null){
|
||||
cryptochart();
|
||||
}
|
||||
|
||||
// index4 charts
|
||||
if(document.querySelector('#chart-eco') !== null){
|
||||
charteco();
|
||||
}
|
||||
|
||||
let colorData1 = hexToRgba(myVarVal || primaryColorVal , 0.1)
|
||||
document.querySelector('html').style.setProperty('--primary01', colorData1);
|
||||
|
||||
let colorData2 = hexToRgba(myVarVal || primaryColorVal , 0.2)
|
||||
document.querySelector('html').style.setProperty('--primary02', colorData2);
|
||||
|
||||
let colorData3 = hexToRgba(myVarVal || primaryColorVal , 0.3)
|
||||
document.querySelector('html').style.setProperty('--primary03', colorData3);
|
||||
|
||||
let colorData4 = hexToRgba(myVarVal || primaryColorVal , 0.4)
|
||||
document.querySelector('html').style.setProperty('--primary04', colorData4);
|
||||
|
||||
let colorData5 = hexToRgba(myVarVal || primaryColorVal , 0.5)
|
||||
document.querySelector('html').style.setProperty('--primary05', colorData5);
|
||||
|
||||
let colorData6 = hexToRgba(myVarVal || primaryColorVal , 0.6)
|
||||
document.querySelector('html').style.setProperty('--primary06', colorData6);
|
||||
|
||||
let colorData7 = hexToRgba(myVarVal || primaryColorVal , 0.7)
|
||||
document.querySelector('html').style.setProperty('--primary07', colorData7);
|
||||
|
||||
let colorData8 = hexToRgba(myVarVal || primaryColorVal , 0.8)
|
||||
document.querySelector('html').style.setProperty('--primary08', colorData8);
|
||||
|
||||
let colorData9 = hexToRgba(myVarVal || primaryColorVal , 0.9)
|
||||
document.querySelector('html').style.setProperty('--primary09', colorData9);
|
||||
|
||||
let colorData05 = hexToRgba(myVarVal || primaryColorVal , 0.05)
|
||||
document.querySelector('html').style.setProperty('--primary005', colorData05);
|
||||
|
||||
}
|
||||
|
||||
names()
|
||||
|
614
public/assets-login-landing/vendor/aos/aos.cjs.js
vendored
Normal file
@ -0,0 +1,614 @@
|
||||
'use strict';
|
||||
|
||||
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
|
||||
|
||||
var throttle = _interopDefault(require('lodash.throttle'));
|
||||
var debounce = _interopDefault(require('lodash.debounce'));
|
||||
|
||||
var callback = function callback() {};
|
||||
|
||||
function containsAOSNode(nodes) {
|
||||
var i = void 0,
|
||||
currentNode = void 0,
|
||||
result = void 0;
|
||||
|
||||
for (i = 0; i < nodes.length; i += 1) {
|
||||
currentNode = nodes[i];
|
||||
|
||||
if (currentNode.dataset && currentNode.dataset.aos) {
|
||||
return true;
|
||||
}
|
||||
|
||||
result = currentNode.children && containsAOSNode(currentNode.children);
|
||||
|
||||
if (result) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function check(mutations) {
|
||||
if (!mutations) return;
|
||||
|
||||
mutations.forEach(function (mutation) {
|
||||
var addedNodes = Array.prototype.slice.call(mutation.addedNodes);
|
||||
var removedNodes = Array.prototype.slice.call(mutation.removedNodes);
|
||||
var allNodes = addedNodes.concat(removedNodes);
|
||||
|
||||
if (containsAOSNode(allNodes)) {
|
||||
return callback();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function getMutationObserver() {
|
||||
return window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
|
||||
}
|
||||
|
||||
function isSupported() {
|
||||
return !!getMutationObserver();
|
||||
}
|
||||
|
||||
function ready(selector, fn) {
|
||||
var doc = window.document;
|
||||
var MutationObserver = getMutationObserver();
|
||||
|
||||
var observer = new MutationObserver(check);
|
||||
callback = fn;
|
||||
|
||||
observer.observe(doc.documentElement, {
|
||||
childList: true,
|
||||
subtree: true,
|
||||
removedNodes: true
|
||||
});
|
||||
}
|
||||
|
||||
var observer = { isSupported: isSupported, ready: ready };
|
||||
|
||||
var classCallCheck = function (instance, Constructor) {
|
||||
if (!(instance instanceof Constructor)) {
|
||||
throw new TypeError("Cannot call a class as a function");
|
||||
}
|
||||
};
|
||||
|
||||
var createClass = function () {
|
||||
function defineProperties(target, props) {
|
||||
for (var i = 0; i < props.length; i++) {
|
||||
var descriptor = props[i];
|
||||
descriptor.enumerable = descriptor.enumerable || false;
|
||||
descriptor.configurable = true;
|
||||
if ("value" in descriptor) descriptor.writable = true;
|
||||
Object.defineProperty(target, descriptor.key, descriptor);
|
||||
}
|
||||
}
|
||||
|
||||
return function (Constructor, protoProps, staticProps) {
|
||||
if (protoProps) defineProperties(Constructor.prototype, protoProps);
|
||||
if (staticProps) defineProperties(Constructor, staticProps);
|
||||
return Constructor;
|
||||
};
|
||||
}();
|
||||
|
||||
var _extends = Object.assign || function (target) {
|
||||
for (var i = 1; i < arguments.length; i++) {
|
||||
var source = arguments[i];
|
||||
|
||||
for (var key in source) {
|
||||
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
||||
target[key] = source[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return target;
|
||||
};
|
||||
|
||||
/**
|
||||
* Device detector
|
||||
*/
|
||||
|
||||
var fullNameRe = /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i;
|
||||
var prefixRe = /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i;
|
||||
var fullNameMobileRe = /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i;
|
||||
var prefixMobileRe = /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i;
|
||||
|
||||
function ua() {
|
||||
return navigator.userAgent || navigator.vendor || window.opera || '';
|
||||
}
|
||||
|
||||
var Detector = function () {
|
||||
function Detector() {
|
||||
classCallCheck(this, Detector);
|
||||
}
|
||||
|
||||
createClass(Detector, [{
|
||||
key: 'phone',
|
||||
value: function phone() {
|
||||
var a = ua();
|
||||
return !!(fullNameRe.test(a) || prefixRe.test(a.substr(0, 4)));
|
||||
}
|
||||
}, {
|
||||
key: 'mobile',
|
||||
value: function mobile() {
|
||||
var a = ua();
|
||||
return !!(fullNameMobileRe.test(a) || prefixMobileRe.test(a.substr(0, 4)));
|
||||
}
|
||||
}, {
|
||||
key: 'tablet',
|
||||
value: function tablet() {
|
||||
return this.mobile() && !this.phone();
|
||||
}
|
||||
|
||||
// http://browserhacks.com/#hack-acea075d0ac6954f275a70023906050c
|
||||
|
||||
}, {
|
||||
key: 'ie11',
|
||||
value: function ie11() {
|
||||
return '-ms-scroll-limit' in document.documentElement.style && '-ms-ime-align' in document.documentElement.style;
|
||||
}
|
||||
}]);
|
||||
return Detector;
|
||||
}();
|
||||
|
||||
var detect = new Detector();
|
||||
|
||||
/**
|
||||
* Adds multiple classes on node
|
||||
* @param {DOMNode} node
|
||||
* @param {array} classes
|
||||
*/
|
||||
var addClasses = function addClasses(node, classes) {
|
||||
return classes && classes.forEach(function (className) {
|
||||
return node.classList.add(className);
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Removes multiple classes from node
|
||||
* @param {DOMNode} node
|
||||
* @param {array} classes
|
||||
*/
|
||||
var removeClasses = function removeClasses(node, classes) {
|
||||
return classes && classes.forEach(function (className) {
|
||||
return node.classList.remove(className);
|
||||
});
|
||||
};
|
||||
|
||||
var fireEvent = function fireEvent(eventName, data) {
|
||||
var customEvent = void 0;
|
||||
|
||||
if (detect.ie11()) {
|
||||
customEvent = document.createEvent('CustomEvent');
|
||||
customEvent.initCustomEvent(eventName, true, true, { detail: data });
|
||||
} else {
|
||||
customEvent = new CustomEvent(eventName, {
|
||||
detail: data
|
||||
});
|
||||
}
|
||||
|
||||
return document.dispatchEvent(customEvent);
|
||||
};
|
||||
|
||||
/**
|
||||
* Set or remove aos-animate class
|
||||
* @param {node} el element
|
||||
* @param {int} top scrolled distance
|
||||
*/
|
||||
var applyClasses = function applyClasses(el, top) {
|
||||
var options = el.options,
|
||||
position = el.position,
|
||||
node = el.node,
|
||||
data = el.data;
|
||||
|
||||
|
||||
var hide = function hide() {
|
||||
if (!el.animated) return;
|
||||
|
||||
removeClasses(node, options.animatedClassNames);
|
||||
fireEvent('aos:out', node);
|
||||
|
||||
if (el.options.id) {
|
||||
fireEvent('aos:in:' + el.options.id, node);
|
||||
}
|
||||
|
||||
el.animated = false;
|
||||
};
|
||||
|
||||
var show = function show() {
|
||||
if (el.animated) return;
|
||||
|
||||
addClasses(node, options.animatedClassNames);
|
||||
|
||||
fireEvent('aos:in', node);
|
||||
if (el.options.id) {
|
||||
fireEvent('aos:in:' + el.options.id, node);
|
||||
}
|
||||
|
||||
el.animated = true;
|
||||
};
|
||||
|
||||
if (options.mirror && top >= position.out && !options.once) {
|
||||
hide();
|
||||
} else if (top >= position.in) {
|
||||
show();
|
||||
} else if (el.animated && !options.once) {
|
||||
hide();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Scroll logic - add or remove 'aos-animate' class on scroll
|
||||
*
|
||||
* @param {array} $elements array of elements nodes
|
||||
* @return {void}
|
||||
*/
|
||||
var handleScroll = function handleScroll($elements) {
|
||||
return $elements.forEach(function (el, i) {
|
||||
return applyClasses(el, window.pageYOffset);
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Get offset of DOM element
|
||||
* like there were no transforms applied on it
|
||||
*
|
||||
* @param {Node} el [DOM element]
|
||||
* @return {Object} [top and left offset]
|
||||
*/
|
||||
var offset = function offset(el) {
|
||||
var _x = 0;
|
||||
var _y = 0;
|
||||
|
||||
while (el && !isNaN(el.offsetLeft) && !isNaN(el.offsetTop)) {
|
||||
_x += el.offsetLeft - (el.tagName != 'BODY' ? el.scrollLeft : 0);
|
||||
_y += el.offsetTop - (el.tagName != 'BODY' ? el.scrollTop : 0);
|
||||
el = el.offsetParent;
|
||||
}
|
||||
|
||||
return {
|
||||
top: _y,
|
||||
left: _x
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Get inline option with a fallback.
|
||||
*
|
||||
* @param {Node} el [Dom element]
|
||||
* @param {String} key [Option key]
|
||||
* @param {String} fallback [Default (fallback) value]
|
||||
* @return {Mixed} [Option set with inline attributes or fallback value if not set]
|
||||
*/
|
||||
|
||||
var getInlineOption = (function (el, key, fallback) {
|
||||
var attr = el.getAttribute('data-aos-' + key);
|
||||
|
||||
if (typeof attr !== 'undefined') {
|
||||
if (attr === 'true') {
|
||||
return true;
|
||||
} else if (attr === 'false') {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return attr || fallback;
|
||||
});
|
||||
|
||||
/**
|
||||
* Calculate offset
|
||||
* basing on element's settings like:
|
||||
* - anchor
|
||||
* - offset
|
||||
*
|
||||
* @param {Node} el [Dom element]
|
||||
* @return {Integer} [Final offset that will be used to trigger animation in good position]
|
||||
*/
|
||||
|
||||
var getPositionIn = function getPositionIn(el, defaultOffset, defaultAnchorPlacement) {
|
||||
var windowHeight = window.innerHeight;
|
||||
var anchor = getInlineOption(el, 'anchor');
|
||||
var inlineAnchorPlacement = getInlineOption(el, 'anchor-placement');
|
||||
var additionalOffset = Number(getInlineOption(el, 'offset', inlineAnchorPlacement ? 0 : defaultOffset));
|
||||
var anchorPlacement = inlineAnchorPlacement || defaultAnchorPlacement;
|
||||
var finalEl = el;
|
||||
|
||||
if (anchor && document.querySelectorAll(anchor)) {
|
||||
finalEl = document.querySelectorAll(anchor)[0];
|
||||
}
|
||||
|
||||
var triggerPoint = offset(finalEl).top - windowHeight;
|
||||
|
||||
switch (anchorPlacement) {
|
||||
case 'top-bottom':
|
||||
// Default offset
|
||||
break;
|
||||
case 'center-bottom':
|
||||
triggerPoint += finalEl.offsetHeight / 2;
|
||||
break;
|
||||
case 'bottom-bottom':
|
||||
triggerPoint += finalEl.offsetHeight;
|
||||
break;
|
||||
case 'top-center':
|
||||
triggerPoint += windowHeight / 2;
|
||||
break;
|
||||
case 'center-center':
|
||||
triggerPoint += windowHeight / 2 + finalEl.offsetHeight / 2;
|
||||
break;
|
||||
case 'bottom-center':
|
||||
triggerPoint += windowHeight / 2 + finalEl.offsetHeight;
|
||||
break;
|
||||
case 'top-top':
|
||||
triggerPoint += windowHeight;
|
||||
break;
|
||||
case 'bottom-top':
|
||||
triggerPoint += windowHeight + finalEl.offsetHeight;
|
||||
break;
|
||||
case 'center-top':
|
||||
triggerPoint += windowHeight + finalEl.offsetHeight / 2;
|
||||
break;
|
||||
}
|
||||
|
||||
return triggerPoint + additionalOffset;
|
||||
};
|
||||
|
||||
var getPositionOut = function getPositionOut(el, defaultOffset) {
|
||||
var windowHeight = window.innerHeight;
|
||||
var anchor = getInlineOption(el, 'anchor');
|
||||
var additionalOffset = getInlineOption(el, 'offset', defaultOffset);
|
||||
var finalEl = el;
|
||||
|
||||
if (anchor && document.querySelectorAll(anchor)) {
|
||||
finalEl = document.querySelectorAll(anchor)[0];
|
||||
}
|
||||
|
||||
var elementOffsetTop = offset(finalEl).top;
|
||||
|
||||
return elementOffsetTop + finalEl.offsetHeight - additionalOffset;
|
||||
};
|
||||
|
||||
/* Clearing variables */
|
||||
|
||||
var prepare = function prepare($elements, options) {
|
||||
$elements.forEach(function (el, i) {
|
||||
var mirror = getInlineOption(el.node, 'mirror', options.mirror);
|
||||
var once = getInlineOption(el.node, 'once', options.once);
|
||||
var id = getInlineOption(el.node, 'id');
|
||||
var customClassNames = options.useClassNames && el.node.getAttribute('data-aos');
|
||||
|
||||
var animatedClassNames = [options.animatedClassName].concat(customClassNames ? customClassNames.split(' ') : []).filter(function (className) {
|
||||
return typeof className === 'string';
|
||||
});
|
||||
|
||||
if (options.initClassName) {
|
||||
el.node.classList.add(options.initClassName);
|
||||
}
|
||||
|
||||
el.position = {
|
||||
in: getPositionIn(el.node, options.offset, options.anchorPlacement),
|
||||
out: mirror && getPositionOut(el.node, options.offset)
|
||||
};
|
||||
|
||||
el.options = {
|
||||
once: once,
|
||||
mirror: mirror,
|
||||
animatedClassNames: animatedClassNames,
|
||||
id: id
|
||||
};
|
||||
});
|
||||
|
||||
return $elements;
|
||||
};
|
||||
|
||||
/**
|
||||
* Generate initial array with elements as objects
|
||||
* This array will be extended later with elements attributes values
|
||||
* like 'position'
|
||||
*/
|
||||
var elements = (function () {
|
||||
var elements = document.querySelectorAll('[data-aos]');
|
||||
return Array.prototype.map.call(elements, function (node) {
|
||||
return { node: node };
|
||||
});
|
||||
});
|
||||
|
||||
/**
|
||||
* *******************************************************
|
||||
* AOS (Animate on scroll) - wowjs alternative
|
||||
* made to animate elements on scroll in both directions
|
||||
* *******************************************************
|
||||
*/
|
||||
|
||||
/**
|
||||
* Private variables
|
||||
*/
|
||||
var $aosElements = [];
|
||||
var initialized = false;
|
||||
|
||||
/**
|
||||
* Default options
|
||||
*/
|
||||
var options = {
|
||||
offset: 120,
|
||||
delay: 0,
|
||||
easing: 'ease',
|
||||
duration: 400,
|
||||
disable: false,
|
||||
once: false,
|
||||
mirror: false,
|
||||
anchorPlacement: 'top-bottom',
|
||||
startEvent: 'DOMContentLoaded',
|
||||
animatedClassName: 'aos-animate',
|
||||
initClassName: 'aos-init',
|
||||
useClassNames: false,
|
||||
disableMutationObserver: false,
|
||||
throttleDelay: 99,
|
||||
debounceDelay: 50
|
||||
};
|
||||
|
||||
// Detect not supported browsers (<=IE9)
|
||||
// http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805
|
||||
var isBrowserNotSupported = function isBrowserNotSupported() {
|
||||
return document.all && !window.atob;
|
||||
};
|
||||
|
||||
var initializeScroll = function initializeScroll() {
|
||||
// Extend elements objects in $aosElements with their positions
|
||||
$aosElements = prepare($aosElements, options);
|
||||
// Perform scroll event, to refresh view and show/hide elements
|
||||
handleScroll($aosElements);
|
||||
|
||||
/**
|
||||
* Handle scroll event to animate elements on scroll
|
||||
*/
|
||||
window.addEventListener('scroll', throttle(function () {
|
||||
handleScroll($aosElements, options.once);
|
||||
}, options.throttleDelay));
|
||||
|
||||
return $aosElements;
|
||||
};
|
||||
|
||||
/**
|
||||
* Refresh AOS
|
||||
*/
|
||||
var refresh = function refresh() {
|
||||
var initialize = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||
|
||||
// Allow refresh only when it was first initialized on startEvent
|
||||
if (initialize) initialized = true;
|
||||
if (initialized) initializeScroll();
|
||||
};
|
||||
|
||||
/**
|
||||
* Hard refresh
|
||||
* create array with new elements and trigger refresh
|
||||
*/
|
||||
var refreshHard = function refreshHard() {
|
||||
$aosElements = elements();
|
||||
|
||||
if (isDisabled(options.disable) || isBrowserNotSupported()) {
|
||||
return disable();
|
||||
}
|
||||
|
||||
refresh();
|
||||
};
|
||||
|
||||
/**
|
||||
* Disable AOS
|
||||
* Remove all attributes to reset applied styles
|
||||
*/
|
||||
var disable = function disable() {
|
||||
$aosElements.forEach(function (el, i) {
|
||||
el.node.removeAttribute('data-aos');
|
||||
el.node.removeAttribute('data-aos-easing');
|
||||
el.node.removeAttribute('data-aos-duration');
|
||||
el.node.removeAttribute('data-aos-delay');
|
||||
|
||||
if (options.initClassName) {
|
||||
el.node.classList.remove(options.initClassName);
|
||||
}
|
||||
|
||||
if (options.animatedClassName) {
|
||||
el.node.classList.remove(options.animatedClassName);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Check if AOS should be disabled based on provided setting
|
||||
*/
|
||||
var isDisabled = function isDisabled(optionDisable) {
|
||||
return optionDisable === true || optionDisable === 'mobile' && detect.mobile() || optionDisable === 'phone' && detect.phone() || optionDisable === 'tablet' && detect.tablet() || typeof optionDisable === 'function' && optionDisable() === true;
|
||||
};
|
||||
|
||||
/**
|
||||
* Initializing AOS
|
||||
* - Create options merging defaults with user defined options
|
||||
* - Set attributes on <body> as global setting - css relies on it
|
||||
* - Attach preparing elements to options.startEvent,
|
||||
* window resize and orientation change
|
||||
* - Attach function that handle scroll and everything connected to it
|
||||
* to window scroll event and fire once document is ready to set initial state
|
||||
*/
|
||||
var init = function init(settings) {
|
||||
options = _extends(options, settings);
|
||||
|
||||
// Create initial array with elements -> to be fullfilled later with prepare()
|
||||
$aosElements = elements();
|
||||
|
||||
/**
|
||||
* Disable mutation observing if not supported
|
||||
*/
|
||||
if (!options.disableMutationObserver && !observer.isSupported()) {
|
||||
console.info('\n aos: MutationObserver is not supported on this browser,\n code mutations observing has been disabled.\n You may have to call "refreshHard()" by yourself.\n ');
|
||||
options.disableMutationObserver = true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Observe [aos] elements
|
||||
* If something is loaded by AJAX
|
||||
* it'll refresh plugin automatically
|
||||
*/
|
||||
if (!options.disableMutationObserver) {
|
||||
observer.ready('[data-aos]', refreshHard);
|
||||
}
|
||||
|
||||
/**
|
||||
* Don't init plugin if option `disable` is set
|
||||
* or when browser is not supported
|
||||
*/
|
||||
if (isDisabled(options.disable) || isBrowserNotSupported()) {
|
||||
return disable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set global settings on body, based on options
|
||||
* so CSS can use it
|
||||
*/
|
||||
document.querySelector('body').setAttribute('data-aos-easing', options.easing);
|
||||
|
||||
document.querySelector('body').setAttribute('data-aos-duration', options.duration);
|
||||
|
||||
document.querySelector('body').setAttribute('data-aos-delay', options.delay);
|
||||
|
||||
/**
|
||||
* Handle initializing
|
||||
*/
|
||||
if (['DOMContentLoaded', 'load'].indexOf(options.startEvent) === -1) {
|
||||
// Listen to options.startEvent and initialize AOS
|
||||
document.addEventListener(options.startEvent, function () {
|
||||
refresh(true);
|
||||
});
|
||||
} else {
|
||||
window.addEventListener('load', function () {
|
||||
refresh(true);
|
||||
});
|
||||
}
|
||||
|
||||
if (options.startEvent === 'DOMContentLoaded' && ['complete', 'interactive'].indexOf(document.readyState) > -1) {
|
||||
// Initialize AOS if default startEvent was already fired
|
||||
refresh(true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Refresh plugin on window resize or orientation change
|
||||
*/
|
||||
window.addEventListener('resize', debounce(refresh, options.debounceDelay, true));
|
||||
|
||||
window.addEventListener('orientationchange', debounce(refresh, options.debounceDelay, true));
|
||||
|
||||
return $aosElements;
|
||||
};
|
||||
|
||||
/**
|
||||
* Export Public API
|
||||
*/
|
||||
|
||||
var aos = {
|
||||
init: init,
|
||||
refresh: refresh,
|
||||
refreshHard: refreshHard
|
||||
};
|
||||
|
||||
module.exports = aos;
|
1
public/assets-login-landing/vendor/aos/aos.css
vendored
Normal file
610
public/assets-login-landing/vendor/aos/aos.esm.js
vendored
Normal file
@ -0,0 +1,610 @@
|
||||
import throttle from 'lodash.throttle';
|
||||
import debounce from 'lodash.debounce';
|
||||
|
||||
var callback = function callback() {};
|
||||
|
||||
function containsAOSNode(nodes) {
|
||||
var i = void 0,
|
||||
currentNode = void 0,
|
||||
result = void 0;
|
||||
|
||||
for (i = 0; i < nodes.length; i += 1) {
|
||||
currentNode = nodes[i];
|
||||
|
||||
if (currentNode.dataset && currentNode.dataset.aos) {
|
||||
return true;
|
||||
}
|
||||
|
||||
result = currentNode.children && containsAOSNode(currentNode.children);
|
||||
|
||||
if (result) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function check(mutations) {
|
||||
if (!mutations) return;
|
||||
|
||||
mutations.forEach(function (mutation) {
|
||||
var addedNodes = Array.prototype.slice.call(mutation.addedNodes);
|
||||
var removedNodes = Array.prototype.slice.call(mutation.removedNodes);
|
||||
var allNodes = addedNodes.concat(removedNodes);
|
||||
|
||||
if (containsAOSNode(allNodes)) {
|
||||
return callback();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function getMutationObserver() {
|
||||
return window.MutationObserver || window.WebKitMutationObserver || window.MozMutationObserver;
|
||||
}
|
||||
|
||||
function isSupported() {
|
||||
return !!getMutationObserver();
|
||||
}
|
||||
|
||||
function ready(selector, fn) {
|
||||
var doc = window.document;
|
||||
var MutationObserver = getMutationObserver();
|
||||
|
||||
var observer = new MutationObserver(check);
|
||||
callback = fn;
|
||||
|
||||
observer.observe(doc.documentElement, {
|
||||
childList: true,
|
||||
subtree: true,
|
||||
removedNodes: true
|
||||
});
|
||||
}
|
||||
|
||||
var observer = { isSupported: isSupported, ready: ready };
|
||||
|
||||
var classCallCheck = function (instance, Constructor) {
|
||||
if (!(instance instanceof Constructor)) {
|
||||
throw new TypeError("Cannot call a class as a function");
|
||||
}
|
||||
};
|
||||
|
||||
var createClass = function () {
|
||||
function defineProperties(target, props) {
|
||||
for (var i = 0; i < props.length; i++) {
|
||||
var descriptor = props[i];
|
||||
descriptor.enumerable = descriptor.enumerable || false;
|
||||
descriptor.configurable = true;
|
||||
if ("value" in descriptor) descriptor.writable = true;
|
||||
Object.defineProperty(target, descriptor.key, descriptor);
|
||||
}
|
||||
}
|
||||
|
||||
return function (Constructor, protoProps, staticProps) {
|
||||
if (protoProps) defineProperties(Constructor.prototype, protoProps);
|
||||
if (staticProps) defineProperties(Constructor, staticProps);
|
||||
return Constructor;
|
||||
};
|
||||
}();
|
||||
|
||||
var _extends = Object.assign || function (target) {
|
||||
for (var i = 1; i < arguments.length; i++) {
|
||||
var source = arguments[i];
|
||||
|
||||
for (var key in source) {
|
||||
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
||||
target[key] = source[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return target;
|
||||
};
|
||||
|
||||
/**
|
||||
* Device detector
|
||||
*/
|
||||
|
||||
var fullNameRe = /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i;
|
||||
var prefixRe = /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i;
|
||||
var fullNameMobileRe = /(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i;
|
||||
var prefixMobileRe = /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i;
|
||||
|
||||
function ua() {
|
||||
return navigator.userAgent || navigator.vendor || window.opera || '';
|
||||
}
|
||||
|
||||
var Detector = function () {
|
||||
function Detector() {
|
||||
classCallCheck(this, Detector);
|
||||
}
|
||||
|
||||
createClass(Detector, [{
|
||||
key: 'phone',
|
||||
value: function phone() {
|
||||
var a = ua();
|
||||
return !!(fullNameRe.test(a) || prefixRe.test(a.substr(0, 4)));
|
||||
}
|
||||
}, {
|
||||
key: 'mobile',
|
||||
value: function mobile() {
|
||||
var a = ua();
|
||||
return !!(fullNameMobileRe.test(a) || prefixMobileRe.test(a.substr(0, 4)));
|
||||
}
|
||||
}, {
|
||||
key: 'tablet',
|
||||
value: function tablet() {
|
||||
return this.mobile() && !this.phone();
|
||||
}
|
||||
|
||||
// http://browserhacks.com/#hack-acea075d0ac6954f275a70023906050c
|
||||
|
||||
}, {
|
||||
key: 'ie11',
|
||||
value: function ie11() {
|
||||
return '-ms-scroll-limit' in document.documentElement.style && '-ms-ime-align' in document.documentElement.style;
|
||||
}
|
||||
}]);
|
||||
return Detector;
|
||||
}();
|
||||
|
||||
var detect = new Detector();
|
||||
|
||||
/**
|
||||
* Adds multiple classes on node
|
||||
* @param {DOMNode} node
|
||||
* @param {array} classes
|
||||
*/
|
||||
var addClasses = function addClasses(node, classes) {
|
||||
return classes && classes.forEach(function (className) {
|
||||
return node.classList.add(className);
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Removes multiple classes from node
|
||||
* @param {DOMNode} node
|
||||
* @param {array} classes
|
||||
*/
|
||||
var removeClasses = function removeClasses(node, classes) {
|
||||
return classes && classes.forEach(function (className) {
|
||||
return node.classList.remove(className);
|
||||
});
|
||||
};
|
||||
|
||||
var fireEvent = function fireEvent(eventName, data) {
|
||||
var customEvent = void 0;
|
||||
|
||||
if (detect.ie11()) {
|
||||
customEvent = document.createEvent('CustomEvent');
|
||||
customEvent.initCustomEvent(eventName, true, true, { detail: data });
|
||||
} else {
|
||||
customEvent = new CustomEvent(eventName, {
|
||||
detail: data
|
||||
});
|
||||
}
|
||||
|
||||
return document.dispatchEvent(customEvent);
|
||||
};
|
||||
|
||||
/**
|
||||
* Set or remove aos-animate class
|
||||
* @param {node} el element
|
||||
* @param {int} top scrolled distance
|
||||
*/
|
||||
var applyClasses = function applyClasses(el, top) {
|
||||
var options = el.options,
|
||||
position = el.position,
|
||||
node = el.node,
|
||||
data = el.data;
|
||||
|
||||
|
||||
var hide = function hide() {
|
||||
if (!el.animated) return;
|
||||
|
||||
removeClasses(node, options.animatedClassNames);
|
||||
fireEvent('aos:out', node);
|
||||
|
||||
if (el.options.id) {
|
||||
fireEvent('aos:in:' + el.options.id, node);
|
||||
}
|
||||
|
||||
el.animated = false;
|
||||
};
|
||||
|
||||
var show = function show() {
|
||||
if (el.animated) return;
|
||||
|
||||
addClasses(node, options.animatedClassNames);
|
||||
|
||||
fireEvent('aos:in', node);
|
||||
if (el.options.id) {
|
||||
fireEvent('aos:in:' + el.options.id, node);
|
||||
}
|
||||
|
||||
el.animated = true;
|
||||
};
|
||||
|
||||
if (options.mirror && top >= position.out && !options.once) {
|
||||
hide();
|
||||
} else if (top >= position.in) {
|
||||
show();
|
||||
} else if (el.animated && !options.once) {
|
||||
hide();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Scroll logic - add or remove 'aos-animate' class on scroll
|
||||
*
|
||||
* @param {array} $elements array of elements nodes
|
||||
* @return {void}
|
||||
*/
|
||||
var handleScroll = function handleScroll($elements) {
|
||||
return $elements.forEach(function (el, i) {
|
||||
return applyClasses(el, window.pageYOffset);
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Get offset of DOM element
|
||||
* like there were no transforms applied on it
|
||||
*
|
||||
* @param {Node} el [DOM element]
|
||||
* @return {Object} [top and left offset]
|
||||
*/
|
||||
var offset = function offset(el) {
|
||||
var _x = 0;
|
||||
var _y = 0;
|
||||
|
||||
while (el && !isNaN(el.offsetLeft) && !isNaN(el.offsetTop)) {
|
||||
_x += el.offsetLeft - (el.tagName != 'BODY' ? el.scrollLeft : 0);
|
||||
_y += el.offsetTop - (el.tagName != 'BODY' ? el.scrollTop : 0);
|
||||
el = el.offsetParent;
|
||||
}
|
||||
|
||||
return {
|
||||
top: _y,
|
||||
left: _x
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Get inline option with a fallback.
|
||||
*
|
||||
* @param {Node} el [Dom element]
|
||||
* @param {String} key [Option key]
|
||||
* @param {String} fallback [Default (fallback) value]
|
||||
* @return {Mixed} [Option set with inline attributes or fallback value if not set]
|
||||
*/
|
||||
|
||||
var getInlineOption = (function (el, key, fallback) {
|
||||
var attr = el.getAttribute('data-aos-' + key);
|
||||
|
||||
if (typeof attr !== 'undefined') {
|
||||
if (attr === 'true') {
|
||||
return true;
|
||||
} else if (attr === 'false') {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return attr || fallback;
|
||||
});
|
||||
|
||||
/**
|
||||
* Calculate offset
|
||||
* basing on element's settings like:
|
||||
* - anchor
|
||||
* - offset
|
||||
*
|
||||
* @param {Node} el [Dom element]
|
||||
* @return {Integer} [Final offset that will be used to trigger animation in good position]
|
||||
*/
|
||||
|
||||
var getPositionIn = function getPositionIn(el, defaultOffset, defaultAnchorPlacement) {
|
||||
var windowHeight = window.innerHeight;
|
||||
var anchor = getInlineOption(el, 'anchor');
|
||||
var inlineAnchorPlacement = getInlineOption(el, 'anchor-placement');
|
||||
var additionalOffset = Number(getInlineOption(el, 'offset', inlineAnchorPlacement ? 0 : defaultOffset));
|
||||
var anchorPlacement = inlineAnchorPlacement || defaultAnchorPlacement;
|
||||
var finalEl = el;
|
||||
|
||||
if (anchor && document.querySelectorAll(anchor)) {
|
||||
finalEl = document.querySelectorAll(anchor)[0];
|
||||
}
|
||||
|
||||
var triggerPoint = offset(finalEl).top - windowHeight;
|
||||
|
||||
switch (anchorPlacement) {
|
||||
case 'top-bottom':
|
||||
// Default offset
|
||||
break;
|
||||
case 'center-bottom':
|
||||
triggerPoint += finalEl.offsetHeight / 2;
|
||||
break;
|
||||
case 'bottom-bottom':
|
||||
triggerPoint += finalEl.offsetHeight;
|
||||
break;
|
||||
case 'top-center':
|
||||
triggerPoint += windowHeight / 2;
|
||||
break;
|
||||
case 'center-center':
|
||||
triggerPoint += windowHeight / 2 + finalEl.offsetHeight / 2;
|
||||
break;
|
||||
case 'bottom-center':
|
||||
triggerPoint += windowHeight / 2 + finalEl.offsetHeight;
|
||||
break;
|
||||
case 'top-top':
|
||||
triggerPoint += windowHeight;
|
||||
break;
|
||||
case 'bottom-top':
|
||||
triggerPoint += windowHeight + finalEl.offsetHeight;
|
||||
break;
|
||||
case 'center-top':
|
||||
triggerPoint += windowHeight + finalEl.offsetHeight / 2;
|
||||
break;
|
||||
}
|
||||
|
||||
return triggerPoint + additionalOffset;
|
||||
};
|
||||
|
||||
var getPositionOut = function getPositionOut(el, defaultOffset) {
|
||||
var windowHeight = window.innerHeight;
|
||||
var anchor = getInlineOption(el, 'anchor');
|
||||
var additionalOffset = getInlineOption(el, 'offset', defaultOffset);
|
||||
var finalEl = el;
|
||||
|
||||
if (anchor && document.querySelectorAll(anchor)) {
|
||||
finalEl = document.querySelectorAll(anchor)[0];
|
||||
}
|
||||
|
||||
var elementOffsetTop = offset(finalEl).top;
|
||||
|
||||
return elementOffsetTop + finalEl.offsetHeight - additionalOffset;
|
||||
};
|
||||
|
||||
/* Clearing variables */
|
||||
|
||||
var prepare = function prepare($elements, options) {
|
||||
$elements.forEach(function (el, i) {
|
||||
var mirror = getInlineOption(el.node, 'mirror', options.mirror);
|
||||
var once = getInlineOption(el.node, 'once', options.once);
|
||||
var id = getInlineOption(el.node, 'id');
|
||||
var customClassNames = options.useClassNames && el.node.getAttribute('data-aos');
|
||||
|
||||
var animatedClassNames = [options.animatedClassName].concat(customClassNames ? customClassNames.split(' ') : []).filter(function (className) {
|
||||
return typeof className === 'string';
|
||||
});
|
||||
|
||||
if (options.initClassName) {
|
||||
el.node.classList.add(options.initClassName);
|
||||
}
|
||||
|
||||
el.position = {
|
||||
in: getPositionIn(el.node, options.offset, options.anchorPlacement),
|
||||
out: mirror && getPositionOut(el.node, options.offset)
|
||||
};
|
||||
|
||||
el.options = {
|
||||
once: once,
|
||||
mirror: mirror,
|
||||
animatedClassNames: animatedClassNames,
|
||||
id: id
|
||||
};
|
||||
});
|
||||
|
||||
return $elements;
|
||||
};
|
||||
|
||||
/**
|
||||
* Generate initial array with elements as objects
|
||||
* This array will be extended later with elements attributes values
|
||||
* like 'position'
|
||||
*/
|
||||
var elements = (function () {
|
||||
var elements = document.querySelectorAll('[data-aos]');
|
||||
return Array.prototype.map.call(elements, function (node) {
|
||||
return { node: node };
|
||||
});
|
||||
});
|
||||
|
||||
/**
|
||||
* *******************************************************
|
||||
* AOS (Animate on scroll) - wowjs alternative
|
||||
* made to animate elements on scroll in both directions
|
||||
* *******************************************************
|
||||
*/
|
||||
|
||||
/**
|
||||
* Private variables
|
||||
*/
|
||||
var $aosElements = [];
|
||||
var initialized = false;
|
||||
|
||||
/**
|
||||
* Default options
|
||||
*/
|
||||
var options = {
|
||||
offset: 120,
|
||||
delay: 0,
|
||||
easing: 'ease',
|
||||
duration: 400,
|
||||
disable: false,
|
||||
once: false,
|
||||
mirror: false,
|
||||
anchorPlacement: 'top-bottom',
|
||||
startEvent: 'DOMContentLoaded',
|
||||
animatedClassName: 'aos-animate',
|
||||
initClassName: 'aos-init',
|
||||
useClassNames: false,
|
||||
disableMutationObserver: false,
|
||||
throttleDelay: 99,
|
||||
debounceDelay: 50
|
||||
};
|
||||
|
||||
// Detect not supported browsers (<=IE9)
|
||||
// http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805
|
||||
var isBrowserNotSupported = function isBrowserNotSupported() {
|
||||
return document.all && !window.atob;
|
||||
};
|
||||
|
||||
var initializeScroll = function initializeScroll() {
|
||||
// Extend elements objects in $aosElements with their positions
|
||||
$aosElements = prepare($aosElements, options);
|
||||
// Perform scroll event, to refresh view and show/hide elements
|
||||
handleScroll($aosElements);
|
||||
|
||||
/**
|
||||
* Handle scroll event to animate elements on scroll
|
||||
*/
|
||||
window.addEventListener('scroll', throttle(function () {
|
||||
handleScroll($aosElements, options.once);
|
||||
}, options.throttleDelay));
|
||||
|
||||
return $aosElements;
|
||||
};
|
||||
|
||||
/**
|
||||
* Refresh AOS
|
||||
*/
|
||||
var refresh = function refresh() {
|
||||
var initialize = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||
|
||||
// Allow refresh only when it was first initialized on startEvent
|
||||
if (initialize) initialized = true;
|
||||
if (initialized) initializeScroll();
|
||||
};
|
||||
|
||||
/**
|
||||
* Hard refresh
|
||||
* create array with new elements and trigger refresh
|
||||
*/
|
||||
var refreshHard = function refreshHard() {
|
||||
$aosElements = elements();
|
||||
|
||||
if (isDisabled(options.disable) || isBrowserNotSupported()) {
|
||||
return disable();
|
||||
}
|
||||
|
||||
refresh();
|
||||
};
|
||||
|
||||
/**
|
||||
* Disable AOS
|
||||
* Remove all attributes to reset applied styles
|
||||
*/
|
||||
var disable = function disable() {
|
||||
$aosElements.forEach(function (el, i) {
|
||||
el.node.removeAttribute('data-aos');
|
||||
el.node.removeAttribute('data-aos-easing');
|
||||
el.node.removeAttribute('data-aos-duration');
|
||||
el.node.removeAttribute('data-aos-delay');
|
||||
|
||||
if (options.initClassName) {
|
||||
el.node.classList.remove(options.initClassName);
|
||||
}
|
||||
|
||||
if (options.animatedClassName) {
|
||||
el.node.classList.remove(options.animatedClassName);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Check if AOS should be disabled based on provided setting
|
||||
*/
|
||||
var isDisabled = function isDisabled(optionDisable) {
|
||||
return optionDisable === true || optionDisable === 'mobile' && detect.mobile() || optionDisable === 'phone' && detect.phone() || optionDisable === 'tablet' && detect.tablet() || typeof optionDisable === 'function' && optionDisable() === true;
|
||||
};
|
||||
|
||||
/**
|
||||
* Initializing AOS
|
||||
* - Create options merging defaults with user defined options
|
||||
* - Set attributes on <body> as global setting - css relies on it
|
||||
* - Attach preparing elements to options.startEvent,
|
||||
* window resize and orientation change
|
||||
* - Attach function that handle scroll and everything connected to it
|
||||
* to window scroll event and fire once document is ready to set initial state
|
||||
*/
|
||||
var init = function init(settings) {
|
||||
options = _extends(options, settings);
|
||||
|
||||
// Create initial array with elements -> to be fullfilled later with prepare()
|
||||
$aosElements = elements();
|
||||
|
||||
/**
|
||||
* Disable mutation observing if not supported
|
||||
*/
|
||||
if (!options.disableMutationObserver && !observer.isSupported()) {
|
||||
console.info('\n aos: MutationObserver is not supported on this browser,\n code mutations observing has been disabled.\n You may have to call "refreshHard()" by yourself.\n ');
|
||||
options.disableMutationObserver = true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Observe [aos] elements
|
||||
* If something is loaded by AJAX
|
||||
* it'll refresh plugin automatically
|
||||
*/
|
||||
if (!options.disableMutationObserver) {
|
||||
observer.ready('[data-aos]', refreshHard);
|
||||
}
|
||||
|
||||
/**
|
||||
* Don't init plugin if option `disable` is set
|
||||
* or when browser is not supported
|
||||
*/
|
||||
if (isDisabled(options.disable) || isBrowserNotSupported()) {
|
||||
return disable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Set global settings on body, based on options
|
||||
* so CSS can use it
|
||||
*/
|
||||
document.querySelector('body').setAttribute('data-aos-easing', options.easing);
|
||||
|
||||
document.querySelector('body').setAttribute('data-aos-duration', options.duration);
|
||||
|
||||
document.querySelector('body').setAttribute('data-aos-delay', options.delay);
|
||||
|
||||
/**
|
||||
* Handle initializing
|
||||
*/
|
||||
if (['DOMContentLoaded', 'load'].indexOf(options.startEvent) === -1) {
|
||||
// Listen to options.startEvent and initialize AOS
|
||||
document.addEventListener(options.startEvent, function () {
|
||||
refresh(true);
|
||||
});
|
||||
} else {
|
||||
window.addEventListener('load', function () {
|
||||
refresh(true);
|
||||
});
|
||||
}
|
||||
|
||||
if (options.startEvent === 'DOMContentLoaded' && ['complete', 'interactive'].indexOf(document.readyState) > -1) {
|
||||
// Initialize AOS if default startEvent was already fired
|
||||
refresh(true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Refresh plugin on window resize or orientation change
|
||||
*/
|
||||
window.addEventListener('resize', debounce(refresh, options.debounceDelay, true));
|
||||
|
||||
window.addEventListener('orientationchange', debounce(refresh, options.debounceDelay, true));
|
||||
|
||||
return $aosElements;
|
||||
};
|
||||
|
||||
/**
|
||||
* Export Public API
|
||||
*/
|
||||
|
||||
var aos = {
|
||||
init: init,
|
||||
refresh: refresh,
|
||||
refreshHard: refreshHard
|
||||
};
|
||||
|
||||
export default aos;
|
1
public/assets-login-landing/vendor/aos/aos.js
vendored
Normal file
1
public/assets-login-landing/vendor/aos/aos.js.map
vendored
Normal file
12068
public/assets-login-landing/vendor/bootstrap/css/bootstrap.css
vendored
Normal file
6
public/assets-login-landing/vendor/bootstrap/css/bootstrap.min.css
vendored
Normal file
12032
public/assets-login-landing/vendor/bootstrap/css/bootstrap.rtl.css
vendored
Normal file
6
public/assets-login-landing/vendor/bootstrap/css/bootstrap.rtl.min.css
vendored
Normal file
386
public/assets-login-landing/vendor/boxicons/css/animations.css
vendored
Normal file
@ -0,0 +1,386 @@
|
||||
@-webkit-keyframes spin
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0);
|
||||
}
|
||||
100%
|
||||
{
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@keyframes spin
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0);
|
||||
}
|
||||
100%
|
||||
{
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes burst
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
90%
|
||||
{
|
||||
-webkit-transform: scale(1.5);
|
||||
transform: scale(1.5);
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@keyframes burst
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: scale(1);
|
||||
transform: scale(1);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
90%
|
||||
{
|
||||
-webkit-transform: scale(1.5);
|
||||
transform: scale(1.5);
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes flashing
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
45%
|
||||
{
|
||||
opacity: 0;
|
||||
}
|
||||
90%
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes flashing
|
||||
{
|
||||
0%
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
45%
|
||||
{
|
||||
opacity: 0;
|
||||
}
|
||||
90%
|
||||
{
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fade-left
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
75%
|
||||
{
|
||||
-webkit-transform: translateX(-20px);
|
||||
transform: translateX(-20px);
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@keyframes fade-left
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
75%
|
||||
{
|
||||
-webkit-transform: translateX(-20px);
|
||||
transform: translateX(-20px);
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fade-right
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
75%
|
||||
{
|
||||
-webkit-transform: translateX(20px);
|
||||
transform: translateX(20px);
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@keyframes fade-right
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: translateX(0);
|
||||
transform: translateX(0);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
75%
|
||||
{
|
||||
-webkit-transform: translateX(20px);
|
||||
transform: translateX(20px);
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fade-up
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
75%
|
||||
{
|
||||
-webkit-transform: translateY(-20px);
|
||||
transform: translateY(-20px);
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@keyframes fade-up
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
75%
|
||||
{
|
||||
-webkit-transform: translateY(-20px);
|
||||
transform: translateY(-20px);
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes fade-down
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
75%
|
||||
{
|
||||
-webkit-transform: translateY(20px);
|
||||
transform: translateY(20px);
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@keyframes fade-down
|
||||
{
|
||||
0%
|
||||
{
|
||||
-webkit-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
|
||||
opacity: 1;
|
||||
}
|
||||
75%
|
||||
{
|
||||
-webkit-transform: translateY(20px);
|
||||
transform: translateY(20px);
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@-webkit-keyframes tada
|
||||
{
|
||||
from
|
||||
{
|
||||
-webkit-transform: scale3d(1, 1, 1);
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
|
||||
10%,
|
||||
20%
|
||||
{
|
||||
-webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
|
||||
transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
|
||||
}
|
||||
|
||||
30%,
|
||||
50%,
|
||||
70%,
|
||||
90%
|
||||
{
|
||||
-webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
|
||||
transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
|
||||
}
|
||||
|
||||
40%,
|
||||
60%,
|
||||
80%
|
||||
{
|
||||
-webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
|
||||
transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
|
||||
}
|
||||
|
||||
to
|
||||
{
|
||||
-webkit-transform: scale3d(1, 1, 1);
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes tada
|
||||
{
|
||||
from
|
||||
{
|
||||
-webkit-transform: scale3d(1, 1, 1);
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
|
||||
10%,
|
||||
20%
|
||||
{
|
||||
-webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
|
||||
transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
|
||||
}
|
||||
|
||||
30%,
|
||||
50%,
|
||||
70%,
|
||||
90%
|
||||
{
|
||||
-webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
|
||||
transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
|
||||
}
|
||||
|
||||
40%,
|
||||
60%,
|
||||
80%
|
||||
{
|
||||
-webkit-transform: rotate3d(0, 0, 1, -10deg);
|
||||
transform: rotate3d(0, 0, 1, -10deg);
|
||||
}
|
||||
|
||||
to
|
||||
{
|
||||
-webkit-transform: scale3d(1, 1, 1);
|
||||
transform: scale3d(1, 1, 1);
|
||||
}
|
||||
}
|
||||
.bx-spin
|
||||
{
|
||||
-webkit-animation: spin 2s linear infinite;
|
||||
animation: spin 2s linear infinite;
|
||||
}
|
||||
.bx-spin-hover:hover
|
||||
{
|
||||
-webkit-animation: spin 2s linear infinite;
|
||||
animation: spin 2s linear infinite;
|
||||
}
|
||||
|
||||
.bx-tada
|
||||
{
|
||||
-webkit-animation: tada 1.5s ease infinite;
|
||||
animation: tada 1.5s ease infinite;
|
||||
}
|
||||
.bx-tada-hover:hover
|
||||
{
|
||||
-webkit-animation: tada 1.5s ease infinite;
|
||||
animation: tada 1.5s ease infinite;
|
||||
}
|
||||
|
||||
.bx-flashing
|
||||
{
|
||||
-webkit-animation: flashing 1.5s infinite linear;
|
||||
animation: flashing 1.5s infinite linear;
|
||||
}
|
||||
.bx-flashing-hover:hover
|
||||
{
|
||||
-webkit-animation: flashing 1.5s infinite linear;
|
||||
animation: flashing 1.5s infinite linear;
|
||||
}
|
||||
|
||||
.bx-burst
|
||||
{
|
||||
-webkit-animation: burst 1.5s infinite linear;
|
||||
animation: burst 1.5s infinite linear;
|
||||
}
|
||||
.bx-burst-hover:hover
|
||||
{
|
||||
-webkit-animation: burst 1.5s infinite linear;
|
||||
animation: burst 1.5s infinite linear;
|
||||
}
|
||||
.bx-fade-up
|
||||
{
|
||||
-webkit-animation: fade-up 1.5s infinite linear;
|
||||
animation: fade-up 1.5s infinite linear;
|
||||
}
|
||||
.bx-fade-up-hover:hover
|
||||
{
|
||||
-webkit-animation: fade-up 1.5s infinite linear;
|
||||
animation: fade-up 1.5s infinite linear;
|
||||
}
|
||||
.bx-fade-down
|
||||
{
|
||||
-webkit-animation: fade-down 1.5s infinite linear;
|
||||
animation: fade-down 1.5s infinite linear;
|
||||
}
|
||||
.bx-fade-down-hover:hover
|
||||
{
|
||||
-webkit-animation: fade-down 1.5s infinite linear;
|
||||
animation: fade-down 1.5s infinite linear;
|
||||
}
|
||||
.bx-fade-left
|
||||
{
|
||||
-webkit-animation: fade-left 1.5s infinite linear;
|
||||
animation: fade-left 1.5s infinite linear;
|
||||
}
|
||||
.bx-fade-left-hover:hover
|
||||
{
|
||||
-webkit-animation: fade-left 1.5s infinite linear;
|
||||
animation: fade-left 1.5s infinite linear;
|
||||
}
|
||||
.bx-fade-right
|
||||
{
|
||||
-webkit-animation: fade-right 1.5s infinite linear;
|
||||
animation: fade-right 1.5s infinite linear;
|
||||
}
|
||||
.bx-fade-right-hover:hover
|
||||
{
|
||||
-webkit-animation: fade-right 1.5s infinite linear;
|
||||
animation: fade-right 1.5s infinite linear;
|
||||
}
|
5425
public/assets-login-landing/vendor/boxicons/css/boxicons.css
vendored
Normal file
1
public/assets-login-landing/vendor/boxicons/css/boxicons.min.css
vendored
Normal file
30
public/assets-login-landing/vendor/boxicons/css/transformations.css
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
.bx-rotate-90
|
||||
{
|
||||
transform: rotate(90deg);
|
||||
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';
|
||||
}
|
||||
.bx-rotate-180
|
||||
{
|
||||
transform: rotate(180deg);
|
||||
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';
|
||||
}
|
||||
.bx-rotate-270
|
||||
{
|
||||
transform: rotate(270deg);
|
||||
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';
|
||||
}
|
||||
.bx-flip-horizontal
|
||||
{
|
||||
transform: scaleX(-1);
|
||||
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';
|
||||
}
|
||||
.bx-flip-vertical
|
||||
{
|
||||
transform: scaleY(-1);
|
||||
|
||||
-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
|
||||
}
|
BIN
public/assets-login-landing/vendor/boxicons/fonts/boxicons.eot
vendored
Normal file
1660
public/assets-login-landing/vendor/boxicons/fonts/boxicons.svg
vendored
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
public/assets-login-landing/vendor/boxicons/fonts/boxicons.ttf
vendored
Normal file
BIN
public/assets-login-landing/vendor/boxicons/fonts/boxicons.woff
vendored
Normal file
BIN
public/assets-login-landing/vendor/boxicons/fonts/boxicons.woff2
vendored
Normal file
13
public/assets-login-landing/vendor/swiper/swiper-bundle.min.css
vendored
Normal file
14
public/assets-login-landing/vendor/swiper/swiper-bundle.min.js
vendored
Normal file
1
public/assets-login-landing/vendor/swiper/swiper-bundle.min.js.map
vendored
Normal file
4
public/assets/css/app-dark.min.css
vendored
@ -10,20 +10,20 @@
|
||||
<div class="modal-body">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<form method="POST" action="">
|
||||
<form method="POST" action="/super-admin">
|
||||
@csrf
|
||||
<div class="card-body">
|
||||
<div class="form-group">
|
||||
<label>Email</label>
|
||||
<input type="email" class="form-control" name="email">
|
||||
@error('email')
|
||||
<p class="text text-danger">
|
||||
{{ $message }}</p>
|
||||
@enderror
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Password</label>
|
||||
<input type="password" class="form-control" name="password">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>Status</label>
|
||||
<input type="text" class="form-control" name="status">
|
||||
<label>Name</label>
|
||||
<input type="text" class="form-control" name="name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="d-flex justify-content-end mb-3">
|
@ -38,39 +38,27 @@
|
||||
<tr>
|
||||
<th>#</th>
|
||||
<th>Email</th>
|
||||
<th>Password</th>
|
||||
<th>Status</th>
|
||||
{{-- <th>Status</th> --}}
|
||||
<th>Aksi</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>jilhan@gmail.com</td>
|
||||
<td>*********</td>
|
||||
<td>Admin</td>
|
||||
<td class="table-action">
|
||||
<a href="javascript:void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-square-edit-outline"></i></a>
|
||||
<a href="javascript:void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-delete"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>2</td>
|
||||
<td>test@gmail.com</td>
|
||||
<td>*********</td>
|
||||
<td>Admin</td>
|
||||
<td class="table-action">
|
||||
<a href="javascript:void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-square-edit-outline"></i></a>
|
||||
<a href="javascript:void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-delete"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@foreach ($data as $key => $manajemenadmin)
|
||||
<tr>
|
||||
<td>{{ ++$key }}</td>
|
||||
<td>{{ $manajemenadmin['email'] }}</td>
|
||||
{{-- <td>{{ $$manajemenadmin['name'] }}</td> --}}
|
||||
{{-- <td>Admin</td> --}}
|
||||
<td class="table-action">
|
||||
<a href="javascript:void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-square-edit-outline"></i></a>
|
||||
<a href="javascript:void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-delete"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div> <!-- end preview-->
|
||||
@ -85,5 +73,5 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@include('Admin.Super-Admin.create')
|
||||
@include('Admin.Manejemen-Admin.create')
|
||||
@endsection
|
@ -13,190 +13,6 @@
|
||||
</form>
|
||||
</div>
|
||||
</li>
|
||||
<li class="dropdown notification-list topbar-dropdown">
|
||||
<a class="nav-link dropdown-toggle arrow-none" data-bs-toggle="dropdown" href="#" role="button"
|
||||
aria-haspopup="false" aria-expanded="false">
|
||||
<img src="assets/images/flags/us.jpg" alt="user-image" class="me-0 me-sm-1" height="12">
|
||||
<span class="align-middle d-none d-sm-inline-block">English</span> <i
|
||||
class="mdi mdi-chevron-down d-none d-sm-inline-block align-middle"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-end dropdown-menu-animated topbar-dropdown-menu">
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<img src="assets/images/flags/germany.jpg" alt="user-image" class="me-1" height="12">
|
||||
<span class="align-middle">German</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<img src="assets/images/flags/italy.jpg" alt="user-image" class="me-1" height="12"> <span
|
||||
class="align-middle">Italian</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<img src="assets/images/flags/spain.jpg" alt="user-image" class="me-1" height="12"> <span
|
||||
class="align-middle">Spanish</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<img src="assets/images/flags/russia.jpg" alt="user-image" class="me-1" height="12"> <span
|
||||
class="align-middle">Russian</span>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dropdown notification-list">
|
||||
<a class="nav-link dropdown-toggle arrow-none" data-bs-toggle="dropdown" href="#" role="button"
|
||||
aria-haspopup="false" aria-expanded="false">
|
||||
<i class="dripicons-bell noti-icon"></i>
|
||||
<span class="noti-icon-badge"></span>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-end dropdown-menu-animated dropdown-lg">
|
||||
|
||||
<!-- item-->
|
||||
<div class="dropdown-item noti-title">
|
||||
<h5 class="m-0">
|
||||
<span class="float-end">
|
||||
<a href="javascript: void(0);" class="text-dark">
|
||||
<small>Clear All</small>
|
||||
</a>
|
||||
</span>Notification
|
||||
</h5>
|
||||
</div>
|
||||
|
||||
<div style="max-height: 230px;" data-simplebar="">
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon bg-primary">
|
||||
<i class="mdi mdi-comment-account-outline"></i>
|
||||
</div>
|
||||
<p class="notify-details">Caleb Flakelar commented on Admin
|
||||
<small class="text-muted">1 min ago</small>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon bg-info">
|
||||
<i class="mdi mdi-account-plus"></i>
|
||||
</div>
|
||||
<p class="notify-details">New user registered.
|
||||
<small class="text-muted">5 hours ago</small>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon">
|
||||
<img src="assets/images/users/avatar-2.jpg" class="img-fluid rounded-circle"
|
||||
alt="">
|
||||
</div>
|
||||
<p class="notify-details">Cristina Pride</p>
|
||||
<p class="text-muted mb-0 user-msg">
|
||||
<small>Hi, How are you? What about our next meeting</small>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon bg-primary">
|
||||
<i class="mdi mdi-comment-account-outline"></i>
|
||||
</div>
|
||||
<p class="notify-details">Caleb Flakelar commented on Admin
|
||||
<small class="text-muted">4 days ago</small>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon">
|
||||
<img src="assets/images/users/avatar-4.jpg" class="img-fluid rounded-circle"
|
||||
alt="">
|
||||
</div>
|
||||
<p class="notify-details">Karen Robinson</p>
|
||||
<p class="text-muted mb-0 user-msg">
|
||||
<small>Wow ! this admin looks good and awesome design</small>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon bg-info">
|
||||
<i class="mdi mdi-heart"></i>
|
||||
</div>
|
||||
<p class="notify-details">Carlos Crouch liked
|
||||
<b>Admin</b>
|
||||
<small class="text-muted">13 days ago</small>
|
||||
</p>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- All-->
|
||||
<a href="javascript:void(0);"
|
||||
class="dropdown-item text-center text-primary notify-item notify-all">
|
||||
View All
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dropdown notification-list d-none d-sm-inline-block">
|
||||
<a class="nav-link dropdown-toggle arrow-none" data-bs-toggle="dropdown" href="#"
|
||||
role="button" aria-haspopup="false" aria-expanded="false">
|
||||
<i class="dripicons-view-apps noti-icon"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-end dropdown-menu-animated dropdown-lg p-0">
|
||||
|
||||
<div class="p-2">
|
||||
<div class="row g-0">
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="assets/images/brands/slack.png" alt="slack">
|
||||
<span>Slack</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="assets/images/brands/github.png" alt="Github">
|
||||
<span>GitHub</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="assets/images/brands/dribbble.png" alt="dribbble">
|
||||
<span>Dribbble</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row g-0">
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="assets/images/brands/bitbucket.png" alt="bitbucket">
|
||||
<span>Bitbucket</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="assets/images/brands/dropbox.png" alt="dropbox">
|
||||
<span>Dropbox</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="assets/images/brands/g-suite.png" alt="G Suite">
|
||||
<span>G Suite</span>
|
||||
</a>
|
||||
</div>
|
||||
</div> <!-- end row-->
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="notification-list">
|
||||
<a class="nav-link end-bar-toggle" href="javascript: void(0);">
|
||||
@ -205,14 +21,14 @@
|
||||
</li>
|
||||
|
||||
<li class="dropdown notification-list">
|
||||
<a class="nav-link dropdown-toggle nav-user arrow-none me-0" data-bs-toggle="dropdown"
|
||||
href="#" role="button" aria-haspopup="false" aria-expanded="false">
|
||||
<a class="nav-link dropdown-toggle nav-user arrow-none me-0" data-bs-toggle="dropdown" href="#"
|
||||
role="button" aria-haspopup="false" aria-expanded="false">
|
||||
<span class="account-user-avatar">
|
||||
<img src="assets/images/users/avatar-1.jpg" alt="user-image" class="rounded-circle">
|
||||
</span>
|
||||
<span>
|
||||
<span class="account-user-name">Soeng Souy</span>
|
||||
<span class="account-position">Founder</span>
|
||||
<span class="account-user-name">Jilhan</span>
|
||||
<span class="account-position">Super-Admin</span>
|
||||
</span>
|
||||
</a>
|
||||
<div
|
||||
@ -221,36 +37,12 @@
|
||||
<div class=" dropdown-header noti-title">
|
||||
<h6 class="text-overflow m-0">Welcome !</h6>
|
||||
</div>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<i class="mdi mdi-account-circle me-1"></i>
|
||||
<span>My Account</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<i class="mdi mdi-account-edit me-1"></i>
|
||||
<span>Settings</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<i class="mdi mdi-lifebuoy me-1"></i>
|
||||
<span>Support</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<i class="mdi mdi-lock-outline me-1"></i>
|
||||
<span>Lock Screen</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="/" class="dropdown-item notify-item">
|
||||
<i class="mdi mdi-logout me-1"></i>
|
||||
<span>Logout</span>
|
||||
</a>
|
||||
<form action="/logout" method="POST">
|
||||
@csrf
|
||||
<button class="dropdown-item notify-item" type="submit">Logout
|
||||
<i class="mdi mdi-logout me-1"></i>
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
@ -261,8 +53,7 @@
|
||||
<div class="app-search dropdown d-none d-lg-block">
|
||||
<form>
|
||||
<div class="input-group">
|
||||
<input type="text" class="form-control dropdown-toggle" placeholder="Search..."
|
||||
id="top-search">
|
||||
<input type="text" class="form-control dropdown-toggle" placeholder="Search..." id="top-search">
|
||||
<span class="mdi mdi-magnify search-icon"></span>
|
||||
<button class="input-group-text btn-primary" type="submit">Search</button>
|
||||
</div>
|
||||
|
@ -28,449 +28,40 @@
|
||||
<!-- end page title -->
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-xl-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-6">
|
||||
<h5 class="text-muted fw-normal mt-0 text-truncate" title="Campaign Sent">
|
||||
Campaign Sent</h5>
|
||||
<h3 class="my-2 py-1">9,184</h3>
|
||||
<p class="mb-0 text-muted">
|
||||
<span class="text-success me-2"><i class="mdi mdi-arrow-up-bold"></i>
|
||||
3.27%</span>
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-end">
|
||||
<div id="campaign-sent-chart" data-colors="#727cf5"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- end row-->
|
||||
</div> <!-- end card-body -->
|
||||
</div> <!-- end card -->
|
||||
</div> <!-- end col -->
|
||||
|
||||
<div class="col-lg-6 col-xl-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-6">
|
||||
<h5 class="text-muted fw-normal mt-0 text-truncate" title="New Leads">New
|
||||
Leads</h5>
|
||||
<h3 class="my-2 py-1">3,254</h3>
|
||||
<p class="mb-0 text-muted">
|
||||
<span class="text-danger me-2"><i class="mdi mdi-arrow-down-bold"></i>
|
||||
5.38%</span>
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-end">
|
||||
<div id="new-leads-chart" data-colors="#0acf97"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- end row-->
|
||||
</div> <!-- end card-body -->
|
||||
</div> <!-- end card -->
|
||||
</div> <!-- end col -->
|
||||
|
||||
<div class="col-lg-6 col-xl-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-6">
|
||||
<h5 class="text-muted fw-normal mt-0 text-truncate" title="Deals">Deals
|
||||
</h5>
|
||||
<h3 class="my-2 py-1">861</h3>
|
||||
<p class="mb-0 text-muted">
|
||||
<span class="text-success me-2"><i class="mdi mdi-arrow-up-bold"></i>
|
||||
4.87%</span>
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-end">
|
||||
<div id="deals-chart" data-colors="#727cf5"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- end row-->
|
||||
</div> <!-- end card-body -->
|
||||
</div> <!-- end card -->
|
||||
</div> <!-- end col -->
|
||||
|
||||
<div class="col-lg-6 col-xl-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-6">
|
||||
<h5 class="text-muted fw-normal mt-0 text-truncate" title="Booked Revenue">
|
||||
Booked Revenue</h5>
|
||||
<h3 class="my-2 py-1">$253k</h3>
|
||||
<p class="mb-0 text-muted">
|
||||
<span class="text-success me-2"><i class="mdi mdi-arrow-up-bold"></i>
|
||||
11.7%</span>
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="text-end">
|
||||
<div id="booked-revenue-chart" data-colors="#0acf97"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- end row-->
|
||||
</div> <!-- end card-body -->
|
||||
</div> <!-- end card -->
|
||||
</div> <!-- end col -->
|
||||
</div>
|
||||
<!-- end row -->
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-5">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="dropdown float-end">
|
||||
<a href="#" class="dropdown-toggle arrow-none card-drop" data-bs-toggle="dropdown"
|
||||
aria-expanded="false">
|
||||
<i class="mdi mdi-dots-vertical"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Today</a>
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Yesterday</a>
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Last Week</a>
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Last Month</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h4 class="header-title mb-1">Campaigns</h4>
|
||||
|
||||
<div id="dash-campaigns-chart" class="apex-charts" data-colors="#ffbc00,#727cf5,#0acf97">
|
||||
</div>
|
||||
|
||||
<div class="row text-center mt-2">
|
||||
<div class="col-md-4">
|
||||
<i class="mdi mdi-send widget-icon rounded-circle bg-light-lighten text-muted"></i>
|
||||
<h3 class="fw-normal mt-3">
|
||||
<span>6,510</span>
|
||||
</h3>
|
||||
<p class="text-muted mb-0 mb-2"><i
|
||||
class="mdi mdi-checkbox-blank-circle text-warning"></i> Total Sent
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<i
|
||||
class="mdi mdi-flag-variant widget-icon rounded-circle bg-light-lighten text-muted"></i>
|
||||
<h3 class="fw-normal mt-3">
|
||||
<span>3,487</span>
|
||||
</h3>
|
||||
<p class="text-muted mb-0 mb-2"><i
|
||||
class="mdi mdi-checkbox-blank-circle text-primary"></i> Reached</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<i
|
||||
class="mdi mdi-email-open widget-icon rounded-circle bg-light-lighten text-muted"></i>
|
||||
<h3 class="fw-normal mt-3">
|
||||
<span>1,568</span>
|
||||
</h3>
|
||||
<p class="text-muted mb-0 mb-2"><i
|
||||
class="mdi mdi-checkbox-blank-circle text-success"></i> Opened</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end card body-->
|
||||
</div>
|
||||
<!-- end card -->
|
||||
</div>
|
||||
<!-- end col-->
|
||||
|
||||
<div class="col-lg-7">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="dropdown float-end">
|
||||
<a href="#" class="dropdown-toggle arrow-none card-drop"
|
||||
data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<i class="mdi mdi-dots-vertical"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Today</a>
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Yesterday</a>
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Last Week</a>
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Last Month</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h4 class="header-title mb-3">Revenue</h4>
|
||||
|
||||
<div class="chart-content-bg">
|
||||
<div class="row text-center">
|
||||
<div class="col-md-6">
|
||||
<p class="text-muted mb-0 mt-3">Current Month</p>
|
||||
<h2 class="fw-normal mb-3">
|
||||
<span>$42,025</span>
|
||||
</h2>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<p class="text-muted mb-0 mt-3">Previous Month</p>
|
||||
<h2 class="fw-normal mb-3">
|
||||
<span>$74,651</span>
|
||||
</h2>
|
||||
<section>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="overflow-hidden">
|
||||
<div class="card-header bg-transparent pd-b-0 pd-t-20 bd-b-0">
|
||||
<div class="d-flex justify-content-between">
|
||||
<h2 style="font-weight: 600;">Grafik Pelayanan Pelatihan</h2>
|
||||
<div class="dropdown">
|
||||
<button class="btn dropdown-toggle"
|
||||
style="background-color: #009C98; color: white;" type="button"
|
||||
id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true"
|
||||
aria-expanded="false">
|
||||
Pilih Waktu Grafik
|
||||
</button>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
||||
<a class="dropdown-item" href="#">Bulan</a>
|
||||
<a class="dropdown-item" href="#">Tahun</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p class="mb-2">Ini adalah Grafik Statistik Pelayanan Pelatihan yang Menyajikan Data
|
||||
Terkini.</p>
|
||||
</div>
|
||||
|
||||
<div dir="ltr">
|
||||
<div id="dash-revenue-chart" class="apex-charts" data-colors="#0acf97,#fa5c7c"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- end card body-->
|
||||
</div>
|
||||
<!-- end card -->
|
||||
</div>
|
||||
<!-- end col-->
|
||||
</div>
|
||||
<!-- end row-->
|
||||
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xl-4 col-lg-12">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="dropdown float-end">
|
||||
<a href="#" class="dropdown-toggle arrow-none card-drop"
|
||||
data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<i class="mdi mdi-dots-vertical"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Settings</a>
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Action</a>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="header-title mb-3">Top Performing</h4>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-sm table-nowrap table-centered mb-0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>User</th>
|
||||
<th>Leads</th>
|
||||
<th>Deals</th>
|
||||
<th>Tasks</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<h5 class="font-15 mb-1 fw-normal">Jeremy Young</h5>
|
||||
<span class="text-muted font-13">Senior Sales Executive</span>
|
||||
</td>
|
||||
<td>187</td>
|
||||
<td>154</td>
|
||||
<td>49</td>
|
||||
<td class="table-action">
|
||||
<a href="javascript: void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-eye"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<h5 class="font-15 mb-1 fw-normal">Thomas Krueger</h5>
|
||||
<span class="text-muted font-13">Senior Sales Executive</span>
|
||||
</td>
|
||||
<td>235</td>
|
||||
<td>127</td>
|
||||
<td>83</td>
|
||||
<td class="table-action">
|
||||
<a href="javascript: void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-eye"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<h5 class="font-15 mb-1 fw-normal">Pete Burdine</h5>
|
||||
<span class="text-muted font-13">Senior Sales Executive</span>
|
||||
</td>
|
||||
<td>365</td>
|
||||
<td>148</td>
|
||||
<td>62</td>
|
||||
<td class="table-action">
|
||||
<a href="javascript: void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-eye"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<h5 class="font-15 mb-1 fw-normal">Mary Nelson</h5>
|
||||
<span class="text-muted font-13">Senior Sales Executive</span>
|
||||
</td>
|
||||
<td>753</td>
|
||||
<td>159</td>
|
||||
<td>258</td>
|
||||
<td class="table-action">
|
||||
<a href="javascript: void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-eye"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<h5 class="font-15 mb-1 fw-normal">Kevin Grove</h5>
|
||||
<span class="text-muted font-13">Senior Sales Executive</span>
|
||||
</td>
|
||||
<td>458</td>
|
||||
<td>126</td>
|
||||
<td>73</td>
|
||||
<td class="table-action">
|
||||
<a href="javascript: void(0);" class="action-icon"> <i
|
||||
class="mdi mdi-eye"></i></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div> <!-- end table-responsive-->
|
||||
|
||||
</div> <!-- end card-body-->
|
||||
</div> <!-- end card-->
|
||||
</div>
|
||||
<!-- end col-->
|
||||
|
||||
<div class="col-xl-4 col-lg-6">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="dropdown float-end">
|
||||
<a href="#" class="dropdown-toggle arrow-none card-drop"
|
||||
data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<i class="mdi mdi-dots-vertical"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Settings</a>
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Action</a>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="header-title mb-4">Recent Leads</h4>
|
||||
|
||||
<div class="d-flex align-items-start">
|
||||
<img class="me-3 rounded-circle" src="assets/images/users/avatar-2.jpg"
|
||||
width="40" alt="Generic placeholder image">
|
||||
<div class="w-100 overflow-hidden">
|
||||
<span class="badge badge-warning-lighten float-end">Cold lead</span>
|
||||
<h5 class="mt-0 mb-1">Risa Pearson</h5>
|
||||
<span class="font-13">richard.john@mail.com</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="d-flex align-items-start mt-3">
|
||||
<img class="me-3 rounded-circle" src="assets/images/users/avatar-3.jpg"
|
||||
width="40" alt="Generic placeholder image">
|
||||
<div class="w-100 overflow-hidden">
|
||||
<span class="badge badge-danger-lighten float-end">Lost lead</span>
|
||||
<h5 class="mt-0 mb-1">Margaret D. Evans</h5>
|
||||
<span class="font-13">margaret.evans@rhyta.com</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="d-flex align-items-start mt-3">
|
||||
<img class="me-3 rounded-circle" src="assets/images/users/avatar-4.jpg"
|
||||
width="40" alt="Generic placeholder image">
|
||||
<div class="w-100 overflow-hidden">
|
||||
<span class="badge badge-success-lighten float-end">Won lead</span>
|
||||
<h5 class="mt-0 mb-1">Bryan J. Luellen</h5>
|
||||
<span class="font-13">bryuellen@dayrep.com</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="d-flex align-items-start mt-3">
|
||||
<img class="me-3 rounded-circle" src="assets/images/users/avatar-5.jpg"
|
||||
width="40" alt="Generic placeholder image">
|
||||
<div class="w-100 overflow-hidden">
|
||||
<span class="badge badge-warning-lighten float-end">Cold lead</span>
|
||||
<h5 class="mt-0 mb-1">Kathryn S. Collier</h5>
|
||||
<span class="font-13">collier@jourrapide.com</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="d-flex align-items-start mt-3">
|
||||
<img class="me-3 rounded-circle" src="assets/images/users/avatar-1.jpg"
|
||||
width="40" alt="Generic placeholder image">
|
||||
<div class="w-100 overflow-hidden">
|
||||
<span class="badge badge-warning-lighten float-end">Cold lead</span>
|
||||
<h5 class="mt-0 mb-1">Timothy Kauper</h5>
|
||||
<span class="font-13">thykauper@rhyta.com</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="d-flex align-items-start mt-3">
|
||||
<img class="me-3 rounded-circle" src="assets/images/users/avatar-6.jpg"
|
||||
width="40" alt="Generic placeholder image">
|
||||
<div class="w-100 overflow-hidden">
|
||||
<span class="badge badge-success-lighten float-end">Won lead</span>
|
||||
<h5 class="mt-0 mb-1">Zara Raws</h5>
|
||||
<span class="font-13">austin@dayrep.com</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- end card-body -->
|
||||
</div>
|
||||
<!-- end card-->
|
||||
</div>
|
||||
<!-- end col -->
|
||||
|
||||
<div class="col-xl-4 col-lg-6">
|
||||
<div class="card cta-box bg-primary text-white">
|
||||
<div class="card-body">
|
||||
<div class="d-flex align-items-start align-items-center">
|
||||
<div class="w-100 overflow-hidden">
|
||||
<h2 class="mt-0"><i class="mdi mdi-bullhorn-outline"></i> </h2>
|
||||
<h3 class="m-0 fw-normal cta-box-title">Enhance your <b>Campaign</b> for
|
||||
better outreach <i class="mdi mdi-arrow-right"></i></h3>
|
||||
</div>
|
||||
<img class="ms-3" src="assets/images/email-campaign.svg" width="120"
|
||||
alt="Generic placeholder image">
|
||||
<div class="card-body pd-y-7">
|
||||
<div id="project-budget"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end card-body -->
|
||||
</div>
|
||||
<!-- end card-->
|
||||
|
||||
<!-- Todo-->
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="dropdown float-end">
|
||||
<a href="#" class="dropdown-toggle arrow-none card-drop"
|
||||
data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<i class="mdi mdi-dots-vertical"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Settings</a>
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">Action</a>
|
||||
</div>
|
||||
</div>
|
||||
<h4 class="header-title mb-2">Todo</h4>
|
||||
|
||||
<div class="todoapp">
|
||||
<div data-simplebar="" style="max-height: 224px">
|
||||
<ul class="list-group list-group-flush todo-list" id="todo-list"></ul>
|
||||
</div>
|
||||
</div> <!-- end .todoapp-->
|
||||
|
||||
</div> <!-- end card-body -->
|
||||
</div> <!-- end card-->
|
||||
|
||||
</div>
|
||||
<!-- end col -->
|
||||
</div>
|
||||
</section>
|
||||
<!-- end row-->
|
||||
|
||||
</div> <!-- container -->
|
||||
|
@ -11,9 +11,14 @@
|
||||
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
||||
|
||||
<!-- App css -->
|
||||
<link href="/assets-login-landing/vendor/aos/aos.css" rel="stylesheet">
|
||||
<link href="/assets-login-landing/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/assets-login-landing/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
|
||||
<link href="/assets-login-landing/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
|
||||
<link href="/assets-login-landing/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
|
||||
<!-- third party css -->
|
||||
<link href="assets/css/vendor/dataTables.bootstrap5.css" rel="stylesheet" type="text/css">
|
||||
<link href="assets/css/vendor/responsive.bootstrap5.css" rel="stylesheet" type="text/css">
|
||||
<link href="/assets/css/vendor/dataTables.bootstrap5.css" rel="stylesheet" type="text/css">
|
||||
<link href="/assets/css/vendor/responsive.bootstrap5.css" rel="stylesheet" type="text/css">
|
||||
|
||||
<link href="/assets/css/icons.min.css" rel="stylesheet" type="text/css">
|
||||
<link href="/assets/css/app.min.css" rel="stylesheet" type="text/css" id="light-style">
|
||||
@ -166,6 +171,31 @@
|
||||
<!-- end demo js-->
|
||||
<script src="/assets/js/pages/demo.datatable-init.js"></script>
|
||||
<!-- third party js ends -->
|
||||
<script src="/assets-login-landing/vendor/aos/aos.js"></script>
|
||||
<script src="/assets-login-landing/vendor/swiper/swiper-bundle.min.js"></script>
|
||||
|
||||
|
||||
<!-- ApexChart -->
|
||||
<script src="/assets-login-landing/js/apexcharts.min.js"></script>
|
||||
|
||||
<!--- Index js -->
|
||||
<script src="/assets-login-landing/js/index.js"></script>
|
||||
|
||||
<!--themecolor js-->
|
||||
<script src="/assets-login-landing/js/themecolor.js"></script>
|
||||
|
||||
<!-- Template Main JS File -->
|
||||
<script src="/assets-login-landing/js/main.js"></script>
|
||||
<!-- popper js -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
|
||||
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous">
|
||||
</script>
|
||||
<!-- bootstrap js -->
|
||||
<script src="js/bootstrap.js"></script>
|
||||
<script src="js/custom.js"></script>
|
||||
<!-- Google Map -->
|
||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCh39n5U-4IoWpsVGUHWdqB6puEkhRLdmI&callback=myMap">
|
||||
</script>
|
||||
|
||||
<!-- demo app -->
|
||||
|
||||
|
@ -41,6 +41,12 @@
|
||||
<span> Manajemen Admin </span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="side-nav-item">
|
||||
<a href="/" class="side-nav-link">
|
||||
<i class="uil-store"></i>
|
||||
<span> Landing Page </span>
|
||||
</a>
|
||||
</li>
|
||||
{{-- <li class="side-nav-item">
|
||||
<a data-bs-toggle="collapse" href="#sidebarEcommerce" aria-expanded="false"
|
||||
aria-controls="sidebarEcommerce" class="side-nav-link">
|
||||
@ -130,16 +136,6 @@
|
||||
</li> --}}
|
||||
</ul>
|
||||
|
||||
<!-- Help Box -->
|
||||
<div class="help-box text-white text-center">
|
||||
<a href="javascript: void(0);" class="float-end close-btn text-white">
|
||||
<i class="mdi mdi-close"></i>
|
||||
</a>
|
||||
<img src="assets/images/help-icon.svg" height="90" alt="Helper Icon Image">
|
||||
<h5 class="mt-3">Unlimited Access</h5>
|
||||
<p class="mb-3">Upgrade to plan to get access to unlimited reports</p>
|
||||
<a href="javascript: void(0);" class="btn btn-outline-light btn-sm">Upgrade</a>
|
||||
</div>
|
||||
<!-- end Help Box -->
|
||||
<!-- End Sidebar -->
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
||||
}
|
||||
|
||||
.form-select:focus {
|
||||
border: 1px solid #673AB7;
|
||||
border: 1px solid #009C98;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
@ -44,7 +44,7 @@
|
||||
|
||||
#heading {
|
||||
text-transform: uppercase;
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
@ -94,13 +94,13 @@
|
||||
-moz-box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
border: 1px solid #673AB7;
|
||||
border: 1px solid #009C98;
|
||||
outline-width: 0
|
||||
}
|
||||
|
||||
#msform .action-button {
|
||||
width: 100px;
|
||||
background: #673AB7;
|
||||
background: #009C98;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
border: 0 none;
|
||||
@ -113,7 +113,7 @@
|
||||
|
||||
#msform .action-button:hover,
|
||||
#msform .action-button:focus {
|
||||
background-color: #311B92
|
||||
background-color: #009C98
|
||||
}
|
||||
|
||||
#msform .action-button-previous {
|
||||
@ -142,14 +142,14 @@
|
||||
|
||||
.fs-title {
|
||||
font-size: 25px;
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
margin-bottom: 15px;
|
||||
font-weight: normal;
|
||||
text-align: left
|
||||
}
|
||||
|
||||
.purple-text {
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
@ -173,7 +173,7 @@
|
||||
}
|
||||
|
||||
#progressbar .active {
|
||||
color: #673AB7
|
||||
color: #009C98
|
||||
}
|
||||
|
||||
#progressbar li {
|
||||
@ -231,7 +231,7 @@
|
||||
|
||||
#progressbar li.active:before,
|
||||
#progressbar li.active:after {
|
||||
background: #673AB7
|
||||
background: #009C98
|
||||
}
|
||||
|
||||
.progress {
|
||||
@ -239,7 +239,7 @@
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
background-color: #673AB7
|
||||
background-color: #009C98
|
||||
}
|
||||
|
||||
.fit-image {
|
||||
|
@ -25,7 +25,7 @@
|
||||
}
|
||||
|
||||
.form-select:focus {
|
||||
border: 1px solid #673AB7;
|
||||
border: 1px solid #009C98;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
@ -44,7 +44,7 @@
|
||||
|
||||
#heading {
|
||||
text-transform: uppercase;
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
@ -94,13 +94,13 @@
|
||||
-moz-box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
border: 1px solid #673AB7;
|
||||
border: 1px solid #009C98;
|
||||
outline-width: 0
|
||||
}
|
||||
|
||||
#msform .action-button {
|
||||
width: 100px;
|
||||
background: #673AB7;
|
||||
background: #009C98;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
border: 0 none;
|
||||
@ -113,7 +113,7 @@
|
||||
|
||||
#msform .action-button:hover,
|
||||
#msform .action-button:focus {
|
||||
background-color: #311B92
|
||||
background-color: #009C98
|
||||
}
|
||||
|
||||
#msform .action-button-previous {
|
||||
@ -142,14 +142,14 @@
|
||||
|
||||
.fs-title {
|
||||
font-size: 25px;
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
margin-bottom: 15px;
|
||||
font-weight: normal;
|
||||
text-align: left
|
||||
}
|
||||
|
||||
.purple-text {
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
@ -173,7 +173,7 @@
|
||||
}
|
||||
|
||||
#progressbar .active {
|
||||
color: #673AB7
|
||||
color: #009C98
|
||||
}
|
||||
|
||||
#progressbar li {
|
||||
@ -231,7 +231,7 @@
|
||||
|
||||
#progressbar li.active:before,
|
||||
#progressbar li.active:after {
|
||||
background: #673AB7
|
||||
background: #009C98
|
||||
}
|
||||
|
||||
.progress {
|
||||
@ -239,7 +239,7 @@
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
background-color: #673AB7
|
||||
background-color: #009C98
|
||||
}
|
||||
|
||||
.fit-image {
|
||||
|
@ -2,7 +2,6 @@
|
||||
@section('content')
|
||||
@push('css')
|
||||
<style>
|
||||
/* Style for select dropdowns */
|
||||
.form-select {
|
||||
padding: 8px 15px;
|
||||
border: 1px solid #ccc;
|
||||
@ -26,7 +25,7 @@
|
||||
}
|
||||
|
||||
.form-select:focus {
|
||||
border: 1px solid #673AB7;
|
||||
border: 1px solid #009C98;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
@ -45,7 +44,7 @@
|
||||
|
||||
#heading {
|
||||
text-transform: uppercase;
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
@ -95,13 +94,13 @@
|
||||
-moz-box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
border: 1px solid #673AB7;
|
||||
border: 1px solid #009C98;
|
||||
outline-width: 0
|
||||
}
|
||||
|
||||
#msform .action-button {
|
||||
width: 100px;
|
||||
background: #673AB7;
|
||||
background: #009C98;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
border: 0 none;
|
||||
@ -114,7 +113,7 @@
|
||||
|
||||
#msform .action-button:hover,
|
||||
#msform .action-button:focus {
|
||||
background-color: #311B92
|
||||
background-color: #009C98
|
||||
}
|
||||
|
||||
#msform .action-button-previous {
|
||||
@ -143,14 +142,14 @@
|
||||
|
||||
.fs-title {
|
||||
font-size: 25px;
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
margin-bottom: 15px;
|
||||
font-weight: normal;
|
||||
text-align: left
|
||||
}
|
||||
|
||||
.purple-text {
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
@ -174,7 +173,7 @@
|
||||
}
|
||||
|
||||
#progressbar .active {
|
||||
color: #673AB7
|
||||
color: #009C98
|
||||
}
|
||||
|
||||
#progressbar li {
|
||||
@ -232,7 +231,7 @@
|
||||
|
||||
#progressbar li.active:before,
|
||||
#progressbar li.active:after {
|
||||
background: #673AB7
|
||||
background: #009C98
|
||||
}
|
||||
|
||||
.progress {
|
||||
@ -240,7 +239,7 @@
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
background-color: #673AB7
|
||||
background-color: #009C98
|
||||
}
|
||||
|
||||
.fit-image {
|
||||
|
@ -25,7 +25,7 @@
|
||||
}
|
||||
|
||||
.form-select:focus {
|
||||
border: 1px solid #673AB7;
|
||||
border: 1px solid #009C98;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
@ -44,7 +44,7 @@
|
||||
|
||||
#heading {
|
||||
text-transform: uppercase;
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
@ -94,13 +94,13 @@
|
||||
-moz-box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
border: 1px solid #673AB7;
|
||||
border: 1px solid #009C98;
|
||||
outline-width: 0
|
||||
}
|
||||
|
||||
#msform .action-button {
|
||||
width: 100px;
|
||||
background: #673AB7;
|
||||
background: #009C98;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
border: 0 none;
|
||||
@ -113,7 +113,7 @@
|
||||
|
||||
#msform .action-button:hover,
|
||||
#msform .action-button:focus {
|
||||
background-color: #311B92
|
||||
background-color: #009C98
|
||||
}
|
||||
|
||||
#msform .action-button-previous {
|
||||
@ -142,14 +142,14 @@
|
||||
|
||||
.fs-title {
|
||||
font-size: 25px;
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
margin-bottom: 15px;
|
||||
font-weight: normal;
|
||||
text-align: left
|
||||
}
|
||||
|
||||
.purple-text {
|
||||
color: #673AB7;
|
||||
color: #009C98;
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
@ -173,7 +173,7 @@
|
||||
}
|
||||
|
||||
#progressbar .active {
|
||||
color: #673AB7
|
||||
color: #009C98
|
||||
}
|
||||
|
||||
#progressbar li {
|
||||
@ -231,7 +231,7 @@
|
||||
|
||||
#progressbar li.active:before,
|
||||
#progressbar li.active:after {
|
||||
background: #673AB7
|
||||
background: #009C98
|
||||
}
|
||||
|
||||
.progress {
|
||||
@ -239,7 +239,7 @@
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
background-color: #673AB7
|
||||
background-color: #009C98
|
||||
}
|
||||
|
||||
.fit-image {
|
||||
|
@ -1,107 +1,8 @@
|
||||
<div class="footer_container">
|
||||
<!-- info section -->
|
||||
|
||||
<section class="info_section ">
|
||||
<!-- ======= Footer ======= -->
|
||||
<footer id="footer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-lg-3 ">
|
||||
<div class="info_detail">
|
||||
<h4>
|
||||
Digian
|
||||
</h4>
|
||||
<p>
|
||||
Necessary, making this the first true generator on the Internet. It uses a dictionary of
|
||||
over 200 Latin words, combined with a handful
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-2 mx-auto">
|
||||
<div class="info_link_box">
|
||||
<h4>
|
||||
Links
|
||||
</h4>
|
||||
<div class="info_links">
|
||||
<a class="" href="index.html">
|
||||
Home
|
||||
</a>
|
||||
<a class="" href="about.html">
|
||||
About
|
||||
</a>
|
||||
<a class="" href="service.html">
|
||||
Services
|
||||
</a>
|
||||
<a class="" href="contact.html">
|
||||
Contact Us
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-3 ">
|
||||
<h4>
|
||||
Subscribe
|
||||
</h4>
|
||||
<form action="#">
|
||||
<input type="text" placeholder="Enter email" />
|
||||
<button type="submit">
|
||||
Subscribe
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-3 mb-0 ml-auto">
|
||||
<div class="info_contact">
|
||||
<h4>
|
||||
Address
|
||||
</h4>
|
||||
<div class="contact_link_box">
|
||||
<a href="">
|
||||
<i class="fa fa-map-marker" aria-hidden="true"></i>
|
||||
<span>
|
||||
Location
|
||||
</span>
|
||||
</a>
|
||||
<a href="">
|
||||
<i class="fa fa-phone" aria-hidden="true"></i>
|
||||
<span>
|
||||
Call +01 1234567890
|
||||
</span>
|
||||
</a>
|
||||
<a href="">
|
||||
<i class="fa fa-envelope" aria-hidden="true"></i>
|
||||
<span>
|
||||
demo@gmail.com
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="info_social">
|
||||
<a href="">
|
||||
<i class="fa fa-facebook" aria-hidden="true"></i>
|
||||
</a>
|
||||
<a href="">
|
||||
<i class="fa fa-twitter" aria-hidden="true"></i>
|
||||
</a>
|
||||
<a href="">
|
||||
<i class="fa fa-linkedin" aria-hidden="true"></i>
|
||||
</a>
|
||||
<a href="">
|
||||
<i class="fa fa-instagram" aria-hidden="true"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="copyright">
|
||||
Pelayanan Pelatihan Kemendesa
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- end info section -->
|
||||
|
||||
<!-- footer section -->
|
||||
<footer class="footer_section">
|
||||
<div class="container">
|
||||
<p>
|
||||
© <span id="displayYear"></span> All Rights Reserved By
|
||||
<a href="https://html.design/">Free Html Templates</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- footer section -->
|
||||
</div>
|
||||
</footer><!-- End Footer -->
|
||||
|
@ -1,35 +1,16 @@
|
||||
<div class="hero_area">
|
||||
<header class="header_section">
|
||||
<div class="container-fluid">
|
||||
<nav class="navbar navbar-expand-lg custom_nav-container ">
|
||||
<a class="navbar-brand" href="/admin">
|
||||
<span>
|
||||
PELAYANAN
|
||||
</span>
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
||||
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class=""> </span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav ">
|
||||
{{-- <li class="nav-item active">
|
||||
<a class="nav-link" href="/">Home <span class="sr-only">(current)</span></a>
|
||||
</li> --}}
|
||||
{{-- <li class="nav-item">
|
||||
<a class="nav-link" href="/potensi-sdm">Services</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="contact.html">Contact Us</a>
|
||||
</li> --}}
|
||||
</ul>
|
||||
<div class="quote_btn-container">
|
||||
<a href="/" class="quote_btn">
|
||||
Home
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- ======= Header ======= -->
|
||||
<header id="header" class="fixed-top d-flex align-items-center">
|
||||
<div class="container d-flex align-items-center">
|
||||
|
||||
<div class="logo me-auto">
|
||||
<h1 class="fs-5"><a href="/">Pelayanan Pelatihan</a></h1>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
<form action="/logout" method="POST">
|
||||
@csrf
|
||||
<button class="btn-login" type="submit" style="color: white">Logout
|
||||
<i class="mdi mdi-logout me-1"></i>
|
||||
</button>
|
||||
</form><!-- -->
|
||||
</nav><!-- .navbar -->
|
||||
</div>
|
||||
</header><!-- End Header -->
|
||||
|
@ -1,470 +1,152 @@
|
||||
@extends('layout.main')
|
||||
<div class="hero_area">
|
||||
@section('content')
|
||||
<section class="slider_section ">
|
||||
<div id="customCarousel1" class="carousel slide" data-ride="carousel">
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
<div class="container ">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="img-box">
|
||||
<img src="images/slider-img.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="detail-box">
|
||||
<h1>
|
||||
Digital Marketing Experts
|
||||
</h1>
|
||||
<p>
|
||||
Aenean scelerisque felis ut orci condimentum laoreet. Integer nisi nisl,
|
||||
convallis et augue sit amet, lobortis semper quam.
|
||||
</p>
|
||||
<div class="btn-box">
|
||||
<a href="" class="btn1">
|
||||
Contact Us
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ======= Hero Section ======= -->
|
||||
<section id="hero">
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 pt-5 pt-lg-0 order-2 order-lg-1 d-flex flex-column justify-content-center"
|
||||
data-aos="fade-up">
|
||||
<div>
|
||||
<h1>Pelayanan Pelatihan KEMENDESA</h1>
|
||||
<h2>Meningkatkan Kemampuan Pemerintah Desa dengan Pelatihan Kemendesa.</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="carousel-item ">
|
||||
<div class="container ">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="img-box">
|
||||
<img src="images/slider-img.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="detail-box">
|
||||
<h1>
|
||||
Digital Marketing Experts
|
||||
</h1>
|
||||
<p>
|
||||
Aenean scelerisque felis ut orci condimentum laoreet. Integer nisi nisl,
|
||||
convallis et augue sit amet, lobortis semper quam.
|
||||
</p>
|
||||
<div class="btn-box">
|
||||
<a href="" class="btn1">
|
||||
Contact Us
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="carousel-item ">
|
||||
<div class="container ">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="img-box">
|
||||
<img src="images/slider-img.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="detail-box">
|
||||
<h1>
|
||||
Digital Marketing Experts
|
||||
</h1>
|
||||
<p>
|
||||
Aenean scelerisque felis ut orci condimentum laoreet. Integer nisi nisl,
|
||||
convallis et augue sit amet, lobortis semper quam.
|
||||
</p>
|
||||
<div class="btn-box">
|
||||
<a href="" class="btn1">
|
||||
Contact Us
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 order-1 order-lg-2 hero-img" data-aos="fade-left" id="moving-image">
|
||||
<img src="assets-login-landing/img/hero-img.svg" class="img-fluid" alt=""
|
||||
style="width: 500px;">
|
||||
</div>
|
||||
</div>
|
||||
<ol class="carousel-indicators">
|
||||
<li data-target="#customCarousel1" data-slide-to="0" class="active"></li>
|
||||
<li data-target="#customCarousel1" data-slide-to="1"></li>
|
||||
<li data-target="#customCarousel1" data-slide-to="2"></li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
<!-- end slider section -->
|
||||
</div>
|
||||
</section><!-- End Hero -->
|
||||
|
||||
<!-- service section -->
|
||||
<section class="service_section layout_padding">
|
||||
<div class="container">
|
||||
<div class="heading_container">
|
||||
<h2>
|
||||
Our Services
|
||||
</h2>
|
||||
<p>
|
||||
consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
</p>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-lg-3">
|
||||
<a href="/kpmd" style="color: black">
|
||||
<div class="box">
|
||||
<div class="img-box">
|
||||
<img src="images/s1.png" alt="">
|
||||
</div>
|
||||
<div class="detail-box">
|
||||
<h5>
|
||||
Pelatihan KPMD
|
||||
</h5>
|
||||
<p>
|
||||
Pelatihan Kader Pemberdayaan Masyarakat Desa
|
||||
</p>
|
||||
</div>
|
||||
<main id="main">
|
||||
|
||||
<!-- ======= Features Section ======= -->
|
||||
<section id="features" class="features my-5">
|
||||
<div class="container">
|
||||
<div class="row d-flex align-items-center">
|
||||
<div class="col-lg-6 d-flex justify-content-center" data-aos="zoom-in">
|
||||
<img src="assets-login-landing/img/about.svg" alt="" class="img-fluid">
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-3">
|
||||
<a href="/bumdes" style="color: black">
|
||||
<div class="box">
|
||||
<div class="img-box">
|
||||
<img src="images/s2.png" alt="">
|
||||
</div>
|
||||
<div class="detail-box">
|
||||
<h5>
|
||||
Pelatihan BumDes
|
||||
</h5>
|
||||
<p>
|
||||
Pelatihan Badan Usaha Milik Desa
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-3">
|
||||
<a href="/deswita" style="color: black">
|
||||
<div class="box">
|
||||
<div class="img-box">
|
||||
<img src="images/s3.png" alt="">
|
||||
</div>
|
||||
<div class="detail-box">
|
||||
<h5>
|
||||
Pelatihan DesWita
|
||||
</h5>
|
||||
<p>
|
||||
Pelatihan Desa Wisata
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-3">
|
||||
<a href="/caltrans" style="color: black">
|
||||
<div class="box">
|
||||
<div class="img-box">
|
||||
<img src="images/s4.png" alt="">
|
||||
</div>
|
||||
<div class="detail-box">
|
||||
<h5>
|
||||
Pelatihan CalTrans
|
||||
</h5>
|
||||
<p>
|
||||
Pelatihan Calon Transmigrasi
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{{-- <div class="btn-box">
|
||||
<a href="">
|
||||
View More
|
||||
</a>
|
||||
</div> --}}
|
||||
</div>
|
||||
</section>
|
||||
<!-- end service section -->
|
||||
|
||||
<!-- about section -->
|
||||
|
||||
<section class="about_section layout_padding">
|
||||
<div class="container ">
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="detail-box">
|
||||
<div class="heading_container">
|
||||
<h2>
|
||||
About Us
|
||||
</h2>
|
||||
</div>
|
||||
<p>
|
||||
There are many variations of passages of Lorem Ipsum available, but the majority have
|
||||
suffered alteration
|
||||
in some form, by injected humour, or randomised words which don't look even slightly
|
||||
believable. If you
|
||||
are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything
|
||||
embarrassing hidden in
|
||||
the middle of text. All
|
||||
</p>
|
||||
<a href="">
|
||||
Read More
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 ">
|
||||
<div class="img-box">
|
||||
<img src="images/about-img.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- end about section -->
|
||||
|
||||
<!-- case section -->
|
||||
|
||||
<section class="case_section layout_padding">
|
||||
<div class="container">
|
||||
<div class="heading_container">
|
||||
<h2>
|
||||
Our Case Studies
|
||||
</h2>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="box">
|
||||
<div class="img-box">
|
||||
<img src="images/case-1.jpg" alt="">
|
||||
</div>
|
||||
<div class="detail-box">
|
||||
<h5>
|
||||
Sit amet consectetur adipisicing elit
|
||||
</h5>
|
||||
<div class="col-lg-6 mt-2 mb-tg-0 order-2 order-lg-1">
|
||||
<h2 style="font-weight: 600;">Tentang Pelayanan Pelatihan</h2>
|
||||
<p>
|
||||
Alteration in some form, by injected humour, or randomised words which don't look even
|
||||
slightly believable.
|
||||
Kami adalah aplikasi Pelayanan Pelatihan Kemendesa, berfokus pada memberikan pelatihan
|
||||
berkualitas kepada masyarakat desa di seluruh Indonesia untuk mendukung pembangunan yang
|
||||
berkelanjutan.
|
||||
</p>
|
||||
<a href="">
|
||||
<span>
|
||||
Read More
|
||||
</span>
|
||||
<i class="fa fa-long-arrow-right" aria-hidden="true"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="box">
|
||||
<div class="img-box">
|
||||
<img src="images/case-2.jpg" alt="">
|
||||
</div>
|
||||
<div class="detail-box">
|
||||
<h5>
|
||||
Excepturi placeat nihil eos maxime
|
||||
</h5>
|
||||
<p>
|
||||
Alteration in some form, by injected humour, or randomised words which don't look even
|
||||
slightly believable.
|
||||
</p>
|
||||
<a href="">
|
||||
<span>
|
||||
Read More
|
||||
</span>
|
||||
<i class="fa fa-long-arrow-right" aria-hidden="true"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</section><!-- End Features Section -->
|
||||
|
||||
<!-- ======= Services Section ======= -->
|
||||
<section id="services" class="services">
|
||||
<div class="container">
|
||||
|
||||
<div class="text-center mb-5" data-aos="fade-up">
|
||||
<h2 style="font-weight: 600;">Pelayanan Pelatihan</h2>
|
||||
<p>Pelayanan Pelatihan adalah program yang ditujukan untuk memperkuat keterampilan dan pengetahuan
|
||||
masyarakat desa. Dengan fokus pada berapa program pelatihan.</p>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in">
|
||||
<div class="icon-box icon-box-cyan">
|
||||
<div class="icon"><i class="bx bx-group"></i></div>
|
||||
<h4 class="title"><a href="/kpmd">Pelatihan KPMD</a></h4>
|
||||
<p class="description">Memberdayakan kader desa dengan pengetahuan dan keterampilan untuk
|
||||
memajukan masyarakat desa.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in"
|
||||
data-aos-delay="100">
|
||||
<div class="icon-box icon-box-cyan">
|
||||
<div class="icon"><i class="bx bx-group"></i></div>
|
||||
<h4 class="title"><a href="/bumdes">Pelatihan BumDesa</a></h4>
|
||||
<p class="description">Mendukung desa dalam mengembangkan badan usaha milik desa yang
|
||||
produktif.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in"
|
||||
data-aos-delay="200">
|
||||
<div class="icon-box icon-box-cyan">
|
||||
<div class="icon"><i class="bx bx-group"></i></div>
|
||||
<h4 class="title"><a href="/deswita">Pelatihan DesWita</a></h4>
|
||||
<p class="description">Mengembangkan potensi pariwisata desa dan meningkatkan daya tarik
|
||||
wisata.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in"
|
||||
data-aos-delay="300">
|
||||
<div class="icon-box icon-box-cyan">
|
||||
<div class="icon"><i class="bx bx-group"></i></div>
|
||||
<h4 class="title"><a href="/caltrans">Pelatihan CalTrans</a></h4>
|
||||
<p class="description">Persiapan komprehensif bagi calon transmigrasi untuk sukses dalam
|
||||
perpindahan ke wilayah baru.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</section><!-- End Services Section -->
|
||||
|
||||
<!-- end case section -->
|
||||
|
||||
<!-- client section -->
|
||||
<section class="client_section ">
|
||||
<div class="container">
|
||||
<div class="heading_container heading_center">
|
||||
<h2>
|
||||
Testimonial
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div id="customCarousel2" class="carousel slide" data-ride="carousel">
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-10 mx-auto">
|
||||
<div class="box">
|
||||
<div class="img-box">
|
||||
<img src="images/client.jpg" alt="">
|
||||
</div>
|
||||
<div class="detail-box">
|
||||
<div class="client_info">
|
||||
<div class="client_name">
|
||||
<h5>
|
||||
Morojink
|
||||
</h5>
|
||||
<h6>
|
||||
Customer
|
||||
</h6>
|
||||
</div>
|
||||
<i class="fa fa-quote-left" aria-hidden="true"></i>
|
||||
<section>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="overflow-hidden">
|
||||
<div class="card-header bg-transparent pd-b-0 pd-t-20 bd-b-0">
|
||||
<div class="d-flex justify-content-between">
|
||||
<h2 style="font-weight: 600;">Grafik Pelayanan Pelatihan</h2>
|
||||
<div class="dropdown">
|
||||
<button class="btn dropdown-toggle" style="background-color: #009C98; color: white;"
|
||||
type="button" id="dropdownMenuButton" data-toggle="dropdown"
|
||||
aria-haspopup="true" aria-expanded="false">
|
||||
Pilih Waktu Grafik
|
||||
</button>
|
||||
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
||||
<a class="dropdown-item" href="#">Bulan</a>
|
||||
<a class="dropdown-item" href="#">Tahun</a>
|
||||
</div>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut
|
||||
labore
|
||||
et
|
||||
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
|
||||
ullamco laboris nisi ut
|
||||
aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
|
||||
voluptate velit esse
|
||||
cillum
|
||||
dolore eu fugia
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<p class="mb-2">Ini adalah Grafik Statistik Pelayanan Pelatihan yang Menyajikan Data
|
||||
Terkini.</p>
|
||||
</div>
|
||||
<div class="card-body pd-y-7">
|
||||
<div id="project-budget"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-10 mx-auto">
|
||||
<div class="box">
|
||||
<div class="img-box">
|
||||
<img src="images/client.jpg" alt="">
|
||||
</div>
|
||||
<div class="detail-box">
|
||||
<div class="client_info">
|
||||
<div class="client_name">
|
||||
<h5>
|
||||
Morojink
|
||||
</h5>
|
||||
<h6>
|
||||
Customer
|
||||
</h6>
|
||||
</div>
|
||||
<i class="fa fa-quote-left" aria-hidden="true"></i>
|
||||
</div>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut
|
||||
labore
|
||||
et
|
||||
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
|
||||
ullamco laboris nisi ut
|
||||
aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
|
||||
voluptate velit esse
|
||||
cillum
|
||||
dolore eu fugia
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- ======= Cta Section ======= -->
|
||||
<section id="cta" class="cta">
|
||||
<div class="container">
|
||||
|
||||
<div class="row" data-aos="zoom-in">
|
||||
<div class="col-lg-9 text-lg-start">
|
||||
<h3>Mulai Sekarang</h3>
|
||||
<p>Mulai sekarang, jadikan perubahan positif dalam karier Anda! Lakukan pelatihan yang sesuai
|
||||
dan kembangkan potensi Anda bersama kami.</p>
|
||||
</div>
|
||||
<div class="col-lg-3 cta-btn-container text-center">
|
||||
<a class="cta-btn align-middle" href="#">Login</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-10 mx-auto">
|
||||
<div class="box">
|
||||
<div class="img-box">
|
||||
<img src="images/client.jpg" alt="">
|
||||
</div>
|
||||
<div class="detail-box">
|
||||
<div class="client_info">
|
||||
<div class="client_name">
|
||||
<h5>
|
||||
Morojink
|
||||
</h5>
|
||||
<h6>
|
||||
Customer
|
||||
</h6>
|
||||
</div>
|
||||
<i class="fa fa-quote-left" aria-hidden="true"></i>
|
||||
</div>
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||
tempor incididunt ut
|
||||
labore
|
||||
et
|
||||
dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation
|
||||
ullamco laboris nisi ut
|
||||
aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
|
||||
voluptate velit esse
|
||||
cillum
|
||||
dolore eu fugia
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<ol class="carousel-indicators">
|
||||
<li data-target="#customCarousel2" data-slide-to="0" class="active"></li>
|
||||
<li data-target="#customCarousel2" data-slide-to="1"></li>
|
||||
<li data-target="#customCarousel2" data-slide-to="2"></li>
|
||||
</ol>
|
||||
</div>
|
||||
</section>
|
||||
<!-- end client section -->
|
||||
</section><!-- End Cta Section -->
|
||||
|
||||
|
||||
|
||||
<!-- contact section -->
|
||||
|
||||
<section class="contact_section layout_padding">
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-md-5 col-lg-4 offset-md-1">
|
||||
<div class="form_container">
|
||||
<div class="heading_container">
|
||||
<h2>
|
||||
Request A Call back
|
||||
</h2>
|
||||
</div>
|
||||
<form action="">
|
||||
<div>
|
||||
<input type="text" placeholder="Full Name " />
|
||||
</div>
|
||||
<div>
|
||||
<input type="email" placeholder="Email" />
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" placeholder="Phone number" />
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" class="message-box" placeholder="Message" />
|
||||
</div>
|
||||
<div class="d-flex ">
|
||||
<button>
|
||||
SEND
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 col-lg-7 px-0">
|
||||
<div class="map_container">
|
||||
<div class="map">
|
||||
<div id="googleMap"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- end contact section -->
|
||||
@endsection
|
||||
</main><!-- End #main -->
|
||||
@endsection
|
||||
|
@ -1,4 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
{{-- <!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
@ -69,6 +69,101 @@
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html> --}}
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}" />
|
||||
<!-- Mobile Metas -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<!-- Site Metas -->
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="author" content="" />
|
||||
|
||||
<title>KEMENDESA | PELAYANAN PELATIHAN</title>
|
||||
<meta content="" name="description">
|
||||
<meta content="" name="keywords">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link href="/assets-login-landing/img/Kemendes_Logo.png" rel="icon">
|
||||
|
||||
<!-- Google Fonts -->
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,600,600i,700,700i"
|
||||
rel="stylesheet">
|
||||
|
||||
<!-- Vendor CSS Files -->
|
||||
<link href="/assets-login-landing/vendor/aos/aos.css" rel="stylesheet">
|
||||
<link href="/assets-login-landing/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/assets-login-landing/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
|
||||
<link href="/assets-login-landing/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
|
||||
<link href="/assets-login-landing/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
|
||||
|
||||
<!-- Template Main CSS File -->
|
||||
<link href="/assets-login-landing/css/style.css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body class="sub_page">
|
||||
|
||||
<header class="header-area header-sticky">
|
||||
|
||||
@include('layout.header')
|
||||
</header>
|
||||
<main id="main" style="min-height: 100vh;">
|
||||
@stack('css')
|
||||
@yield('content')
|
||||
@stack('js')
|
||||
|
||||
</main>
|
||||
|
||||
<footer id="footer">
|
||||
@include('layout.footer')
|
||||
</footer>
|
||||
|
||||
<!-- jQery -->
|
||||
<script src="js/jquery-3.4.1.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
$.ajaxSetup({
|
||||
headers: {
|
||||
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
||||
}
|
||||
});
|
||||
</script>
|
||||
<script src="/assets-login-landing/vendor/aos/aos.js"></script>
|
||||
<script src="/assets-login-landing/vendor/swiper/swiper-bundle.min.js"></script>
|
||||
|
||||
|
||||
<!-- ApexChart -->
|
||||
<script src="/assets-login-landing/js/apexcharts.min.js"></script>
|
||||
|
||||
<!--- Index js -->
|
||||
<script src="/assets-login-landing/js/index.js"></script>
|
||||
|
||||
<!--themecolor js-->
|
||||
<script src="/assets-login-landing/js/themecolor.js"></script>
|
||||
|
||||
<!-- Template Main JS File -->
|
||||
<script src="/assets-login-landing/js/main.js"></script>
|
||||
<!-- popper js -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
|
||||
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous">
|
||||
</script>
|
||||
<!-- bootstrap js -->
|
||||
<script src="js/bootstrap.js"></script>
|
||||
<script src="js/custom.js"></script>
|
||||
<!-- Google Map -->
|
||||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCh39n5U-4IoWpsVGUHWdqB6puEkhRLdmI&callback=myMap">
|
||||
</script>
|
||||
<!-- End Google Map -->
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -1,3 +1,186 @@
|
||||
@extends('layout.main')
|
||||
@section('content')
|
||||
@endsection
|
||||
{{-- <!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Log In | Hyper - Responsive Bootstrap 5 Admin Dashboard</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta content="A fully featured admin theme which can be used to build CRM, CMS, etc." name="description" />
|
||||
<meta content="Coderthemes" name="author" />
|
||||
<!-- App favicon -->
|
||||
<link rel="shortcut icon" href="assets/images/favicon.ico">
|
||||
|
||||
<!-- App css -->
|
||||
<link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="assets/css/app.min.css" rel="stylesheet" type="text/css" id="light-style" />
|
||||
<link href="assets/css/app-dark.min.css" rel="stylesheet" type="text/css" id="dark-style" />
|
||||
|
||||
</head>
|
||||
|
||||
<body class="loading authentication-bg"
|
||||
data-layout-config='{"leftSideBarTheme":"dark","layoutBoxed":false, "leftSidebarCondensed":false, "leftSidebarScrollable":false,"darkMode":false, "showRightSidebarOnStart": true}'>
|
||||
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-xxl-4 col-lg-5">
|
||||
<div class="card">
|
||||
|
||||
<!-- Logo -->
|
||||
<div class="card-header pt-4 pb-4 text-center bg-primary">
|
||||
<a href="index.html">
|
||||
<span><img src="assets/images/logo.png" alt="" height="18"></span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="card-body p-4">
|
||||
|
||||
<div class="text-center w-75 m-auto">
|
||||
<h4 class="text-dark-50 text-center pb-0 fw-bold">Sign In</h4>
|
||||
<p class="text-muted mb-4">Enter your email address and password to access admin panel.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<form action="/login" method="POST">
|
||||
@csrf
|
||||
@if (session()->has('errorLogin'))
|
||||
<div class="alert alert-danger" role="alert">
|
||||
{{ session('errorLogin') }}
|
||||
</div>
|
||||
@endif
|
||||
<div class="mb-3">
|
||||
<label for="emailaddress" class="form-label">Email address</label>
|
||||
<input class="form-control" type="email" name="email" required=""
|
||||
placeholder="Enter your email">
|
||||
</div>
|
||||
|
||||
|
||||
<label for="password" class="form-label">Password</label>
|
||||
<div class="input-group input-group-merge">
|
||||
<input type="password" name="password" class="form-control"
|
||||
placeholder="Enter your password">
|
||||
<div class="input-group-text" data-password="false">
|
||||
<span class="password-eye"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 mb-0 text-center">
|
||||
<button class="btn btn-primary" type="submit"> Log In </button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div> <!-- end card-body -->
|
||||
</div>
|
||||
<!-- end card -->
|
||||
|
||||
<div class="row mt-3">
|
||||
<div class="col-12 text-center">
|
||||
<p class="text-muted">Don't have an account? <a href="pages-register.html"
|
||||
class="text-muted ms-1"><b>Sign Up</b></a></p>
|
||||
</div> <!-- end col -->
|
||||
</div>
|
||||
<!-- end row -->
|
||||
|
||||
</div> <!-- end col -->
|
||||
</div>
|
||||
<!-- end row -->
|
||||
</div>
|
||||
<!-- end container -->
|
||||
</div>
|
||||
<!-- end page -->
|
||||
|
||||
<footer class="footer footer-alt">
|
||||
2018 - 2021 © Hyper - Coderthemes.com
|
||||
</footer>
|
||||
|
||||
<!-- bundle -->
|
||||
<script src="assets/js/vendor.min.js"></script>
|
||||
<script src="assets/js/app.min.js"></script>
|
||||
|
||||
</body>
|
||||
|
||||
</html> --}}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>KEMENDESA | PELAYANAN PELATIHAN</title>
|
||||
<link href="assets-login-landing/img/Kemendes_Logo.png" rel="icon">
|
||||
|
||||
<!-- Favicons -->
|
||||
<link rel="stylesheet" type="text/css" href="assets-login/css/style.css">
|
||||
|
||||
<!-- Google Fonts -->
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,600,600i,700,700i"
|
||||
rel="stylesheet">
|
||||
<script src="https://kit.fontawesome.com/a81368914c.js"></script>
|
||||
|
||||
<!-- Template Main CSS File -->
|
||||
<link href="assets-login-landing/css/style.css" rel="stylesheet">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="login">
|
||||
<div class="container">
|
||||
<div class="img">
|
||||
<img src="assets-login-landing/img/login.svg" class="img-fluid animated" id="moving-login-img">
|
||||
</div>
|
||||
<div class="login-content">
|
||||
<form action="/login" method="POST">
|
||||
@csrf
|
||||
@if (session()->has('errorLogin'))
|
||||
<div class="alert alert-danger" role="alert">
|
||||
{{ session('errorLogin') }}
|
||||
</div>
|
||||
@endif
|
||||
<h1 class="title">Welcome!</h1>
|
||||
<p>Unlock your path to success by entering your login details.</p>
|
||||
<div class="input-div one">
|
||||
<div class="i">
|
||||
<i class="fas fa-user"></i>
|
||||
</div>
|
||||
<div class="div">
|
||||
<h5>Email</h5>
|
||||
<input type="email" class="input" name="email">
|
||||
</div>
|
||||
</div>
|
||||
<div class="input-div pass">
|
||||
<div class="i">
|
||||
<i class="fas fa-lock"></i>
|
||||
</div>
|
||||
<div class="div">
|
||||
<h5>Password</h5>
|
||||
<input type="password" class="input" name="password">
|
||||
</div>
|
||||
</div>
|
||||
<input type="submit" class="btn" value="Login" style="color: #fff;">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
const inputs = document.querySelectorAll(".input");
|
||||
|
||||
function addcl() {
|
||||
let parent = this.parentNode.parentNode;
|
||||
parent.classList.add("focus");
|
||||
}
|
||||
|
||||
function remcl() {
|
||||
let parent = this.parentNode.parentNode;
|
||||
if (this.value == "") {
|
||||
parent.classList.remove("focus");
|
||||
}
|
||||
}
|
||||
inputs.forEach(input => {
|
||||
input.addEventListener("focus", addcl);
|
||||
input.addEventListener("blur", remcl);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -12,6 +12,8 @@ use App\Http\Controllers\DataPribadiBumdesController;
|
||||
use App\Http\Controllers\DataPribadiCaltransController;
|
||||
use App\Http\Controllers\DataPribadiDeswitaController;
|
||||
use App\Http\Controllers\DataPribadiKpmdController;
|
||||
use App\Http\Controllers\LoginController;
|
||||
use App\Http\Controllers\ManajemenAdminController;
|
||||
use App\Http\Controllers\PotensiSdmController;
|
||||
use App\Http\Controllers\DataWisata;
|
||||
use Dflydev\DotAccessData\Data;
|
||||
@ -28,12 +30,12 @@ use Illuminate\Support\Facades\Route;
|
||||
|
|
||||
*/
|
||||
|
||||
Route::get('/login', function () {
|
||||
return view('login.index');
|
||||
});
|
||||
// Route::get('/login', function () {
|
||||
// return view('login.index');
|
||||
// });
|
||||
Route::get('/', function () {
|
||||
return view('layout.index');
|
||||
});
|
||||
})->middleware('auth');
|
||||
Route::get('/data-pribadi-kmpd', function () {
|
||||
return view('KPMD.index');
|
||||
});
|
||||
@ -52,31 +54,35 @@ Route::get('/data-pribadi-deswita', function () {
|
||||
|
||||
Route::get('/admin', function () {
|
||||
return view('Admin.layout.index');
|
||||
});
|
||||
Route::get('/super-admin', function () {
|
||||
return view('Admin.Super-Admin.index');
|
||||
});
|
||||
})->middleware('auth');
|
||||
// Route::get('/super-admin', function () {
|
||||
// return view('Admin.Manejemen-Admin.index');
|
||||
// });
|
||||
|
||||
|
||||
|
||||
Route::get('/test', function () {
|
||||
return view('test.index');
|
||||
});
|
||||
Route::resource('potensi-sdm', PotensiSdmController::class)->parameter('potensi-sdm', 'potensi_sdms');
|
||||
Route::GET('/login', [LoginController::class, 'login'])->name('login')->middleware('guest');
|
||||
Route::post('/login', [LoginController::class, 'authenticate']);
|
||||
Route::GET('/logout', [LoginController::class, 'logout']);
|
||||
Route::POST('/logout', [LoginController::class, 'logout']);
|
||||
Route::resource('potensi-sdm', PotensiSdmController::class)->parameter('potensi-sdm', 'potensi_sdms')->middleware('auth');
|
||||
|
||||
Route::resource('kpmd', DataPribadiKpmdController::class)->parameter('kpmd', 'data_pribadi_kpmds');
|
||||
Route::resource('kpmd', DataPribadiKpmdController::class)->parameter('kpmd', 'data_pribadi_kpmds')->middleware('auth');
|
||||
// Route::resource('data-distrik-kpmd', DataDistrikKpmdController::class)->parameter('data-distrik-kpmd', 'data_distrik_kpmds');
|
||||
// Route::resource('kpmd-data-kpmd', DataKpmdController::class)->parameter('kpmd-data-kpmd', 'data-kpmds');
|
||||
|
||||
|
||||
Route::resource('bumdes', DataPribadiBumdesController::class)->parameter('bumdes', 'data_pribadi_bumdes');
|
||||
Route::resource('bumdes', DataPribadiBumdesController::class)->parameter('bumdes', 'data_pribadi_bumdes')->middleware('auth');
|
||||
//Route::resource('data-distrik-bumdes', DataDistrikBumdesController::class)->parameter('data-distrik-bumdes', 'data_distrik_bumdes');
|
||||
//Route::resource('bumdes-data-bumdes', DataBumdesController::class)->parameter('bumdes-data-bumdes', 'data_bumdes');
|
||||
|
||||
Route::resource('deswita', DataPribadiDeswitaController::class)->parameter('deswita', 'data_pribadi_deswitas');
|
||||
Route::resource('deswita', DataPribadiDeswitaController::class)->parameter('deswita', 'data_pribadi_deswitas')->middleware('auth');
|
||||
//Route::resource('data-distrik-deswita', DataDistrikDeswitaController::class)->parameter('data-distrik-deswita', 'data_distrik_deswitas');
|
||||
|
||||
Route::resource('caltrans', DataPribadiCaltransController::class)->parameter('caltrans', 'data_pribadi_caltrans');
|
||||
Route::resource('caltrans', DataPribadiCaltransController::class)->parameter('caltrans', 'data_pribadi_caltrans')->middleware('auth');
|
||||
//Route::resource('data-distrik-caltrans', DataDistrikCaltransController::class)->parameter('data-distrik-caltrans', 'data_distrik_caltrans');
|
||||
|
||||
|
||||
@ -84,3 +90,5 @@ Route::post('save-bumdes-data-bumdes', [DataBumdesController::class,"savebumdes"
|
||||
Route::post('save-kpmd-data-kpmd', [DataKpmdController::class,"savedatakpmd"])->name("savekpmddatakpmd");
|
||||
Route::post('save-deswita-data-deswita', [DataDeswitaController::class,"savedatadeswita"])->name("savedeswitadatadeswita");
|
||||
Route::post('save-caltrans-data-caltrans', [DataClatransController::class,"savedatacaltrans"])->name("savecaltransdatacaltrans");
|
||||
|
||||
Route::resource('super-admin', ManajemenAdminController::class)->parameter('super-admin', 'manajemen-admins')->middleware('auth');
|