service item buy
This commit is contained in:
+2
-2
@@ -82,13 +82,13 @@ define(['./workbox-e7681877'], (function (workbox) { 'use strict';
|
|||||||
"revision": "3ca0b8505b4bec776b69afdba2768812"
|
"revision": "3ca0b8505b4bec776b69afdba2768812"
|
||||||
}, {
|
}, {
|
||||||
"url": "index.html",
|
"url": "index.html",
|
||||||
"revision": "0.3q32r8akalg"
|
"revision": "0.1g07ism6nj8"
|
||||||
}], {});
|
}], {});
|
||||||
workbox.cleanupOutdatedCaches();
|
workbox.cleanupOutdatedCaches();
|
||||||
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
|
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
|
||||||
allowlist: [/^\/$/]
|
allowlist: [/^\/$/]
|
||||||
}));
|
}));
|
||||||
workbox.registerRoute(/^https:\/\/console\.danakcorp\.com\//, new workbox.NetworkFirst({
|
workbox.registerRoute(/^https:\/\/admin-panel\.danakcorp\.com\//, new workbox.NetworkFirst({
|
||||||
"cacheName": "api-cache",
|
"cacheName": "api-cache",
|
||||||
"networkTimeoutSeconds": 10,
|
"networkTimeoutSeconds": 10,
|
||||||
plugins: [new workbox.ExpirationPlugin({
|
plugins: [new workbox.ExpirationPlugin({
|
||||||
|
|||||||
@@ -25,8 +25,8 @@ const ServiceItem: FC<Props> = (props: Props) => {
|
|||||||
<div className={`flex-1 relative flex flex-col self-stretch min-w-[45%] xl:min-w-[30%] bg-white rounded-3xl xl:p-6 p-4 ${props.className} ${props.isDisabled ? 'opacity-50' : ''}`}>
|
<div className={`flex-1 relative flex flex-col self-stretch min-w-[45%] xl:min-w-[30%] bg-white rounded-3xl xl:p-6 p-4 ${props.className} ${props.isDisabled ? 'opacity-50' : ''}`}>
|
||||||
{
|
{
|
||||||
props.isQuikAccess &&
|
props.isQuikAccess &&
|
||||||
<div className='absolute left-4 top-4'>
|
<div onClick={props.onMoreClick} className='absolute size-6 flex justify-center items-center left-4 top-4'>
|
||||||
<More onClick={props.onMoreClick} size={14} color='black' className='rotate-90' />
|
<More size={14} color='black' className='rotate-90' />
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
<div className='flex gap-2 items-center'>
|
<div className='flex gap-2 items-center'>
|
||||||
@@ -34,7 +34,7 @@ const ServiceItem: FC<Props> = (props: Props) => {
|
|||||||
<img src={item.icon} alt={item.name} className='w-full h-full' />
|
<img src={item.icon} alt={item.name} className='w-full h-full' />
|
||||||
</div>
|
</div>
|
||||||
<div className='flex flex-col'>
|
<div className='flex flex-col'>
|
||||||
<div className=' text-sm'>
|
<div className=' text-sm pl-3'>
|
||||||
{item.name}
|
{item.name}
|
||||||
</div>
|
</div>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ const HeaderBuy: FC<Props> = ({ data, planId }) => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className='w-full items-end mt-6 flex xl:flex-row flex-col xl:justify-between'>
|
<div className='w-full items-end mt-6 flex xl:flex-row flex-col xl:justify-between'>
|
||||||
<div className='flex xl:gap-8 gap-4'>
|
<div className='flex w-full xl:gap-8 gap-4'>
|
||||||
<div className='xl:size-[70px] size-[50px] rounded-xl'>
|
<div className='xl:size-[70px] size-[50px] rounded-xl'>
|
||||||
<img src={data?.icon} className='w-full h-full rounded-xl' />
|
<img src={data?.icon} className='w-full h-full rounded-xl' />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user