From 513b69904dd4e8e58b5109b5f5382686ca6fb4db Mon Sep 17 00:00:00 2001 From: Alireza Mohammadi Arani Date: Sat, 3 May 2025 12:53:48 +0400 Subject: [PATCH 1/8] add issue and expiry date --- ...d_issue_and_expiry_date_to_files_table.php | 29 ++++++++++ packages/Webkul/Activity/src/Models/File.php | 2 + .../src/Repositories/ActivityRepository.php | 29 +++++----- .../Http/Resources/ActivityFileResource.php | 14 +++-- .../Admin/src/Resources/lang/en/app.php | 2 + .../views/activities/index.blade.php | 56 +++++++++---------- .../activities/actions/file.blade.php | 36 ++++++++++-- .../components/activities/index.blade.php | 55 +++++++++++++++--- .../views/leads/index/upload.blade.php | 2 +- 9 files changed, 164 insertions(+), 61 deletions(-) create mode 100644 database/migrations/2025_05_03_111731_add_issue_and_expiry_date_to_files_table.php diff --git a/database/migrations/2025_05_03_111731_add_issue_and_expiry_date_to_files_table.php b/database/migrations/2025_05_03_111731_add_issue_and_expiry_date_to_files_table.php new file mode 100644 index 000000000..3852a7819 --- /dev/null +++ b/database/migrations/2025_05_03_111731_add_issue_and_expiry_date_to_files_table.php @@ -0,0 +1,29 @@ +date('issue_date')->nullable(); + $table->date('expiry_date')->nullable(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('activity_files', function (Blueprint $table) { + $table->dropColumn(['issue_date', 'expiry_date']); + }); + } +}; diff --git a/packages/Webkul/Activity/src/Models/File.php b/packages/Webkul/Activity/src/Models/File.php index efbf90c5b..cc80aeac6 100644 --- a/packages/Webkul/Activity/src/Models/File.php +++ b/packages/Webkul/Activity/src/Models/File.php @@ -31,6 +31,8 @@ class File extends Model implements FileContract 'name', 'path', 'activity_id', + 'issue_date', + 'expiry_date', ]; /** diff --git a/packages/Webkul/Activity/src/Repositories/ActivityRepository.php b/packages/Webkul/Activity/src/Repositories/ActivityRepository.php index 3b4d6a4f8..8398c75b6 100755 --- a/packages/Webkul/Activity/src/Repositories/ActivityRepository.php +++ b/packages/Webkul/Activity/src/Repositories/ActivityRepository.php @@ -14,8 +14,9 @@ class ActivityRepository extends Repository */ public function __construct( protected FileRepository $fileRepository, - Container $container - ) { + Container $container + ) + { parent::__construct($container); } @@ -40,13 +41,15 @@ public function create(array $data) if (isset($data['file'])) { $this->fileRepository->create([ - 'name' => $data['name'] ?? $data['file']->getClientOriginalName(), - 'path' => $data['file']->store('activities/'.$activity->id), + 'issue_date' => $data['issue_date'] ?? null, + 'expiry_date' => $data['expiry_date'] ?? null, + 'name' => $data['name'] ?? $data['file']->getClientOriginalName(), + 'path' => $data['file']->store('activities/' . $activity->id), 'activity_id' => $activity->id, ]); } - if (! isset($data['participants'])) { + if (!isset($data['participants'])) { return $activity; } @@ -68,8 +71,8 @@ public function create(array $data) /** * Update pipeline. * - * @param int $id - * @param string $attribute + * @param int $id + * @param string $attribute * @return \Webkul\Activity\Contracts\Activity */ public function update(array $data, $id, $attribute = 'id') @@ -114,7 +117,7 @@ public function update(array $data, $id, $attribute = 'id') } /** - * @param string $dateRange + * @param string $dateRange * @return mixed */ public function getActivities($dateRange) @@ -143,10 +146,10 @@ public function getActivities($dateRange) } /** - * @param string $startFrom - * @param string $endFrom - * @param array $participants - * @param int $id + * @param string $startFrom + * @param string $endFrom + * @param array $participants + * @param int $id * @return bool */ public function isDurationOverlapping($startFrom, $endFrom, $participants, $id) @@ -176,7 +179,7 @@ public function isDurationOverlapping($startFrom, $endFrom, $participants, $id) }) ->groupBy('activities.id'); - if (! is_null($id)) { + if (!is_null($id)) { $queryBuilder->where('activities.id', '!=', $id); } diff --git a/packages/Webkul/Admin/src/Http/Resources/ActivityFileResource.php b/packages/Webkul/Admin/src/Http/Resources/ActivityFileResource.php index abfdc0d31..76a5853e3 100644 --- a/packages/Webkul/Admin/src/Http/Resources/ActivityFileResource.php +++ b/packages/Webkul/Admin/src/Http/Resources/ActivityFileResource.php @@ -15,12 +15,14 @@ class ActivityFileResource extends JsonResource public function toArray($request) { return [ - 'id' => $this->id, - 'name' => $this->name, - 'path' => $this->path, - 'url' => $this->url, - 'created_at' => $this->created_at, - 'updated_at' => $this->updated_at, + 'id' => $this->id, + 'name' => $this->name, + 'path' => $this->path, + 'url' => $this->url, + 'issue_date' => $this->issue_date, + 'expiry_date' => $this->expiry_date, + 'created_at' => $this->created_at, + 'updated_at' => $this->updated_at, ]; } } diff --git a/packages/Webkul/Admin/src/Resources/lang/en/app.php b/packages/Webkul/Admin/src/Resources/lang/en/app.php index 7bb10634a..12bd1c800 100644 --- a/packages/Webkul/Admin/src/Resources/lang/en/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/en/app.php @@ -123,6 +123,8 @@ 'description' => 'Description', 'file' => 'File', 'save-btn' => 'Save File', + 'issue-date' => 'Issue Date', + 'expiry-date' => 'Expiry Date', ], 'note' => [ diff --git a/packages/Webkul/Admin/src/Resources/views/activities/index.blade.php b/packages/Webkul/Admin/src/Resources/views/activities/index.blade.php index bb370e2e6..3e3bed79b 100644 --- a/packages/Webkul/Admin/src/Resources/views/activities/index.blade.php +++ b/packages/Webkul/Admin/src/Resources/views/activities/index.blade.php @@ -11,7 +11,7 @@
- +
@lang('admin::app.activities.index.title')
@@ -19,7 +19,7 @@
- +
@@ -37,7 +37,7 @@ {!! view_render_event('admin.activities.index.activities.after') !!} @pushOnce('scripts') - -@endPushOnce \ No newline at end of file +@endPushOnce diff --git a/packages/Webkul/Admin/src/Resources/views/components/activities/index.blade.php b/packages/Webkul/Admin/src/Resources/views/components/activities/index.blade.php index 7413c42cb..323bde4e5 100644 --- a/packages/Webkul/Admin/src/Resources/views/components/activities/index.blade.php +++ b/packages/Webkul/Admin/src/Resources/views/components/activities/index.blade.php @@ -202,22 +202,48 @@ class="dark:text-white" class="flex flex-wrap gap-2" v-if="activity.files.length" > - + + class="flex cursor-pointer items-center gap-1 rounded-md p-1.5" + > + @{{ file.name }} - + + +
+ + + Issue Date : @{{ file.issue_date }} + +
+
+ + + + Expire Date : @{{ file.expiry_date }} + ( + @{{ getRemainingDays(file.expiry_date) }} + ) + + +
+
+ {!! view_render_event('admin.components.activities.content.activity.item.attachments.after') !!} @@ -634,6 +660,21 @@ class="dark:mix-blend-exclusion dark:invert" } }); }, + + getRemainingDays(expiryDate) { + const now = new Date(); + const expiry = new Date(expiryDate); + const diffTime = expiry - now; + const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24)); + + if (diffDays > 0) { + return `${diffDays} day(s) left`; + } else if (diffDays === 0) { + return 'Expires today'; + } else { + return `${Math.abs(diffDays)} day(s) ago`; + } + }, }, }); diff --git a/packages/Webkul/Admin/src/Resources/views/leads/index/upload.blade.php b/packages/Webkul/Admin/src/Resources/views/leads/index/upload.blade.php index e6d598d71..25cb79bec 100644 --- a/packages/Webkul/Admin/src/Resources/views/leads/index/upload.blade.php +++ b/packages/Webkul/Admin/src/Resources/views/leads/index/upload.blade.php @@ -26,7 +26,7 @@ class="secondary-button" as="div" ref="modalForm" > -
Date: Tue, 27 May 2025 17:27:37 +0400 Subject: [PATCH 2/8] update --- ...tners_and_local_agent_to_persons_table.php | 31 ++++++++++ .../DataGrids/Settings/AttributeDataGrid.php | 1 + .../Activity/ActivityController.php | 6 ++ .../src/Resources/assets/images/logo.svg | 40 +++++++++++-- .../components/layouts/header/index.blade.php | 10 ++-- .../views/contacts/persons/create.blade.php | 7 +-- .../views/contacts/persons/edit.blade.php | 52 ++++++++++++++-- .../persons/view/attributes.blade.php | 6 +- .../views/leads/common/contact.blade.php | 2 +- .../Resources/views/sessions/login.blade.php | 16 ++--- .../Webkul/Admin/src/Routes/Front/web.php | 5 +- .../Webkul/Attribute/src/Models/Attribute.php | 7 +++ .../src/Repositories/PersonRepository.php | 3 + public/admin/build/assets/Shiny_Horizon.svg | 56 ++++++++++++++++++ public/admin/build/assets/favicon-.ico | Bin 0 -> 1150 bytes .../admin/build/assets/favicon-BtbgZBji.ico | Bin 1150 -> 3518 bytes public/admin/build/assets/logo-Bjh7YAuF.svg | 40 +++++++++++-- public/admin/build/manifest.json | 6 +- public/build/assets/app-T1DpEqax.js | 6 ++ public/build/assets/app-l0sNRNKZ.js | 1 + public/build/manifest.json | 14 +++++ public/installer/build/manifest.json | 4 +- 22 files changed, 272 insertions(+), 41 deletions(-) create mode 100644 database/migrations/2025_05_26_170158_add_partners_and_local_agent_to_persons_table.php create mode 100644 public/admin/build/assets/Shiny_Horizon.svg create mode 100644 public/admin/build/assets/favicon-.ico create mode 100644 public/build/assets/app-T1DpEqax.js create mode 100644 public/build/assets/app-l0sNRNKZ.js create mode 100644 public/build/manifest.json diff --git a/database/migrations/2025_05_26_170158_add_partners_and_local_agent_to_persons_table.php b/database/migrations/2025_05_26_170158_add_partners_and_local_agent_to_persons_table.php new file mode 100644 index 000000000..08a5962f1 --- /dev/null +++ b/database/migrations/2025_05_26_170158_add_partners_and_local_agent_to_persons_table.php @@ -0,0 +1,31 @@ +string('partner_2')->nullable()->after('name'); // or appropriate type + $table->string('partner_3')->nullable()->after('partner_2'); + $table->string('local_agent')->nullable()->after('partner_3'); + sponsor + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('persons', function (Blueprint $table) { + $table->dropColumn(['partner_2', 'partner_3', 'local_agent']); + }); + } +}; diff --git a/packages/Webkul/Admin/src/DataGrids/Settings/AttributeDataGrid.php b/packages/Webkul/Admin/src/DataGrids/Settings/AttributeDataGrid.php index bbbeeb9cd..c07ed3d60 100644 --- a/packages/Webkul/Admin/src/DataGrids/Settings/AttributeDataGrid.php +++ b/packages/Webkul/Admin/src/DataGrids/Settings/AttributeDataGrid.php @@ -28,6 +28,7 @@ public function prepareQueryBuilder(): Builder $this->addFilter('id', 'attributes.id'); $this->addFilter('type', 'attributes.type'); $this->addFilter('attribute_type', 'attributes.is_user_defined'); + $queryBuilder->orderBy('attributes.sort_order', 'asc'); return $queryBuilder; } diff --git a/packages/Webkul/Admin/src/Http/Controllers/Activity/ActivityController.php b/packages/Webkul/Admin/src/Http/Controllers/Activity/ActivityController.php index 02a7369fa..db9f338ab 100755 --- a/packages/Webkul/Admin/src/Http/Controllers/Activity/ActivityController.php +++ b/packages/Webkul/Admin/src/Http/Controllers/Activity/ActivityController.php @@ -202,6 +202,12 @@ public function download(int $id): StreamedResponse { try { $file = $this->fileRepository->findOrFail($id); + $extension = pathinfo($file->path, PATHINFO_EXTENSION); + + if (!empty($file->name)) { + $customName = $file->name . '_' . $file->activity->title . '.' . $extension; + return Storage::download($file->path, $customName); + } return Storage::download($file->path); } catch (\Exception $exception) { diff --git a/packages/Webkul/Admin/src/Resources/assets/images/logo.svg b/packages/Webkul/Admin/src/Resources/assets/images/logo.svg index 50755ec62..ef4708bc5 100644 --- a/packages/Webkul/Admin/src/Resources/assets/images/logo.svg +++ b/packages/Webkul/Admin/src/Resources/assets/images/logo.svg @@ -1,6 +1,36 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/Webkul/Admin/src/Resources/views/components/layouts/header/index.blade.php b/packages/Webkul/Admin/src/Resources/views/components/layouts/header/index.blade.php index 21f078a08..60307510c 100644 --- a/packages/Webkul/Admin/src/Resources/views/components/layouts/header/index.blade.php +++ b/packages/Webkul/Admin/src/Resources/views/components/layouts/header/index.blade.php @@ -1,9 +1,9 @@ -
+
- +
@@ -56,7 +56,7 @@ class="{{ request()->cookie('dark_mode') ? 'icon-light' : 'icon-dark' }} p-1.5 r @include('admin::components.layouts.header.quick-creation')
- + @@ -80,7 +80,7 @@ class="h-full w-full object-cover"
diff --git a/packages/Webkul/Admin/src/Resources/views/contacts/persons/create.blade.php b/packages/Webkul/Admin/src/Resources/views/contacts/persons/create.blade.php index a975eb325..e6ce7e799 100644 --- a/packages/Webkul/Admin/src/Resources/views/contacts/persons/create.blade.php +++ b/packages/Webkul/Admin/src/Resources/views/contacts/persons/create.blade.php @@ -5,7 +5,7 @@ {!! view_render_event('admin.persons.create.form.before') !!} - +
-
{!! view_render_event('admin.persons.create.create_button.before') !!} @@ -43,7 +42,7 @@ class="primary-button"
- +
{!! view_render_event('admin.persons.create.form_controls.before') !!} @@ -62,7 +61,7 @@ class="primary-button" ], ]" /> - + {!! view_render_event('admin.persons.create.form_controls.after') !!}
diff --git a/packages/Webkul/Admin/src/Resources/views/contacts/persons/edit.blade.php b/packages/Webkul/Admin/src/Resources/views/contacts/persons/edit.blade.php index 4367c4780..2f89bae60 100644 --- a/packages/Webkul/Admin/src/Resources/views/contacts/persons/edit.blade.php +++ b/packages/Webkul/Admin/src/Resources/views/contacts/persons/edit.blade.php @@ -17,8 +17,8 @@
{!! view_render_event('admin.persons.edit.breadcrumbs.before') !!} - @@ -49,10 +49,50 @@ class="primary-button"
{!! view_render_event('admin.contacts.persons.edit.form_controls.before') !!} + @php + $attributes = app('Webkul\Attribute\Repositories\AttributeRepository')->findWhere([ + 'entity_type' => 'persons', +]); + + $should_remove_fields=[]; + +foreach ($attributes as $attribute){ + if($attribute->code==='person_type'){ + + $attributeValues = app('Webkul\Attribute\Repositories\AttributeValueRepository')->findWhere([ + 'entity_type' => 'persons', + 'attribute_id'=>$attribute->id + ])->first(); + + + switch($attributeValues->integer_value){ + case 1: + + break; + case 2: + + $should_remove_fields=['company_name_en','company_name_ar','license_no', + 'company_issue_date','company_expiry_date','partner_2','partner_3','local_agent' + ]; + + break; + case 3: + $should_remove_fields=['company_name_en','company_name_ar','license_no', + 'company_issue_date','company_expiry_date','partner_2','partner_3','local_agent' + ]; + + break; + + } + + } +} +$attributes = $attributes->reject(function ($attribute) use ($should_remove_fields) { + return in_array($attribute->code, $should_remove_fields); +}); +@endphp - + {!! view_render_event('admin.contacts.persons.edit.form_controls.after') !!}
diff --git a/packages/Webkul/Admin/src/Resources/views/contacts/persons/view/attributes.blade.php b/packages/Webkul/Admin/src/Resources/views/contacts/persons/view/attributes.blade.php index c262a81f0..052cbd711 100644 --- a/packages/Webkul/Admin/src/Resources/views/contacts/persons/view/attributes.blade.php +++ b/packages/Webkul/Admin/src/Resources/views/contacts/persons/view/attributes.blade.php @@ -18,7 +18,7 @@ > {!! view_render_event('admin.contacts.persons.view.attributes.form_controls.attributes_view.before', ['person' => $person]) !!} - + id)" :allow-edit="true" /> - + {!! view_render_event('admin.contacts.persons.view.attributes.form_controls.attributes_view.after', ['person' => $person]) !!} - + {!! view_render_event('admin.contacts.persons.view.attributes.form_controls.after', ['person' => $person]) !!} diff --git a/packages/Webkul/Admin/src/Resources/views/leads/common/contact.blade.php b/packages/Webkul/Admin/src/Resources/views/leads/common/contact.blade.php index 6f89f8d3b..7ab239454 100644 --- a/packages/Webkul/Admin/src/Resources/views/leads/common/contact.blade.php +++ b/packages/Webkul/Admin/src/Resources/views/leads/common/contact.blade.php @@ -138,4 +138,4 @@ } }); -@endPushOnce \ No newline at end of file +@endPushOnce diff --git a/packages/Webkul/Admin/src/Resources/views/sessions/login.blade.php b/packages/Webkul/Admin/src/Resources/views/sessions/login.blade.php index 1db7ecb9b..db539b29d 100644 --- a/packages/Webkul/Admin/src/Resources/views/sessions/login.blade.php +++ b/packages/Webkul/Admin/src/Resources/views/sessions/login.blade.php @@ -9,13 +9,13 @@ @if ($logo = core()->getConfigData('general.design.admin_logo.logo_image')) {{ config('app.name') }} @else {{ config('app.name') }} @@ -103,12 +103,12 @@ class="primary-button" -
- @lang('admin::app.components.layouts.powered-by.description', [ - 'krayin' => 'Krayin', - 'webkul' => 'Webkul', - ]) -
+{{--
--}} +{{-- @lang('admin::app.components.layouts.powered-by.description', [--}} +{{-- 'krayin' => 'Krayin',--}} +{{-- 'webkul' => 'Webkul',--}} +{{-- ])--}} +{{--
--}} @push('scripts') diff --git a/packages/Webkul/Admin/src/Routes/Front/web.php b/packages/Webkul/Admin/src/Routes/Front/web.php index a42ebf237..e99d9dad9 100644 --- a/packages/Webkul/Admin/src/Routes/Front/web.php +++ b/packages/Webkul/Admin/src/Routes/Front/web.php @@ -6,4 +6,7 @@ /** * Home routes. */ -Route::get('/', [Controller::class, 'redirectToLogin'])->name('krayin.home'); +//Route::get('/', [Controller::class, 'redirectToLogin'])->name('krayin.home'); +Route::get('/', function () { + return view('landing'); +}); diff --git a/packages/Webkul/Attribute/src/Models/Attribute.php b/packages/Webkul/Attribute/src/Models/Attribute.php index 06c901aaa..0f368eb1b 100644 --- a/packages/Webkul/Attribute/src/Models/Attribute.php +++ b/packages/Webkul/Attribute/src/Models/Attribute.php @@ -32,4 +32,11 @@ public function options() { return $this->hasMany(AttributeOptionProxy::modelClass()); } + + protected static function booted() + { + static::addGlobalScope('orderBySortOrder', function ($query) { + $query->orderBy('sort_order'); + }); + } } diff --git a/packages/Webkul/Contact/src/Repositories/PersonRepository.php b/packages/Webkul/Contact/src/Repositories/PersonRepository.php index 7556b40af..d38e57c81 100644 --- a/packages/Webkul/Contact/src/Repositories/PersonRepository.php +++ b/packages/Webkul/Contact/src/Repositories/PersonRepository.php @@ -22,6 +22,9 @@ class PersonRepository extends Repository 'organization.name', 'user_id', 'user.name', + 'partner_2', // add this + 'partner_3', // add this + 'local_agent', // add this ]; /** diff --git a/public/admin/build/assets/Shiny_Horizon.svg b/public/admin/build/assets/Shiny_Horizon.svg new file mode 100644 index 000000000..05afec686 --- /dev/null +++ b/public/admin/build/assets/Shiny_Horizon.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + TURN THE ENGINE OF YOUR BUSSINES ON IN DUBAI + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/admin/build/assets/favicon-.ico b/public/admin/build/assets/favicon-.ico new file mode 100644 index 0000000000000000000000000000000000000000..8fd69159384857b582cc8e427588faba37285153 GIT binary patch literal 1150 zcmd7OOG_J37{>888ZRK33WDIul#sCtsU*P*QtC=*loqloF1(de)Lj?qR?xkpg)Utc zKSu?@uizMks03O;XbSx+dd4__jl7pPb)>x7flw+Hh|T?SZl%@e5^KVj8R^|5+o` z=iBITQuzgxpsce--v&~D&xe6$hnrp${clDR9|lwYcb6SV`Gt4m@!aX>*mL$pwDDm}-wpzAJ^Lc@o*HLlPbNm6&K_)d+pHCk4TC4zUn!v$E_+VDj4K4MUnZs|U&W{L z8{QYj*R{1{+IkK8jnKI+tGpD+rNLhBXKl`{sm9oT5YySc2=A<`mTKx=%~(PSF0XbM zU5H{1KcM;BS=E;&EW*_&($9rKtnw}C>p!T*5oV!t>z`PCsKzq#$c3L;E48(WvFM&Y yw6C6Z9nGN?N$5Pc^r&sQY$n$uX1}}5E@}!bW?!+=_~&|&6|>bHv%S-5M!6fYLjX_! literal 0 HcmV?d00001 diff --git a/public/admin/build/assets/favicon-BtbgZBji.ico b/public/admin/build/assets/favicon-BtbgZBji.ico index 8fd69159384857b582cc8e427588faba37285153..e84849f22a8d49b077c50904f92ee39d4c5d89ec 100644 GIT binary patch literal 3518 zcmc&%dr*|u72i(Vq|>Hqo%s3bx} zK=6eI5GCLXF+7Cu24Q(E%ljn@%VS|-fn8V@7MA6)%d!jndhT67!C=~%PIGt8x8HZ~ zIrn$ZIlp_q^9cmsqu-Jj1$2E;5c^Ys;5mUn@G{8~5*rfM&l`;`eZ?x)4uK&2{HHj5 z&=G;2`%x**#}wcifK!eo4XI|OY_62wLXBJ1l&ocL%XA}*eUmx~?Z zZ+?NVuARj(=eKdl(FWlcKEuV&_Tj3(JG@;#K-~39IAFI5{%*Ud?-t+ucvNjlh#Gd_70D+oHCt06vGExUQ$mR<3jB${Bol&V%EMvy*Ui z$2zjv&+U?;LXjDN3#EB!(DZbnI42e2>_qY*7!5V0$hdbC^2S;kPe)^IIl4RBked>X zw3u*YCq^Op?lq*xUWYgh%ysUS0Tp#s}(h?P$cU{aZ3+M zTh%CU)1Xq(2Z?e3VB>q}@7P70D1$ zBuARG2SFk^MJuo-@tQh232fJZ_F*%ZSyvVi6h!ueVzoPtweADDp60Wo+l zAeu0hC?uc6vp&gbP2^K`hZdvbX2>+dXxENHZ#1K^cNi0sQ|QteAt7HLkbl*k1E^^4 zLn+y@n22dEHfMfACvwRTp`?wA$ubG4O3PzcLOwJ7x|x`<+>H>Hv}Xts)e!ndOmpef z43BdhiE0q4!7oE*Y=py-8(Vtu!$5iaB_^Vb@;Lb%74Ai7)*oxy~= zf$`m#{S0pO3|k&~yZ5RKY@VpKbT+mGDfgLUL^z2oH1y~=55z5MRJCh3PIg@fpUO-*@rusFKYXL+;Y>|W zLp?Nx+eI>*qFAKYDIdehA)Jmu1HLF|K^<|Sk#fiQ_Cy@Nhd7f{(|iwjC6ses-zsiF zg`yv))8_j#i*q4YhQijq{|txubHy4r!-NGv*|j(kR{~*!5_-b~-#^|@!jXSFj^}LL z25`AD(Ktm{N{ zSu5fy+Yw*gfwX!RKXVv=Su>iapr&(xwNcaL+`W!+*)wF|{rw|GIv+;){lbf3bQpbV zCHi|+&}zC#dS;{>1N6-L`_(Fpj_6@B8mwbXm-Wy5KYBmduZGz?!C@vRt+}og3&Gxx zj&J-1+g2}wlg)BCtywW6bZ@ha_p>oqhrjXnGaF~mi^+#;UqbNd!x-%EVuyj>k(zv@@8d;OPC zv@~F9a+2#B$3}7MvNx|eSUux&Xd4bwJz~53DPD^l-~A5OEc*f0((`fWcVM1)c;>Uf zRupDo9j$4@@1DWtKR(B0{mP%<{lESis*cvV6ptInaOi{8uvz+jY$Cn)UV9!JfB!7j zF8d)u&$#iqZC5>1b`DT13MAX8z2_G4Sff^ES`TVsYdC{10$g z{m3}La`a94VSHztVfE!Sy)PzA<6!mRV*W5ru|39G71>(-ISTh(Z*iQhe_jIjof{tG z0pt9ZKmDBVk(2wj;N;#duz&ppE|2Di@y_qa4!$Ngn#Yr3>+0}#o)1<-vwD|tkHs=F z#Fwv^FJ|Uqv6y-N>a=D#=Q7JbTpGi6iP)4^g1n9 zn=sAaGYf5X1ATNRy~*qG5Z@zwo#h3Y3)SYH*|!1no7L+7O&g~(GsNd#{2M@&8IR8o cI1s1hi%wB4x=-IS_S~0+O0(ZV-_`%W0Z0TjQvd(} literal 1150 zcmd7OOG_J37{>888ZRK33WDIul#sCtsU*P*QtC=*loqloF1(de)Lj?qR?xkpg)Utc zKSu?@uizMks03O;XbSx+dd4__jl7pPb)>x7flw+Hh|T?SZl%@e5^KVj8R^|5+o` z=iBITQuzgxpsce--v&~D&xe6$hnrp${clDR9|lwYcb6SV`Gt4m@!aX>*mL$pwDDm}-wpzAJ^Lc@o*HLlPbNm6&K_)d+pHCk4TC4zUn!v$E_+VDj4K4MUnZs|U&W{L z8{QYj*R{1{+IkK8jnKI+tGpD+rNLhBXKl`{sm9oT5YySc2=A<`mTKx=%~(PSF0XbM zU5H{1KcM;BS=E;&EW*_&($9rKtnw}C>p!T*5oV!t>z`PCsKzq#$c3L;E48(WvFM&Y yw6C6Z9nGN?N$5Pc^r&sQY$n$uX1}}5E@}!bW?!+=_~&|&6|>bHv%S-5M!6fYLjX_! diff --git a/public/admin/build/assets/logo-Bjh7YAuF.svg b/public/admin/build/assets/logo-Bjh7YAuF.svg index 50755ec62..ef4708bc5 100644 --- a/public/admin/build/assets/logo-Bjh7YAuF.svg +++ b/public/admin/build/assets/logo-Bjh7YAuF.svg @@ -1,6 +1,36 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/admin/build/manifest.json b/public/admin/build/manifest.json index 11c14f539..564c4fe8a 100644 --- a/public/admin/build/manifest.json +++ b/public/admin/build/manifest.json @@ -364,6 +364,10 @@ "file": "assets/mobile-light-logo-CjoobCkl.svg", "src": "src/Resources/assets/images/mobile-light-logo.svg" }, + "src/Resources/assets/images/landing-logo.svg": { + "file": "assets/Shiny_Horizon.svg", + "src": "src/Resources/assets/images/landing-logo.svg" + }, "src/Resources/assets/js/app.js": { "file": "assets/app-DIMVl9Bg.js", "name": "app", @@ -425,4 +429,4 @@ "src": "src/Resources/assets/js/chart.js", "isEntry": true } -} \ No newline at end of file +} diff --git a/public/build/assets/app-T1DpEqax.js b/public/build/assets/app-T1DpEqax.js new file mode 100644 index 000000000..4d40c7d87 --- /dev/null +++ b/public/build/assets/app-T1DpEqax.js @@ -0,0 +1,6 @@ +function xe(e,t){return function(){return e.apply(t,arguments)}}const{toString:Qe}=Object.prototype,{getPrototypeOf:le}=Object,{iterator:K,toStringTag:Ce}=Symbol,v=(e=>t=>{const n=Qe.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),C=e=>(e=e.toLowerCase(),t=>v(t)===e),X=e=>t=>typeof t===e,{isArray:D}=Array,q=X("undefined");function Ze(e){return e!==null&&!q(e)&&e.constructor!==null&&!q(e.constructor)&&A(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const Ne=C("ArrayBuffer");function Ye(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&Ne(e.buffer),t}const et=X("string"),A=X("function"),Pe=X("number"),G=e=>e!==null&&typeof e=="object",tt=e=>e===!0||e===!1,z=e=>{if(v(e)!=="object")return!1;const t=le(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Ce in e)&&!(K in e)},nt=C("Date"),rt=C("File"),st=C("Blob"),ot=C("FileList"),it=e=>G(e)&&A(e.pipe),at=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||A(e.append)&&((t=v(e))==="formdata"||t==="object"&&A(e.toString)&&e.toString()==="[object FormData]"))},ct=C("URLSearchParams"),[lt,ut,ft,dt]=["ReadableStream","Request","Response","Headers"].map(C),pt=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function H(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),D(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const U=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,_e=e=>!q(e)&&e!==U;function re(){const{caseless:e}=_e(this)&&this||{},t={},n=(r,s)=>{const o=e&&Fe(t,s)||s;z(t[o])&&z(r)?t[o]=re(t[o],r):z(r)?t[o]=re({},r):D(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r(H(t,(s,o)=>{n&&A(s)?e[o]=xe(s,n):e[o]=s},{allOwnKeys:r}),e),mt=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),yt=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},bt=(e,t,n,r)=>{let s,o,i;const c={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!c[i]&&(t[i]=e[i],c[i]=!0);e=n!==!1&&le(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},wt=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Et=e=>{if(!e)return null;if(D(e))return e;let t=e.length;if(!Pe(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Rt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&le(Uint8Array)),St=(e,t)=>{const r=(e&&e[K]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},gt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},Ot=C("HTMLFormElement"),Tt=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),pe=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),At=C("RegExp"),Ue=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};H(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},xt=e=>{Ue(e,(t,n)=>{if(A(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(A(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},Ct=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return D(e)?r(e):r(String(e).split(t)),n},Nt=()=>{},Pt=(e,t)=>e!=null&&Number.isFinite(e=+e)?e:t;function Ft(e){return!!(e&&A(e.append)&&e[Ce]==="FormData"&&e[K])}const _t=e=>{const t=new Array(10),n=(r,s)=>{if(G(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=D(r)?[]:{};return H(r,(i,c)=>{const f=n(i,s+1);!q(f)&&(o[c]=f)}),t[s]=void 0,o}}return r};return n(e,0)},Ut=C("AsyncFunction"),Lt=e=>e&&(G(e)||A(e))&&A(e.then)&&A(e.catch),Le=((e,t)=>e?setImmediate:t?((n,r)=>(U.addEventListener("message",({source:s,data:o})=>{s===U&&o===n&&r.length&&r.shift()()},!1),s=>{r.push(s),U.postMessage(n,"*")}))(`axios@${Math.random()}`,[]):n=>setTimeout(n))(typeof setImmediate=="function",A(U.postMessage)),Bt=typeof queueMicrotask<"u"?queueMicrotask.bind(U):typeof process<"u"&&process.nextTick||Le,Dt=e=>e!=null&&A(e[K]),a={isArray:D,isArrayBuffer:Ne,isBuffer:Ze,isFormData:at,isArrayBufferView:Ye,isString:et,isNumber:Pe,isBoolean:tt,isObject:G,isPlainObject:z,isReadableStream:lt,isRequest:ut,isResponse:ft,isHeaders:dt,isUndefined:q,isDate:nt,isFile:rt,isBlob:st,isRegExp:At,isFunction:A,isStream:it,isURLSearchParams:ct,isTypedArray:Rt,isFileList:ot,forEach:H,merge:re,extend:ht,trim:pt,stripBOM:mt,inherits:yt,toFlatObject:bt,kindOf:v,kindOfTest:C,endsWith:wt,toArray:Et,forEachEntry:St,matchAll:gt,isHTMLForm:Ot,hasOwnProperty:pe,hasOwnProp:pe,reduceDescriptors:Ue,freezeMethods:xt,toObjectSet:Ct,toCamelCase:Tt,noop:Nt,toFiniteNumber:Pt,findKey:Fe,global:U,isContextDefined:_e,isSpecCompliantForm:Ft,toJSONObject:_t,isAsyncFn:Ut,isThenable:Lt,setImmediate:Le,asap:Bt,isIterable:Dt};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s,this.status=s.status?s.status:null)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.status}}});const Be=m.prototype,De={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{De[e]={value:e}});Object.defineProperties(m,De);Object.defineProperty(Be,"isAxiosError",{value:!0});m.from=(e,t,n,r,s,o)=>{const i=Object.create(Be);return a.toFlatObject(e,i,function(f){return f!==Error.prototype},c=>c!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const kt=null;function se(e){return a.isPlainObject(e)||a.isArray(e)}function ke(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function he(e,t,n){return e?e.concat(t).map(function(s,o){return s=ke(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function jt(e){return a.isArray(e)&&!e.some(se)}const qt=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function Q(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(y,h){return!a.isUndefined(h[y])});const r=n.metaTokens,s=n.visitor||u,o=n.dots,i=n.indexes,f=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function l(p){if(p===null)return"";if(a.isDate(p))return p.toISOString();if(!f&&a.isBlob(p))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(p)||a.isTypedArray(p)?f&&typeof Blob=="function"?new Blob([p]):Buffer.from(p):p}function u(p,y,h){let w=p;if(p&&!h&&typeof p=="object"){if(a.endsWith(y,"{}"))y=r?y:y.slice(0,-2),p=JSON.stringify(p);else if(a.isArray(p)&&jt(p)||(a.isFileList(p)||a.endsWith(y,"[]"))&&(w=a.toArray(p)))return y=ke(y),w.forEach(function(g,P){!(a.isUndefined(g)||g===null)&&t.append(i===!0?he([y],P,o):i===null?y:y+"[]",l(g))}),!1}return se(p)?!0:(t.append(he(h,y,o),l(p)),!1)}const d=[],b=Object.assign(qt,{defaultVisitor:u,convertValue:l,isVisitable:se});function R(p,y){if(!a.isUndefined(p)){if(d.indexOf(p)!==-1)throw Error("Circular reference detected in "+y.join("."));d.push(p),a.forEach(p,function(w,S){(!(a.isUndefined(w)||w===null)&&s.call(t,w,a.isString(S)?S.trim():S,y,b))===!0&&R(w,y?y.concat(S):[S])}),d.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return R(e),t}function me(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function ue(e,t){this._pairs=[],e&&Q(e,this,t)}const je=ue.prototype;je.append=function(t,n){this._pairs.push([t,n])};je.toString=function(t){const n=t?function(r){return t.call(this,r,me)}:me;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function Ht(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function qe(e,t,n){if(!t)return e;const r=n&&n.encode||Ht;a.isFunction(n)&&(n={serialize:n});const s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new ue(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class ye{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const He={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},It=typeof URLSearchParams<"u"?URLSearchParams:ue,Mt=typeof FormData<"u"?FormData:null,zt=typeof Blob<"u"?Blob:null,$t={isBrowser:!0,classes:{URLSearchParams:It,FormData:Mt,Blob:zt},protocols:["http","https","file","blob","url","data"]},fe=typeof window<"u"&&typeof document<"u",oe=typeof navigator=="object"&&navigator||void 0,Jt=fe&&(!oe||["ReactNative","NativeScript","NS"].indexOf(oe.product)<0),Vt=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",Wt=fe&&window.location.href||"http://localhost",Kt=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:fe,hasStandardBrowserEnv:Jt,hasStandardBrowserWebWorkerEnv:Vt,navigator:oe,origin:Wt},Symbol.toStringTag,{value:"Module"})),O={...Kt,...$t};function vt(e,t){return Q(e,new O.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return O.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function Xt(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function Gt(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r=n.length;return i=!i&&a.isArray(s)?s.length:i,f?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!c):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=Gt(s[i])),!c)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(Xt(r),s,n,0)}),n}return null}function Qt(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const I={transitional:He,adapter:["xhr","http","fetch"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s?JSON.stringify(Ie(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t)||a.isReadableStream(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return vt(t,this.formSerializer).toString();if((c=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const f=this.env&&this.env.FormData;return Q(c?{"files[]":t}:t,f&&new f,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Qt(t)):t}],transformResponse:[function(t){const n=this.transitional||I.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(a.isResponse(t)||a.isReadableStream(t))return t;if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(c){if(i)throw c.name==="SyntaxError"?m.from(c,m.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:O.classes.FormData,Blob:O.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{I.headers[e]={}});const Zt=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Yt=e=>{const t={};let n,r,s;return e&&e.split(` +`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Zt[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},be=Symbol("internals");function j(e){return e&&String(e).trim().toLowerCase()}function $(e){return e===!1||e==null?e:a.isArray(e)?e.map($):String(e)}function en(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const tn=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function ee(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function nn(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function rn(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}let x=class{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(c,f,l){const u=j(f);if(!u)throw new Error("header name must be a non-empty string");const d=a.findKey(s,u);(!d||s[d]===void 0||l===!0||l===void 0&&s[d]!==!1)&&(s[d||f]=$(c))}const i=(c,f)=>a.forEach(c,(l,u)=>o(l,u,f));if(a.isPlainObject(t)||t instanceof this.constructor)i(t,n);else if(a.isString(t)&&(t=t.trim())&&!tn(t))i(Yt(t),n);else if(a.isObject(t)&&a.isIterable(t)){let c={},f,l;for(const u of t){if(!a.isArray(u))throw TypeError("Object iterator must return a key-value pair");c[l=u[0]]=(f=c[l])?a.isArray(f)?[...f,u[1]]:[f,u[1]]:u[1]}i(c,n)}else t!=null&&o(n,t,r);return this}get(t,n){if(t=j(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return en(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=j(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||ee(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=j(i),i){const c=a.findKey(r,i);c&&(!n||ee(r,r[c],c,n))&&(delete r[c],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||ee(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=$(s),delete n[o];return}const c=t?nn(o):String(o).trim();c!==o&&delete n[o],n[c]=$(s),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` +`)}getSetCookie(){return this.get("set-cookie")||[]}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[be]=this[be]={accessors:{}}).accessors,s=this.prototype;function o(i){const c=j(i);r[c]||(rn(s,i),r[c]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}};x.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.reduceDescriptors(x.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});a.freezeMethods(x);function te(e,t){const n=this||I,r=t||n,s=x.from(r.headers);let o=r.data;return a.forEach(e,function(c){o=c.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function Me(e){return!!(e&&e.__CANCEL__)}function k(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(k,m,{__CANCEL__:!0});function ze(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}function sn(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function on(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(f){const l=Date.now(),u=r[o];i||(i=l),n[s]=f,r[s]=l;let d=o,b=0;for(;d!==s;)b+=n[d++],d=d%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),l-i{n=u,s=null,o&&(clearTimeout(o),o=null),e.apply(null,l)};return[(...l)=>{const u=Date.now(),d=u-n;d>=r?i(l,u):(s=l,o||(o=setTimeout(()=>{o=null,i(s)},r-d)))},()=>s&&i(s)]}const V=(e,t,n=3)=>{let r=0;const s=on(50,250);return an(o=>{const i=o.loaded,c=o.lengthComputable?o.total:void 0,f=i-r,l=s(f),u=i<=c;r=i;const d={loaded:i,total:c,progress:c?i/c:void 0,bytes:f,rate:l||void 0,estimated:l&&c&&u?(c-i)/l:void 0,event:o,lengthComputable:c!=null,[t?"download":"upload"]:!0};e(d)},n)},we=(e,t)=>{const n=e!=null;return[r=>t[0]({lengthComputable:n,total:e,loaded:r}),t[1]]},Ee=e=>(...t)=>a.asap(()=>e(...t)),cn=O.hasStandardBrowserEnv?((e,t)=>n=>(n=new URL(n,O.origin),e.protocol===n.protocol&&e.host===n.host&&(t||e.port===n.port)))(new URL(O.origin),O.navigator&&/(msie|trident)/i.test(O.navigator.userAgent)):()=>!0,ln=O.hasStandardBrowserEnv?{write(e,t,n,r,s,o){const i=[e+"="+encodeURIComponent(t)];a.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),a.isString(r)&&i.push("path="+r),a.isString(s)&&i.push("domain="+s),o===!0&&i.push("secure"),document.cookie=i.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function un(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function fn(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function $e(e,t,n){let r=!un(t);return e&&(r||n==!1)?fn(e,t):t}const Re=e=>e instanceof x?{...e}:e;function B(e,t){t=t||{};const n={};function r(l,u,d,b){return a.isPlainObject(l)&&a.isPlainObject(u)?a.merge.call({caseless:b},l,u):a.isPlainObject(u)?a.merge({},u):a.isArray(u)?u.slice():u}function s(l,u,d,b){if(a.isUndefined(u)){if(!a.isUndefined(l))return r(void 0,l,d,b)}else return r(l,u,d,b)}function o(l,u){if(!a.isUndefined(u))return r(void 0,u)}function i(l,u){if(a.isUndefined(u)){if(!a.isUndefined(l))return r(void 0,l)}else return r(void 0,u)}function c(l,u,d){if(d in t)return r(l,u);if(d in e)return r(void 0,l)}const f={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:c,headers:(l,u,d)=>s(Re(l),Re(u),d,!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(u){const d=f[u]||s,b=d(e[u],t[u],u);a.isUndefined(b)&&d!==c||(n[u]=b)}),n}const Je=e=>{const t=B({},e);let{data:n,withXSRFToken:r,xsrfHeaderName:s,xsrfCookieName:o,headers:i,auth:c}=t;t.headers=i=x.from(i),t.url=qe($e(t.baseURL,t.url,t.allowAbsoluteUrls),e.params,e.paramsSerializer),c&&i.set("Authorization","Basic "+btoa((c.username||"")+":"+(c.password?unescape(encodeURIComponent(c.password)):"")));let f;if(a.isFormData(n)){if(O.hasStandardBrowserEnv||O.hasStandardBrowserWebWorkerEnv)i.setContentType(void 0);else if((f=i.getContentType())!==!1){const[l,...u]=f?f.split(";").map(d=>d.trim()).filter(Boolean):[];i.setContentType([l||"multipart/form-data",...u].join("; "))}}if(O.hasStandardBrowserEnv&&(r&&a.isFunction(r)&&(r=r(t)),r||r!==!1&&cn(t.url))){const l=s&&o&&ln.read(o);l&&i.set(s,l)}return t},dn=typeof XMLHttpRequest<"u",pn=dn&&function(e){return new Promise(function(n,r){const s=Je(e);let o=s.data;const i=x.from(s.headers).normalize();let{responseType:c,onUploadProgress:f,onDownloadProgress:l}=s,u,d,b,R,p;function y(){R&&R(),p&&p(),s.cancelToken&&s.cancelToken.unsubscribe(u),s.signal&&s.signal.removeEventListener("abort",u)}let h=new XMLHttpRequest;h.open(s.method.toUpperCase(),s.url,!0),h.timeout=s.timeout;function w(){if(!h)return;const g=x.from("getAllResponseHeaders"in h&&h.getAllResponseHeaders()),T={data:!c||c==="text"||c==="json"?h.responseText:h.response,status:h.status,statusText:h.statusText,headers:g,config:e,request:h};ze(function(_){n(_),y()},function(_){r(_),y()},T),h=null}"onloadend"in h?h.onloadend=w:h.onreadystatechange=function(){!h||h.readyState!==4||h.status===0&&!(h.responseURL&&h.responseURL.indexOf("file:")===0)||setTimeout(w)},h.onabort=function(){h&&(r(new m("Request aborted",m.ECONNABORTED,e,h)),h=null)},h.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,h)),h=null},h.ontimeout=function(){let P=s.timeout?"timeout of "+s.timeout+"ms exceeded":"timeout exceeded";const T=s.transitional||He;s.timeoutErrorMessage&&(P=s.timeoutErrorMessage),r(new m(P,T.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,h)),h=null},o===void 0&&i.setContentType(null),"setRequestHeader"in h&&a.forEach(i.toJSON(),function(P,T){h.setRequestHeader(T,P)}),a.isUndefined(s.withCredentials)||(h.withCredentials=!!s.withCredentials),c&&c!=="json"&&(h.responseType=s.responseType),l&&([b,p]=V(l,!0),h.addEventListener("progress",b)),f&&h.upload&&([d,R]=V(f),h.upload.addEventListener("progress",d),h.upload.addEventListener("loadend",R)),(s.cancelToken||s.signal)&&(u=g=>{h&&(r(!g||g.type?new k(null,e,h):g),h.abort(),h=null)},s.cancelToken&&s.cancelToken.subscribe(u),s.signal&&(s.signal.aborted?u():s.signal.addEventListener("abort",u)));const S=sn(s.url);if(S&&O.protocols.indexOf(S)===-1){r(new m("Unsupported protocol "+S+":",m.ERR_BAD_REQUEST,e));return}h.send(o||null)})},hn=(e,t)=>{const{length:n}=e=e?e.filter(Boolean):[];if(t||n){let r=new AbortController,s;const o=function(l){if(!s){s=!0,c();const u=l instanceof Error?l:this.reason;r.abort(u instanceof m?u:new k(u instanceof Error?u.message:u))}};let i=t&&setTimeout(()=>{i=null,o(new m(`timeout ${t} of ms exceeded`,m.ETIMEDOUT))},t);const c=()=>{e&&(i&&clearTimeout(i),i=null,e.forEach(l=>{l.unsubscribe?l.unsubscribe(o):l.removeEventListener("abort",o)}),e=null)};e.forEach(l=>l.addEventListener("abort",o));const{signal:f}=r;return f.unsubscribe=()=>a.asap(c),f}},mn=function*(e,t){let n=e.byteLength;if(n{const s=yn(e,t);let o=0,i,c=f=>{i||(i=!0,r&&r(f))};return new ReadableStream({async pull(f){try{const{done:l,value:u}=await s.next();if(l){c(),f.close();return}let d=u.byteLength;if(n){let b=o+=d;n(b)}f.enqueue(new Uint8Array(u))}catch(l){throw c(l),l}},cancel(f){return c(f),s.return()}},{highWaterMark:2})},Z=typeof fetch=="function"&&typeof Request=="function"&&typeof Response=="function",Ve=Z&&typeof ReadableStream=="function",wn=Z&&(typeof TextEncoder=="function"?(e=>t=>e.encode(t))(new TextEncoder):async e=>new Uint8Array(await new Response(e).arrayBuffer())),We=(e,...t)=>{try{return!!e(...t)}catch{return!1}},En=Ve&&We(()=>{let e=!1;const t=new Request(O.origin,{body:new ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type");return e&&!t}),ge=64*1024,ie=Ve&&We(()=>a.isReadableStream(new Response("").body)),W={stream:ie&&(e=>e.body)};Z&&(e=>{["text","arrayBuffer","blob","formData","stream"].forEach(t=>{!W[t]&&(W[t]=a.isFunction(e[t])?n=>n[t]():(n,r)=>{throw new m(`Response type '${t}' is not supported`,m.ERR_NOT_SUPPORT,r)})})})(new Response);const Rn=async e=>{if(e==null)return 0;if(a.isBlob(e))return e.size;if(a.isSpecCompliantForm(e))return(await new Request(O.origin,{method:"POST",body:e}).arrayBuffer()).byteLength;if(a.isArrayBufferView(e)||a.isArrayBuffer(e))return e.byteLength;if(a.isURLSearchParams(e)&&(e=e+""),a.isString(e))return(await wn(e)).byteLength},Sn=async(e,t)=>{const n=a.toFiniteNumber(e.getContentLength());return n??Rn(t)},gn=Z&&(async e=>{let{url:t,method:n,data:r,signal:s,cancelToken:o,timeout:i,onDownloadProgress:c,onUploadProgress:f,responseType:l,headers:u,withCredentials:d="same-origin",fetchOptions:b}=Je(e);l=l?(l+"").toLowerCase():"text";let R=hn([s,o&&o.toAbortSignal()],i),p;const y=R&&R.unsubscribe&&(()=>{R.unsubscribe()});let h;try{if(f&&En&&n!=="get"&&n!=="head"&&(h=await Sn(u,r))!==0){let T=new Request(t,{method:"POST",body:r,duplex:"half"}),F;if(a.isFormData(r)&&(F=T.headers.get("content-type"))&&u.setContentType(F),T.body){const[_,M]=we(h,V(Ee(f)));r=Se(T.body,ge,_,M)}}a.isString(d)||(d=d?"include":"omit");const w="credentials"in Request.prototype;p=new Request(t,{...b,signal:R,method:n.toUpperCase(),headers:u.normalize().toJSON(),body:r,duplex:"half",credentials:w?d:void 0});let S=await fetch(p);const g=ie&&(l==="stream"||l==="response");if(ie&&(c||g&&y)){const T={};["status","statusText","headers"].forEach(de=>{T[de]=S[de]});const F=a.toFiniteNumber(S.headers.get("content-length")),[_,M]=c&&we(F,V(Ee(c),!0))||[];S=new Response(Se(S.body,ge,_,()=>{M&&M(),y&&y()}),T)}l=l||"text";let P=await W[a.findKey(W,l)||"text"](S,e);return!g&&y&&y(),await new Promise((T,F)=>{ze(T,F,{data:P,headers:x.from(S.headers),status:S.status,statusText:S.statusText,config:e,request:p})})}catch(w){throw y&&y(),w&&w.name==="TypeError"&&/Load failed|fetch/i.test(w.message)?Object.assign(new m("Network Error",m.ERR_NETWORK,e,p),{cause:w.cause||w}):m.from(w,w&&w.code,e,p)}}),ae={http:kt,xhr:pn,fetch:gn};a.forEach(ae,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const Oe=e=>`- ${e}`,On=e=>a.isFunction(e)||e===null||e===!1,Ke={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o`adapter ${c} `+(f===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since : +`+o.map(Oe).join(` +`):" "+Oe(o[0]):"as no adapter specified";throw new m("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:ae};function ne(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new k(null,e)}function Te(e){return ne(e),e.headers=x.from(e.headers),e.data=te.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),Ke.getAdapter(e.adapter||I.adapter)(e).then(function(r){return ne(e),r.data=te.call(e,e.transformResponse,r),r.headers=x.from(r.headers),r},function(r){return Me(r)||(ne(e),r&&r.response&&(r.response.data=te.call(e,e.transformResponse,r.response),r.response.headers=x.from(r.response.headers))),Promise.reject(r)})}const ve="1.9.0",Y={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{Y[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const Ae={};Y.transitional=function(t,n,r){function s(o,i){return"[Axios v"+ve+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,c)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!Ae[i]&&(Ae[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,c):!0}};Y.spelling=function(t){return(n,r)=>(console.warn(`${r} is likely a misspelling of ${t}`),!0)};function Tn(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const c=e[o],f=c===void 0||i(c,o,e);if(f!==!0)throw new m("option "+o+" must be "+f,m.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new m("Unknown option "+o,m.ERR_BAD_OPTION)}}const J={assertOptions:Tn,validators:Y},N=J.validators;let L=class{constructor(t){this.defaults=t||{},this.interceptors={request:new ye,response:new ye}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let s={};Error.captureStackTrace?Error.captureStackTrace(s):s=new Error;const o=s.stack?s.stack.replace(/^.+\n/,""):"";try{r.stack?o&&!String(r.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(r.stack+=` +`+o):r.stack=o}catch{}}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=B(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&J.assertOptions(r,{silentJSONParsing:N.transitional(N.boolean),forcedJSONParsing:N.transitional(N.boolean),clarifyTimeoutError:N.transitional(N.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:J.assertOptions(s,{encode:N.function,serialize:N.function},!0)),n.allowAbsoluteUrls!==void 0||(this.defaults.allowAbsoluteUrls!==void 0?n.allowAbsoluteUrls=this.defaults.allowAbsoluteUrls:n.allowAbsoluteUrls=!0),J.assertOptions(n,{baseUrl:N.spelling("baseURL"),withXsrfToken:N.spelling("withXSRFToken")},!0),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],p=>{delete o[p]}),n.headers=x.concat(i,o);const c=[];let f=!0;this.interceptors.request.forEach(function(y){typeof y.runWhen=="function"&&y.runWhen(n)===!1||(f=f&&y.synchronous,c.unshift(y.fulfilled,y.rejected))});const l=[];this.interceptors.response.forEach(function(y){l.push(y.fulfilled,y.rejected)});let u,d=0,b;if(!f){const p=[Te.bind(this),void 0];for(p.unshift.apply(p,c),p.push.apply(p,l),b=p.length,u=Promise.resolve(n);d{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(c=>{r.subscribe(c),o=c}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,c){r.reason||(r.reason=new k(o,i,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}toAbortSignal(){const t=new AbortController,n=r=>{t.abort(r)};return this.subscribe(n),t.signal.unsubscribe=()=>this.unsubscribe(n),t.signal}static source(){let t;return{token:new Xe(function(s){t=s}),cancel:t}}};function xn(e){return function(n){return e.apply(null,n)}}function Cn(e){return a.isObject(e)&&e.isAxiosError===!0}const ce={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(ce).forEach(([e,t])=>{ce[t]=e});function Ge(e){const t=new L(e),n=xe(L.prototype.request,t);return a.extend(n,L.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return Ge(B(e,s))},n}const E=Ge(I);E.Axios=L;E.CanceledError=k;E.CancelToken=An;E.isCancel=Me;E.VERSION=ve;E.toFormData=Q;E.AxiosError=m;E.Cancel=E.CanceledError;E.all=function(t){return Promise.all(t)};E.spread=xn;E.isAxiosError=Cn;E.mergeConfig=B;E.AxiosHeaders=x;E.formToJSON=e=>Ie(a.isHTMLForm(e)?new FormData(e):e);E.getAdapter=Ke.getAdapter;E.HttpStatusCode=ce;E.default=E;const{Axios:Fn,AxiosError:_n,CanceledError:Un,isCancel:Ln,CancelToken:Bn,VERSION:Dn,all:kn,Cancel:jn,isAxiosError:qn,spread:Hn,toFormData:In,AxiosHeaders:Mn,HttpStatusCode:zn,formToJSON:$n,getAdapter:Jn,mergeConfig:Vn}=E;window.axios=E;window.axios.defaults.headers.common["X-Requested-With"]="XMLHttpRequest"; diff --git a/public/build/assets/app-l0sNRNKZ.js b/public/build/assets/app-l0sNRNKZ.js new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/public/build/assets/app-l0sNRNKZ.js @@ -0,0 +1 @@ + diff --git a/public/build/manifest.json b/public/build/manifest.json new file mode 100644 index 000000000..380b0030d --- /dev/null +++ b/public/build/manifest.json @@ -0,0 +1,14 @@ +{ + "resources/css/app.css": { + "file": "assets/app-l0sNRNKZ.js", + "name": "app", + "src": "resources/css/app.css", + "isEntry": true + }, + "resources/js/app.js": { + "file": "assets/app-T1DpEqax.js", + "name": "app", + "src": "resources/js/app.js", + "isEntry": true + } +} \ No newline at end of file diff --git a/public/installer/build/manifest.json b/public/installer/build/manifest.json index 8964249e1..483f78e42 100644 --- a/public/installer/build/manifest.json +++ b/public/installer/build/manifest.json @@ -21,7 +21,7 @@ "src": "src/Resources/assets/fonts/icomoon.woff" }, "src/Resources/assets/images/favicon.ico": { - "file": "assets/favicon-a99d4e55.ico", + "file": "assets/favicon.ico", "src": "src/Resources/assets/images/favicon.ico" }, "src/Resources/assets/images/krayin-logo.svg": { @@ -37,4 +37,4 @@ "isEntry": true, "src": "src/Resources/assets/js/app.js" } -} \ No newline at end of file +} From e3cd13acd243f7d576a7d906e422d311288f2dba Mon Sep 17 00:00:00 2001 From: Alireza Mohammadi Arani Date: Tue, 27 May 2025 17:56:15 +0400 Subject: [PATCH 3/8] add landing --- resources/views/landing.blade.php | 110 ++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 resources/views/landing.blade.php diff --git a/resources/views/landing.blade.php b/resources/views/landing.blade.php new file mode 100644 index 000000000..b13ca284e --- /dev/null +++ b/resources/views/landing.blade.php @@ -0,0 +1,110 @@ + + + + + + Ofoghe Talaei | Stay in Touch + + + + + + + +
+
+
+ +

+ Ofoghe talaei +

+ + + +
+
+
+ + From 129514e3e6a32bf3300a8ce27d2138e507964a3e Mon Sep 17 00:00:00 2001 From: Alireza Mohammadi Arani Date: Tue, 27 May 2025 18:11:43 +0400 Subject: [PATCH 4/8] update logo --- public/admin/build/assets/Shiny_Horizon_.svg | 65 ++++++++++++++++++++ public/admin/build/manifest.json | 2 +- 2 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 public/admin/build/assets/Shiny_Horizon_.svg diff --git a/public/admin/build/assets/Shiny_Horizon_.svg b/public/admin/build/assets/Shiny_Horizon_.svg new file mode 100644 index 000000000..b1a60a554 --- /dev/null +++ b/public/admin/build/assets/Shiny_Horizon_.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/admin/build/manifest.json b/public/admin/build/manifest.json index 564c4fe8a..3946ff7e3 100644 --- a/public/admin/build/manifest.json +++ b/public/admin/build/manifest.json @@ -365,7 +365,7 @@ "src": "src/Resources/assets/images/mobile-light-logo.svg" }, "src/Resources/assets/images/landing-logo.svg": { - "file": "assets/Shiny_Horizon.svg", + "file": "assets/Shiny_Horizon_.svg", "src": "src/Resources/assets/images/landing-logo.svg" }, "src/Resources/assets/js/app.js": { From 2372230756c44e04fdc9bf281097125a78813a20 Mon Sep 17 00:00:00 2001 From: Alireza Mohammadi Arani Date: Tue, 27 May 2025 18:15:22 +0400 Subject: [PATCH 5/8] update --- resources/views/landing.blade.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/views/landing.blade.php b/resources/views/landing.blade.php index b13ca284e..904895e65 100644 --- a/resources/views/landing.blade.php +++ b/resources/views/landing.blade.php @@ -98,9 +98,8 @@

From e4bf6a4748b244889f1ebcaca1e94b705f1272b4 Mon Sep 17 00:00:00 2001 From: Alireza Mohammadi Arani Date: Tue, 27 May 2025 20:58:58 +0400 Subject: [PATCH 6/8] update --- resources/views/landing.blade.php | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/resources/views/landing.blade.php b/resources/views/landing.blade.php index 904895e65..198e19d48 100644 --- a/resources/views/landing.blade.php +++ b/resources/views/landing.blade.php @@ -28,9 +28,18 @@ body, html { height: 100%; - font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; - } + overflow-x: hidden; + } + img { + max-width: 100%; + height: auto; + display: block; + } + .content { + max-width: 100%; + overflow: hidden; + } .hero { height: 100vh; position: relative; @@ -48,14 +57,8 @@ padding: 20px; } - .content { - max-width: 500px; - min-width: 350px; - } - .heading { font-size: 1.5rem; - margin-bottom: 30px; } .social-icons { @@ -63,7 +66,6 @@ justify-content: center; gap: 30px; font-size: 2rem; - margin-bottom: 30px; } .social-icons a { @@ -76,10 +78,6 @@ transform: scale(1.2); } - .credit { - font-size: 0.9rem; - color: #ccc; - } .credit a { color: white; @@ -92,7 +90,6 @@
-

Ofoghe talaei

From 4e85818c03237a345afbf5cc2d68180a63a80b34 Mon Sep 17 00:00:00 2001 From: Alireza Mohammadi Arani Date: Tue, 27 May 2025 21:03:30 +0400 Subject: [PATCH 7/8] update --- resources/views/landing.blade.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/resources/views/landing.blade.php b/resources/views/landing.blade.php index 198e19d48..0a72a39fb 100644 --- a/resources/views/landing.blade.php +++ b/resources/views/landing.blade.php @@ -50,11 +50,18 @@ height: 100%; width: 100%; display: flex; - align-items: center; justify-content: center; - text-align: center; + align-items: center; /* Center vertically */ color: white; - padding: 20px; + padding-top: 0; /* Default */ + text-align: center; + } + + @media (max-width: 768px) { + .overlay { + align-items: flex-start; /* Push content up on mobile */ + padding-top: 15vh; /* Adjust this value as needed */ + } } .heading { From 0939f24cb970ba724dd9572a572b0f46c45d5d7b Mon Sep 17 00:00:00 2001 From: Alireza Mohammadi Arani Date: Tue, 27 May 2025 21:07:05 +0400 Subject: [PATCH 8/8] update --- .../Resources/views/errors/index.blade.php | 24 +++++++++---------- resources/views/landing.blade.php | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/packages/Webkul/Admin/src/Resources/views/errors/index.blade.php b/packages/Webkul/Admin/src/Resources/views/errors/index.blade.php index 0c73cc6f3..2d8f83042 100644 --- a/packages/Webkul/Admin/src/Resources/views/errors/index.blade.php +++ b/packages/Webkul/Admin/src/Resources/views/errors/index.blade.php @@ -9,10 +9,10 @@
cookie('dark_mode') + ? vite()->asset('images/dark-logo.svg') + : vite()->asset('images/logo.svg') }}" class="w-40 ltr:pr-16 rtl:pl-16" > @@ -39,18 +39,18 @@ class="cursor-pointer text-sm font-semibold text-blue-600 transition-all hover:u - - @lang('admin::app.errors.dashboard') - +{{-- --}} +{{-- @lang('admin::app.errors.dashboard')--}} +{{-- --}}

@lang('admin::app.errors.support', [ - 'link' => 'mailto:support@example.com', - 'email' => 'support@example.com', + 'link' => 'mailto:alireza2756@gmail.com', + 'email' => 'alireza2756@gmail.com', 'class' => 'font-semibold text-blue-600 transition-all hover:underline', ])

diff --git a/resources/views/landing.blade.php b/resources/views/landing.blade.php index 0a72a39fb..1c9bde6cd 100644 --- a/resources/views/landing.blade.php +++ b/resources/views/landing.blade.php @@ -103,7 +103,7 @@