initial commit
4
.babelrc.js
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
module.exports = {
|
||||||
|
presets: [['next/babel']],
|
||||||
|
plugins: [['import', { libraryName: 'antd', style: true }]],
|
||||||
|
};
|
2
.env
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# NEXT_PUBLIC_BASE_URL=https://api-staging.cariparkir.co.id
|
||||||
|
NEXT_PUBLIC_BASE_URL=https://9d52-101-255-119-166.ap.ngrok.io
|
34
.gitignore
vendored
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
/node_modules
|
||||||
|
/.pnp
|
||||||
|
.pnp.js
|
||||||
|
|
||||||
|
# testing
|
||||||
|
/coverage
|
||||||
|
|
||||||
|
# next.js
|
||||||
|
/.next/
|
||||||
|
/out/
|
||||||
|
|
||||||
|
# production
|
||||||
|
/build
|
||||||
|
|
||||||
|
# misc
|
||||||
|
.DS_Store
|
||||||
|
*.pem
|
||||||
|
|
||||||
|
# debug
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# local env files
|
||||||
|
.env.local
|
||||||
|
.env.development.local
|
||||||
|
.env.test.local
|
||||||
|
.env.production.local
|
||||||
|
|
||||||
|
# vercel
|
||||||
|
.vercel
|
8
.idea/.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
9
.idea/MICROSITE_BOTS_LOCKEY.iml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="JAVA_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$" />
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
6
.idea/inspectionProfiles/Project_Default.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<component name="InspectionProjectProfileManager">
|
||||||
|
<profile version="1.0">
|
||||||
|
<option name="myName" value="Project Default" />
|
||||||
|
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
|
</profile>
|
||||||
|
</component>
|
6
.idea/misc.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectRootManager">
|
||||||
|
<output url="file://$PROJECT_DIR$/out" />
|
||||||
|
</component>
|
||||||
|
</project>
|
8
.idea/modules.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/MICROSITE_BOTS_LOCKEY.iml" filepath="$PROJECT_DIR$/.idea/MICROSITE_BOTS_LOCKEY.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
9
.idea/nextjs-boilerplate.iml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="JAVA_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$" />
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
6
.idea/vcs.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
34
README.md
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
|
||||||
|
|
||||||
|
## Getting Started
|
||||||
|
|
||||||
|
First, run the development server:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm run dev
|
||||||
|
# or
|
||||||
|
yarn dev
|
||||||
|
```
|
||||||
|
|
||||||
|
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
||||||
|
|
||||||
|
You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
|
||||||
|
|
||||||
|
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
|
||||||
|
|
||||||
|
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
|
||||||
|
|
||||||
|
## Learn More
|
||||||
|
|
||||||
|
To learn more about Next.js, take a look at the following resources:
|
||||||
|
|
||||||
|
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
||||||
|
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
||||||
|
|
||||||
|
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
|
||||||
|
|
||||||
|
## Deploy on Vercel
|
||||||
|
|
||||||
|
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
||||||
|
|
||||||
|
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
|
77
components/Ask/index.js
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
import React, {useEffect, useState} from 'react';
|
||||||
|
import {askRepository} from "../../repository/ask";
|
||||||
|
import {Image} from "antd";
|
||||||
|
import constraint from "../Constraint";
|
||||||
|
|
||||||
|
const Ask = () => {
|
||||||
|
// const {data: contacts} = askRepository.api.getContacts();
|
||||||
|
const [contacts, setContacts] = useState();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
fetchData()
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
const fetchData = async () => {
|
||||||
|
try {
|
||||||
|
const res = await askRepository.api.getContacts()
|
||||||
|
setContacts(res)
|
||||||
|
} catch (err) {
|
||||||
|
console.log(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const dataContact = [
|
||||||
|
{
|
||||||
|
title: "Telepon Customer Care",
|
||||||
|
no: contacts?.results?.phone,
|
||||||
|
timetable: contacts?.results?.phone_wording,
|
||||||
|
icon: "/assets/icons/phone.svg",
|
||||||
|
link: `tel:${contacts?.results?.phone}`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Whatsapp Customer Care",
|
||||||
|
no: contacts?.results?.whatsapp,
|
||||||
|
timetable: contacts?.results?.whatsapp_wording,
|
||||||
|
icon: "/assets/icons/whatsapp.svg",
|
||||||
|
link: `https://wa.me/${contacts?.results?.whatsapp}`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Email Customer Care",
|
||||||
|
no: contacts?.results?.email,
|
||||||
|
timetable: contacts?.results?.email_wording,
|
||||||
|
icon: "/assets/icons/email.svg",
|
||||||
|
link: `mailto:${contacts?.results?.email}`
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={'relative pb-10 mt-5 w-full'}>
|
||||||
|
<div className={'text-center'}>
|
||||||
|
<h3 className={'text-lg font-bold z-10 pt-16'}>Tanyakan ke <span className={'text-[#FFB500]'}>Kami</span></h3>
|
||||||
|
<p className={'z-10 px-5'}>Customer Care kami siap membantu Anda jika Anda memiliki pertanyaan atau masalah dalam menggunakan
|
||||||
|
aplikasi ini.</p>
|
||||||
|
</div>
|
||||||
|
<div className={'absolute top-3 left-0 z-0'}>
|
||||||
|
<Image src={'/assets/backgrounds/cloud-left.svg'} alt={'cloud-left'}/>
|
||||||
|
</div>
|
||||||
|
<div className={'absolute top-1 right-0 z-0'}>
|
||||||
|
<Image src={'/assets/backgrounds/cloud-right.svg'} alt={'cloud-right'}/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={'flex flex-col gap-4 m-5'}>
|
||||||
|
{dataContact.map((it, index) => (
|
||||||
|
<a key={index} href={it.link} target={'_blank'} className={'flex flex-row justify-between gap-4 bg-white p-5 shadow-lg rounded-lg text-black z-10 hover:cursor-pointer hover:shadow-xl'} rel="noreferrer">
|
||||||
|
<div className={'flex flex-col'}>
|
||||||
|
<span>{it.title}</span>
|
||||||
|
<span className={'font-bold'}>{it.no}</span>
|
||||||
|
<span className={'text-xs text-[#9B9B9B]'}>{it.timetable}</span>
|
||||||
|
</div>
|
||||||
|
<Image src={it.icon} alt={'icon'}width={40} height={40} />
|
||||||
|
</a>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Ask;
|
19
components/BottomSheet/index.js
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import React from 'react';
|
||||||
|
import Sheet from "react-modal-sheet";
|
||||||
|
|
||||||
|
const BottomSheet = ({onOpen, onClose, children}) => {
|
||||||
|
return (
|
||||||
|
<Sheet isOpen={onOpen} onClose={onClose} snapPoints={[400]} className={'flex justify-center'}>
|
||||||
|
<Sheet.Container>
|
||||||
|
<Sheet.Header/>
|
||||||
|
<Sheet.Content>
|
||||||
|
{children}
|
||||||
|
</Sheet.Content>
|
||||||
|
</Sheet.Container>
|
||||||
|
|
||||||
|
<Sheet.Backdrop/>
|
||||||
|
</Sheet>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default BottomSheet;
|
107
components/Constraint/index.js
Normal file
|
@ -0,0 +1,107 @@
|
||||||
|
import React, { useState } from 'react';
|
||||||
|
import Image from "next/image";
|
||||||
|
import {Button, Form, Input} from "antd";
|
||||||
|
import Transaction from "../Transaction";
|
||||||
|
import { botsRepository } from '../../repository/bots';
|
||||||
|
|
||||||
|
const Constraint = ({location}) => {
|
||||||
|
const [form] = Form.useForm();
|
||||||
|
const [orderId, setOrderId] = useState('');
|
||||||
|
const [order, setOrder] = useState('');
|
||||||
|
const [orderNotFound, setOrderNotFound] = useState(false);
|
||||||
|
const [show, setShow] = useState(false)
|
||||||
|
|
||||||
|
const handleChangeCheckTransaction = (e) => {
|
||||||
|
const value = e.target.value
|
||||||
|
setOrderId(value)
|
||||||
|
}
|
||||||
|
|
||||||
|
const onSubmit = async () => {
|
||||||
|
setShow(true)
|
||||||
|
if (show) {
|
||||||
|
try {
|
||||||
|
const res = await botsRepository.api.useCheckTransactionByOrderId(orderId);
|
||||||
|
const resultTransaction = res?.data;
|
||||||
|
setOrderNotFound(false);
|
||||||
|
setOrder(resultTransaction);
|
||||||
|
|
||||||
|
} catch (err) {
|
||||||
|
setOrderNotFound(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
console?.log(order, "ini ordernya")
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={'bg-white px-7 pt-4 pb-8 mt-6'}>
|
||||||
|
<Image src={'/assets/images/logo.svg'} width={100} height={50}/>
|
||||||
|
|
||||||
|
<h3 className={'text-lg font-bold'}>Ada kendala dengan transaksimu?</h3>
|
||||||
|
<p>Cek transaksi dengan Order ID pembayaran:</p>
|
||||||
|
|
||||||
|
<Form form={form} layout={'vertical'}>
|
||||||
|
<Form.Item name="order_id" rules={[
|
||||||
|
{required: true, message: "Silahkan masukan Order ID!"},
|
||||||
|
]}>
|
||||||
|
<Input
|
||||||
|
className={'rounded-lg'}
|
||||||
|
size={'large'}
|
||||||
|
placeholder={'CB-20220924-IaNr'}
|
||||||
|
value={orderId}
|
||||||
|
onChange={handleChangeCheckTransaction} />
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
|
<Form.Item shouldUpdate>
|
||||||
|
{() => (
|
||||||
|
<Button
|
||||||
|
disabled={
|
||||||
|
!form.isFieldsTouched(true) ||
|
||||||
|
!!form.getFieldsError().filter(({errors}) => errors.length).length
|
||||||
|
}
|
||||||
|
block
|
||||||
|
className={`${!form.isFieldsTouched(true) ||
|
||||||
|
!!form.getFieldsError().filter(({errors}) => errors.length).length ? 'bg-[#919191]' : 'bg-black'}
|
||||||
|
text-white text-xl h-12 rounded-lg`}
|
||||||
|
onClick={onSubmit}
|
||||||
|
>
|
||||||
|
Cek
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
|
</Form>
|
||||||
|
|
||||||
|
{orderNotFound || order === undefined ? (
|
||||||
|
<>
|
||||||
|
<h3 className={`font-bold text-xl my-4 ${show ? 'block' : 'hidden'}`}>Status Transaksi</h3>
|
||||||
|
|
||||||
|
<div className={`${show ? 'block' : 'hidden'} bg-[#F7FCFC] border-2 border-[#DFDFDF] h-20 flex items-center gap-2 rounded-lg px-5 mt-2`}>
|
||||||
|
<Image src={'/assets/icons/cariparkir.svg'} width={40} height={40}/>
|
||||||
|
<div className={'flex flex-col'}>
|
||||||
|
<span className={'font-semibold'}>{orderId}</span>
|
||||||
|
<span className={'text-[#FB5060] font-semibold text-sm'}>BELUM ADA TRANSAKSI</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
) : order ? (
|
||||||
|
<>
|
||||||
|
<h3 className={`font-bold text-xl my-4 ${show ? 'block' : 'hidden'}`}>Status Transaksi</h3>
|
||||||
|
|
||||||
|
<div className={`${show ? 'block' : 'hidden'} bg-[#F7FCFC] border-2 border-[#DFDFDF] h-20 flex items-center gap-2 rounded-lg px-5 mt-2`}>
|
||||||
|
<Image src={'/assets/icons/cariparkir.svg'} width={40} height={40}/>
|
||||||
|
<div className={'flex flex-col'}>
|
||||||
|
<span className={'font-semibold'}>{orderId}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<Transaction
|
||||||
|
show={show}
|
||||||
|
orderData={order}
|
||||||
|
location={location}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
) : ''}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Constraint;
|
25
components/DownloadApps/index.js
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
import React from 'react';
|
||||||
|
import Image from "next/image";
|
||||||
|
|
||||||
|
const DownloadApps = () => {
|
||||||
|
const handleDownload = (type) => {
|
||||||
|
if (type === 'android') {
|
||||||
|
window.open("https://play.google.com/store/apps/details?id=id.sevadigital.cariparkir.consumer&hl=en&gl=US", "_blank");
|
||||||
|
} else {
|
||||||
|
window.open("https://apps.apple.com/id/app/cariparkir-consumer-app/id1327224621", "_blank");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={'m-5 text-center z-50'}>
|
||||||
|
<h3 className={'text-lg font-bold z-10'}>Gunakan aplikasi CariParkir untuk mendapatkan harga spesial</h3>
|
||||||
|
|
||||||
|
<div className={'flex flex-row justify-center gap-5'}>
|
||||||
|
<Image className={'hover:cursor-pointer z-10'} src={'/assets/images/app-store.svg'} alt={'app-store'} width={180} height={100} onClick={() => handleDownload('ios')}/>
|
||||||
|
<Image className={'hover:cursor-pointer z-10'} src={'/assets/images/play-store.svg'} alt={'play-store'} width={180} height={100} onClick={() => handleDownload('android')}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default DownloadApps;
|
8
components/Layout/DefaultLayout.js
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
import React from "react";
|
||||||
|
import DesktopLayout from "./DesktopLayout/DesktopLayout";
|
||||||
|
|
||||||
|
const DefaultLayout = (props) => {
|
||||||
|
return <DesktopLayout {...props}/>
|
||||||
|
}
|
||||||
|
|
||||||
|
export default DefaultLayout;
|
29
components/Layout/DesktopLayout/DesktopLayout.js
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
import React from "react";
|
||||||
|
import ParticlesLayout from "../ParticlesLayout";
|
||||||
|
import {Layout, Image} from "antd";
|
||||||
|
|
||||||
|
const {Content} = Layout;
|
||||||
|
|
||||||
|
const DesktopLayout = ({children, isGradient = false}) => {
|
||||||
|
console.log({isGradient})
|
||||||
|
return <ParticlesLayout>
|
||||||
|
<Layout
|
||||||
|
theme={"light"}
|
||||||
|
className={`relative max-w-2xl mx-auto ${isGradient ? 'bg-[#F5F5F5]' : 'bg-[#FFFFFF]'}`}
|
||||||
|
hasSider={true}>
|
||||||
|
<Content>
|
||||||
|
<div className={'min-h-screen'}>
|
||||||
|
<div className={'z-50'}>{children}</div>
|
||||||
|
{isGradient && (
|
||||||
|
<div className={'absolute bottom-0 z-0'}>
|
||||||
|
<Image className={'z-0 -mb-[7px]'} preview={false}
|
||||||
|
src={'/assets/backgrounds/bg-pattern.png'}/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</Content>
|
||||||
|
</Layout>
|
||||||
|
</ParticlesLayout>
|
||||||
|
}
|
||||||
|
|
||||||
|
export default DesktopLayout;
|
61
components/Layout/DesktopLayout/DesktopLayoutHeader.js
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
import React, {useState} from 'react';
|
||||||
|
import {Button, Layout, Menu, Popover, Typography} from "antd";
|
||||||
|
import {UserOutlined} from "@ant-design/icons";
|
||||||
|
|
||||||
|
const {Sider, Header, Content, Footer} = Layout;
|
||||||
|
const {Paragraph, Text} = Typography;
|
||||||
|
|
||||||
|
const DesktopLayoutHeader = (props) => {
|
||||||
|
const [clicked, setClicked] = useState(false);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Header className={"flex items-center justify-end"}>
|
||||||
|
<Popover
|
||||||
|
autoAdjustOverflow={true}
|
||||||
|
placement="bottomRight"
|
||||||
|
content={
|
||||||
|
<Menu
|
||||||
|
type={"line"}
|
||||||
|
inlineIndent={0}
|
||||||
|
theme="light"
|
||||||
|
className={"bg-transparent border-r-0"}
|
||||||
|
mode="inline"
|
||||||
|
>
|
||||||
|
<Menu.Item>
|
||||||
|
<span>Profile</span>
|
||||||
|
</Menu.Item>
|
||||||
|
<Menu.Item
|
||||||
|
onClick={() => {
|
||||||
|
// store.authentication.logout();
|
||||||
|
// return history.push("/login");
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<span>Sign out</span>
|
||||||
|
</Menu.Item>
|
||||||
|
</Menu>
|
||||||
|
}
|
||||||
|
title={
|
||||||
|
<Text>
|
||||||
|
<span className={"font-semibold"}>info@bangun-kreatif.com</span>
|
||||||
|
<Paragraph type={"secondary-dark"}>
|
||||||
|
Administrator
|
||||||
|
</Paragraph>
|
||||||
|
</Text>
|
||||||
|
}
|
||||||
|
trigger="click"
|
||||||
|
visible={clicked}
|
||||||
|
onVisibleChange={() => setClicked(!clicked)}
|
||||||
|
>
|
||||||
|
<Button
|
||||||
|
size={"default"}
|
||||||
|
style={{}}
|
||||||
|
icon={
|
||||||
|
<UserOutlined className={"text-sm"}/>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</Popover>
|
||||||
|
</Header>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default DesktopLayoutHeader;
|
48
components/Layout/DesktopLayout/DesktopLayoutMenu.js
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
import React from 'react';
|
||||||
|
import {Menu} from "antd";
|
||||||
|
import {CalendarOutlined, HomeOutlined, SettingOutlined} from "@ant-design/icons";
|
||||||
|
import Link from 'next/link';
|
||||||
|
|
||||||
|
const DesktopLayoutMenu = (props) => (
|
||||||
|
<Menu
|
||||||
|
defaultOpenKeys={["sub4"]}
|
||||||
|
theme="light"
|
||||||
|
className={"bg-transparent border-r-0 ml-6"}
|
||||||
|
onClick={({keyPath, item}) => {
|
||||||
|
// props.closeLeftDrawer();
|
||||||
|
}}
|
||||||
|
mode="inline"
|
||||||
|
selectedKeys={[]}
|
||||||
|
onSelect={({setKeys, item, selectedKeys}) => {
|
||||||
|
}}
|
||||||
|
overflowedIndicator={0}
|
||||||
|
forceSubMenuRender={true}
|
||||||
|
>
|
||||||
|
<Menu.Item key="home">
|
||||||
|
<Link href={"/home"}>
|
||||||
|
<a>
|
||||||
|
<HomeOutlined/>
|
||||||
|
<span>Home</span>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</Menu.Item>
|
||||||
|
<Menu.Item key="about">
|
||||||
|
<Link href={"/about"}>
|
||||||
|
<a>
|
||||||
|
<CalendarOutlined/>
|
||||||
|
<span>About</span>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</Menu.Item>
|
||||||
|
<Menu.Item key="setting">
|
||||||
|
<Link href={"/setting"}>
|
||||||
|
<a>
|
||||||
|
<SettingOutlined/>
|
||||||
|
<span>Setting</span>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</Menu.Item>
|
||||||
|
</Menu>
|
||||||
|
);
|
||||||
|
|
||||||
|
export default DesktopLayoutMenu;
|
18
components/Layout/ParticlesLayout.js
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
import dynamic from "next/dynamic";
|
||||||
|
|
||||||
|
const ParticlesBg = dynamic(() => import("particles-bg"), { ssr: false });
|
||||||
|
|
||||||
|
const ParticlesLayout = ({children}) => {
|
||||||
|
if(typeof window === "undefined") {
|
||||||
|
return <div>
|
||||||
|
{children}
|
||||||
|
</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
return <div>
|
||||||
|
{children}
|
||||||
|
<ParticlesBg color={"#ababab"} num={20} type={"cobweb"} bg={true} />
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ParticlesLayout;
|
26
components/Location/index.js
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
import React from 'react';
|
||||||
|
import Image from "next/image";
|
||||||
|
import {Divider} from "antd";
|
||||||
|
|
||||||
|
const Location = () => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<div className={'flex flex-col items-center gap-4'}>
|
||||||
|
<Image src={'/assets/images/location.svg'} width={80} height={80}/>
|
||||||
|
|
||||||
|
<div className={'text-center'}>
|
||||||
|
<h1 className={'font-bold'}>LOCKEY Lippo Mall Kemang</h1>
|
||||||
|
<p className={'text-sm text-[#B7BAC2]'}>Jl. Pangeran Antasari No.36, Bangka, Kec. Mampang Prpt.,
|
||||||
|
Kota, Daerah
|
||||||
|
Khusus Ibukota
|
||||||
|
Jakarta
|
||||||
|
12150</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Divider dashed className={'my-2 border-[#c1c1c1]'} style={{width: '2px 0 0'}}/>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Location;
|
37
components/StoreProvider.js
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
import {createContext, useContext} from 'react';
|
||||||
|
import {Store} from "../store/store";
|
||||||
|
|
||||||
|
let store;
|
||||||
|
|
||||||
|
export const StoreContext = createContext();
|
||||||
|
|
||||||
|
export function useStore() {
|
||||||
|
const context = useContext(StoreContext)
|
||||||
|
if (context === undefined) {
|
||||||
|
throw new Error('useStore must be used within StoreProvider')
|
||||||
|
}
|
||||||
|
|
||||||
|
return context
|
||||||
|
}
|
||||||
|
|
||||||
|
export function StoreProvider({children, initialState: initialData}) {
|
||||||
|
const store = initializeStore(initialData);
|
||||||
|
|
||||||
|
return <StoreContext.Provider value={store}>{children}</StoreContext.Provider>;
|
||||||
|
}
|
||||||
|
|
||||||
|
function initializeStore(initialData = null) {
|
||||||
|
const _store = store ?? new Store()
|
||||||
|
|
||||||
|
// If your page has Next.js data fetching methods that use a Mobx store, it will
|
||||||
|
// get hydrated here, check `pages/ssg.js` and `pages/ssr.js` for more details
|
||||||
|
if (initialData) {
|
||||||
|
_store.hydrate(initialData)
|
||||||
|
}
|
||||||
|
// For SSG and SSR always create a new store
|
||||||
|
if (typeof window === 'undefined') return _store
|
||||||
|
// Create the store once in the client
|
||||||
|
if (!store) store = _store
|
||||||
|
|
||||||
|
return _store
|
||||||
|
}
|
70
components/Transaction/index.js
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
import React, {useEffect, useRef, useState} from 'react';
|
||||||
|
import {Badge, Divider, Tag} from "antd";
|
||||||
|
import Image from "next/image";
|
||||||
|
import {DownCircleOutlined} from "@ant-design/icons";
|
||||||
|
import autoAnimate from "@formkit/auto-animate";
|
||||||
|
import { format } from "date-fns";
|
||||||
|
|
||||||
|
const Transaction = ({show, orderData, location}) => {
|
||||||
|
const [collapse, setCollapse] = useState(false);
|
||||||
|
const parentRef = useRef(null)
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (parentRef.current) {
|
||||||
|
autoAnimate(parentRef.current);
|
||||||
|
}
|
||||||
|
}, [parentRef])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className={`${show ? 'block' : 'hidden'} bg-white mt-3 border-[#E5E9F2] shadow rounded-lg`} ref={parentRef}>
|
||||||
|
<div className={'flex justify-between items-center p-3'}>
|
||||||
|
<div className={'flex flex-col'}>
|
||||||
|
<span className={'font-semibold'}>{orderData?.order_id}</span>
|
||||||
|
<span className={'text-[#B7BAC2]'}>{format(new Date(orderData?.date_modified), 'dd/MM/yyyy mm:ss')}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<Tag color={'warning'} className={'p-2 rounded'}>{orderData?.status}</Tag>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{!collapse && <Divider className={'m-0'}/>}
|
||||||
|
|
||||||
|
{collapse && (
|
||||||
|
<>
|
||||||
|
<div className={'flex justify-between gap-2 bg-slate-50 border-2 border-x'}>
|
||||||
|
<div className={'flex flex-col pl-3 py-3 gap-2'}>
|
||||||
|
<div className={'flex flex-col'}>
|
||||||
|
<span className={'font-semibold'}>Lokasi</span>
|
||||||
|
<span className={'text-[#515257]'}>{location?.data?.[0]?.name}</span>
|
||||||
|
</div>
|
||||||
|
<div className={'flex flex-col'}>
|
||||||
|
<span className={'font-semibold'}>Total Harga</span>
|
||||||
|
<span className={'text-[#FF6103]'}>Rp.{orderData?.total}</span>
|
||||||
|
</div>
|
||||||
|
{orderData?.payment_method?.toLowerCase() == "gopay" && (
|
||||||
|
<div>
|
||||||
|
<Image src={'/assets/images/gopay.svg'} width={81} height={17}/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={'flex flex-col items-center w-44 pr-3 py-3'}>
|
||||||
|
<span className={'font-semibold'}>Status Parkir</span>
|
||||||
|
<Badge color={'#FF9400'} text={<span className={'text-[#FF9400]'}>In-Location</span>}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className={'flex items-center gap-2 hover:cursor-pointer p-3'} onClick={() => setCollapse(!collapse)}>
|
||||||
|
<span className={'text-[#96969a] text-sm'}>Lihat Detail</span>
|
||||||
|
<DownCircleOutlined rotate={collapse ? 180 : 0} className={'text-[#96969a]'}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Transaction;
|
3
config/app.js
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
export const appConfig = {
|
||||||
|
apiUrl: process.env.NEXT_PUBLIC_BASE_URL
|
||||||
|
}
|
19
next.config.js
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
const withAntdLess = require('next-plugin-antd-less');
|
||||||
|
const antdVariables = require('./styles/antd_variables');
|
||||||
|
|
||||||
|
module.exports = withAntdLess({
|
||||||
|
|
||||||
|
modifyVars: antdVariables,
|
||||||
|
|
||||||
|
lessVarsFilePath: './styles/variables.less',
|
||||||
|
|
||||||
|
lessVarsFilePathAppendToEndOfContent: false,
|
||||||
|
|
||||||
|
cssLoaderOptions: {},
|
||||||
|
|
||||||
|
webpack(config) {
|
||||||
|
return config;
|
||||||
|
},
|
||||||
|
|
||||||
|
reactStrictMode: true,
|
||||||
|
});
|
10416
package-lock.json
generated
Normal file
40
package.json
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
"name": "nextjs-boilerplate",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"dev": "next dev",
|
||||||
|
"build": "next build",
|
||||||
|
"start": "next start",
|
||||||
|
"lint": "next lint",
|
||||||
|
"dev:debug": "NODE_OPTIONS='--inspect' next dev"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@ant-design/icons": "^4.7.0",
|
||||||
|
"@formkit/auto-animate": "^1.0.0-beta.3",
|
||||||
|
"antd": "^4.23.6",
|
||||||
|
"atob": "^2.1.2",
|
||||||
|
"autoprefixer": "^10.4.7",
|
||||||
|
"axios": "^1.1.3",
|
||||||
|
"babel-plugin-import": "^1.13.5",
|
||||||
|
"date-fns": "^2.29.3",
|
||||||
|
"framer-motion": "^7.6.1",
|
||||||
|
"mobx": "^6.6.1",
|
||||||
|
"mobx-react-lite": "^3.4.0",
|
||||||
|
"next": "12.2.2",
|
||||||
|
"next-plugin-antd-less": "^1.8.0",
|
||||||
|
"particles-bg": "^2.5.5",
|
||||||
|
"postcss": "^8.4.14",
|
||||||
|
"react": "^18.2.0",
|
||||||
|
"react-countdown": "^2.3.3",
|
||||||
|
"react-dom": "^18.2.0",
|
||||||
|
"react-modal-sheet": "^1.8.1",
|
||||||
|
"sass": "^1.53.0",
|
||||||
|
"swr": "^1.3.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"eslint": "8.19.0",
|
||||||
|
"eslint-config-next": "12.2.2",
|
||||||
|
"tailwindcss": "^3.2.0"
|
||||||
|
}
|
||||||
|
}
|
65
pages/[qrCode]/order/index.js
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
import React, {useEffect} from 'react';
|
||||||
|
import DefaultLayout from "../../../components/Layout/DefaultLayout";
|
||||||
|
import { useRouter } from 'next/router';
|
||||||
|
import { Image } from 'antd';
|
||||||
|
import { botsRepository } from '../../../repository/bots';
|
||||||
|
import {useStore} from "../../../components/StoreProvider";
|
||||||
|
import { observer } from 'mobx-react-lite';
|
||||||
|
|
||||||
|
const FlashScreen = observer(() => {
|
||||||
|
const router = useRouter();
|
||||||
|
const store = useStore()
|
||||||
|
|
||||||
|
const { qrCode } = router.query;
|
||||||
|
|
||||||
|
const { data: listLockeys } = botsRepository.hooks.useGetAllLockey(qrCode);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (router.isReady && listLockeys?.data?.length > 0) {
|
||||||
|
const isAvailable = listLockeys?.data?.find(lockey => lockey.lockey_status?.description.toLowerCase() === "tersedia");
|
||||||
|
const isNotAvailable = listLockeys?.data?.find(lockey => lockey?.lockey_status?.description?.toLowerCase() === "LOCKEY Mati");
|
||||||
|
|
||||||
|
if (isAvailable) {
|
||||||
|
localStorage.setItem("lockey_id", isAvailable?.id)
|
||||||
|
localStorage.setItem("location_name", isAvailable?.location_name);
|
||||||
|
store.lockey.createOrder({
|
||||||
|
lockeyId: isAvailable.id
|
||||||
|
})
|
||||||
|
.then(res => {
|
||||||
|
router.push(`/${qrCode}/payment-order/`)
|
||||||
|
})
|
||||||
|
} else if (isNotAvailable) {
|
||||||
|
localStorage.setItem("lockey_id", isNotAvailable?.id)
|
||||||
|
localStorage.setItem("location_name", isNotAvailable?.location_name);
|
||||||
|
router.push('/not-available');
|
||||||
|
}
|
||||||
|
console.log(isAvailable, "jj")
|
||||||
|
}
|
||||||
|
}, [router.isReady, listLockeys])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className='relative flex flex-col justify-center items-center pt-[172px] lg:pt-20'>
|
||||||
|
<Image src='/assets/images/cariparkir3.svg' preview={false} />
|
||||||
|
<div className='flex items-center gap-6 mt-6'>
|
||||||
|
<span>Only pay with</span>
|
||||||
|
<Image src='/assets/images/gopay.svg' preview={false}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className={'hidden md:flex justify-center items-center absolute bottom-0 w-full'}>
|
||||||
|
<Image src='/assets/images/flash-screen2.png' preview={false}/>
|
||||||
|
</div>
|
||||||
|
<div className={'flex justify-center items-center absolute bottom-0 w-full md:hidden'}>
|
||||||
|
<Image src='/assets/images/flash-screen.svg' preview={false}/>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
|
FlashScreen.getLayout = function Layout(page) {
|
||||||
|
return <DefaultLayout isGradient={false}>
|
||||||
|
{page}
|
||||||
|
</DefaultLayout>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default FlashScreen;
|
200
pages/[qrCode]/payment-order/index.js
Normal file
|
@ -0,0 +1,200 @@
|
||||||
|
import React, {useEffect, useState} from 'react';
|
||||||
|
import DefaultLayout from "../../../components/Layout/DefaultLayout";
|
||||||
|
import {observer} from "mobx-react-lite";
|
||||||
|
import Image from "next/image";
|
||||||
|
import {Button, Divider, Form, Input, Modal, Spin} from "antd";
|
||||||
|
import Constraint from "../../../components/Constraint";
|
||||||
|
import Ask from "../../../components/Ask";
|
||||||
|
import Location from "../../../components/Location";
|
||||||
|
import DownloadApps from "../../../components/DownloadApps";
|
||||||
|
import Sheet from 'react-modal-sheet';
|
||||||
|
import Countdown from "react-countdown";
|
||||||
|
import {useRouter} from "next/router";
|
||||||
|
import BottomSheet from "../../../components/BottomSheet";
|
||||||
|
import { botsRepository } from '../../../repository/bots';
|
||||||
|
|
||||||
|
const Payment = observer(() => {
|
||||||
|
const [form] = Form.useForm();
|
||||||
|
const router = useRouter();
|
||||||
|
const { qrCode } = router.query;
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const [openOrderOut, setOpenOrderOut] = useState(false);
|
||||||
|
const [notOrder, setNotOrder] = useState(false);
|
||||||
|
const [isLoading, setIsLoading] = useState(false);
|
||||||
|
const [isNotComplete, setIsNotComplete] = useState(false);
|
||||||
|
|
||||||
|
const onOpenSheet = () => setOpen(true);
|
||||||
|
const onCloseSheet = () => setOpen(false);
|
||||||
|
const onNotOrder = () => {
|
||||||
|
setNotOrder(true);
|
||||||
|
setOpenOrderOut(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const { data: location } = botsRepository.hooks.useGetLocationByQR(qrCode)
|
||||||
|
console.log(location, "he")
|
||||||
|
const renderer = ({minutes, seconds, completed}) => {
|
||||||
|
if (completed) {
|
||||||
|
// router.push('/flash-screen');
|
||||||
|
} else {
|
||||||
|
return <span>{minutes}:{seconds}</span>;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{isNotComplete ? (
|
||||||
|
<div className="flex items-center justify-center bg-[#FF4F34] h-10 text-base">
|
||||||
|
<span className={'text-white'}>Batas Penyelesaian Pesanan mu Habis</span>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div className="flex items-center justify-center bg-[#00AED6] h-10 text-base">
|
||||||
|
<span className={'text-white'}>Selesaikan Pesanan mu dalam <Countdown
|
||||||
|
date={Date.now() + 50000}
|
||||||
|
// date={Date.now() + 300000}
|
||||||
|
renderer={renderer}
|
||||||
|
onComplete={() => {
|
||||||
|
setIsNotComplete(true)
|
||||||
|
setOpenOrderOut(true)
|
||||||
|
}}/>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className={'bg-white m-2 py-4 px-6 rounded-lg'}>
|
||||||
|
<Location/>
|
||||||
|
|
||||||
|
<Form form={form} layout={'vertical'}>
|
||||||
|
<div className={'mt-5'}>
|
||||||
|
<Form.Item name="phone"
|
||||||
|
label={<span className={'font-semibold text-xl'}>Nomor Telepon Pembayaran</span>}
|
||||||
|
rules={[
|
||||||
|
{required: true, message: "Silahkan masukan Nomor Ponsel!"},
|
||||||
|
{min: 10, max: 14, message: "Nomor Ponsel tidak sesuai!"},
|
||||||
|
]}>
|
||||||
|
<Input
|
||||||
|
type={'number'}
|
||||||
|
className={'rounded-lg'}
|
||||||
|
size={'large'}
|
||||||
|
suffix={<Image src={'/assets/icons/gopay.svg'} width={80} height={30} />}
|
||||||
|
placeholder={'08xxxxxxxxx'}
|
||||||
|
disabled={
|
||||||
|
notOrder === true
|
||||||
|
}/>
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
|
<p>Dengan melanjutkan, saya telah membaca dan menyetujui <span
|
||||||
|
className={'text-[#FF9400] underline underline-offset-2 hover:cursor-pointer'}
|
||||||
|
onClick={() => router.push('/policy-terms')}>Syarat & Ketentuan</span> di
|
||||||
|
CariParkir.</p>
|
||||||
|
|
||||||
|
<Divider dashed className={'my-8 border-[#c1c1c1]'} style={{width: '2px 0 0'}}/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={'flex justify-between'}>
|
||||||
|
<h3 className={'text-lg font-bold'}>Total Pembayaran</h3>
|
||||||
|
<h3 className={'text-lg font-bold text-[#FF6103]'}>Rp. 99.000</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Form.Item shouldUpdate>
|
||||||
|
{() => (
|
||||||
|
<Button
|
||||||
|
disabled={
|
||||||
|
!form.isFieldsTouched(true) ||
|
||||||
|
!!form.getFieldsError().filter(({ errors }) => errors.length).length ||
|
||||||
|
notOrder === true
|
||||||
|
}
|
||||||
|
block
|
||||||
|
className={`${!form.isFieldsTouched(true) ||
|
||||||
|
!!form.getFieldsError().filter(({errors}) => errors.length).length || openOrderOut === true ? 'bg-[#919191]' : 'bg-black'}
|
||||||
|
text-white text-xl h-12 rounded-lg`}
|
||||||
|
onClick={onOpenSheet}>Bayar</Button>
|
||||||
|
)}
|
||||||
|
</Form.Item>
|
||||||
|
</Form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/*ADA KENDALA*/}
|
||||||
|
<Constraint
|
||||||
|
location={location}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/*BUTUH BANTUAN*/}
|
||||||
|
<Ask/>
|
||||||
|
|
||||||
|
{/*DOWNLOAD APPS*/}
|
||||||
|
<DownloadApps/>
|
||||||
|
|
||||||
|
{/*MODAL LOADING*/}
|
||||||
|
<Modal
|
||||||
|
className={'rounded-lg'}
|
||||||
|
open={isLoading}
|
||||||
|
footer={null}
|
||||||
|
closable={false}
|
||||||
|
maskClosable={false}
|
||||||
|
bodyStyle={{paddingLeft: 5, paddingRight: 5}}>
|
||||||
|
<div className={'flex flex-col justify-center'}>
|
||||||
|
<Spin size={'large'}/>
|
||||||
|
<span className={'text-center font-semibold'}>Mohon tunggu</span>
|
||||||
|
<span className={'text-center text-sm'}>Saat ini pemesanan LOCKEY anda sedang di proses. </span>
|
||||||
|
</div>
|
||||||
|
</Modal>
|
||||||
|
|
||||||
|
{/*CONFIRMATION SHEET*/}
|
||||||
|
<BottomSheet onOpen={open} onClose={() => setOpen(false)}>
|
||||||
|
<div className={'px-5 max-w-lg'}>
|
||||||
|
<div className={'flex justify-center'}>
|
||||||
|
<Image src={'/assets/images/confirmation.svg'} width={200} height={200}
|
||||||
|
alt={'confirmation'}/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3 className={'text-lg font-bold'}>Konfirmasi Pembayaran?</h3>
|
||||||
|
<p>Tidak berlaku pembatalan atau pengembalian dana setelah pembayaran selesai. </p>
|
||||||
|
|
||||||
|
<div className={'flex justify-between gap-4'}>
|
||||||
|
<Button size={'large'} className={'w-full rounded-lg'}
|
||||||
|
onClick={onCloseSheet}>Cancel</Button>
|
||||||
|
<Button size={'large'} className={'w-full rounded-lg bg-black text-white'}
|
||||||
|
onClick={() => {
|
||||||
|
setOpen(false)
|
||||||
|
setIsLoading(true)
|
||||||
|
}}>Bayar</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</BottomSheet>
|
||||||
|
|
||||||
|
{/*ORDER OUT*/}
|
||||||
|
<BottomSheet onOpen={openOrderOut} onClose={() => setOpenOrderOut(false)}>
|
||||||
|
<div className={'px-5 max-w-lg'}>
|
||||||
|
<div className={'flex justify-center'}>
|
||||||
|
<Image src={'/assets/images/illustration-order-out.svg'} width={200} height={200}
|
||||||
|
alt={'confirmation'}/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h3 className={'text-lg font-bold'}>Ingin pesan kembali?</h3>
|
||||||
|
<p>Anda akan mendapatkan LOCKEY terbaru, jika ingin memesan kembali.</p>
|
||||||
|
|
||||||
|
<div className={'flex justify-between gap-4'}>
|
||||||
|
<Button size={'large'} className={'w-full rounded-lg'}
|
||||||
|
onClick={onNotOrder}>Tidak</Button>
|
||||||
|
<Button
|
||||||
|
size={'large'}
|
||||||
|
className={'w-full rounded-lg bg-black text-white'}
|
||||||
|
onClick={() => router.push(`/${qrCode}/order`)}
|
||||||
|
>
|
||||||
|
Pesan Ulang
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</BottomSheet>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
|
Payment.getLayout = function Layout(page) {
|
||||||
|
return <DefaultLayout isGradient={true}>
|
||||||
|
{page}
|
||||||
|
</DefaultLayout>;
|
||||||
|
}
|
||||||
|
;
|
||||||
|
|
||||||
|
export default Payment;
|
14
pages/_app.js
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
import '../styles/globals.scss';
|
||||||
|
import 'tailwindcss/tailwind.css';
|
||||||
|
import {StoreProvider} from "../components/StoreProvider";
|
||||||
|
|
||||||
|
function MyApp({ Component, pageProps }) {
|
||||||
|
// Use the layout defined at the page level, if available
|
||||||
|
const getLayout = Component.getLayout || ((page) => page)
|
||||||
|
|
||||||
|
return getLayout(<StoreProvider {...pageProps}>
|
||||||
|
<Component {...pageProps} />
|
||||||
|
</StoreProvider>);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default MyApp
|
27
pages/_document.js
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
import Document, {Head, Html, Main, NextScript} from 'next/document'
|
||||||
|
|
||||||
|
class MyDocument extends Document {
|
||||||
|
static async getInitialProps(ctx) {
|
||||||
|
const initialProps = await Document.getInitialProps(ctx)
|
||||||
|
return { ...initialProps }
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<Html>
|
||||||
|
<Head>
|
||||||
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@200;400;600"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
</Head>
|
||||||
|
<body id={"tailwind-selector"}>
|
||||||
|
<Main />
|
||||||
|
<NextScript />
|
||||||
|
</body>
|
||||||
|
</Html>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default MyDocument
|
32
pages/about.js
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
import React from "react";
|
||||||
|
import DefaultLayout from "../components/Layout/DefaultLayout";
|
||||||
|
import {Button, Card, PageHeader} from "antd";
|
||||||
|
import {observer} from "mobx-react-lite";
|
||||||
|
import {useStore} from "../components/StoreProvider";
|
||||||
|
|
||||||
|
const About = observer(() => {
|
||||||
|
const store = useStore();
|
||||||
|
|
||||||
|
return <div>
|
||||||
|
<PageHeader
|
||||||
|
style={{
|
||||||
|
}}
|
||||||
|
title={"About"}
|
||||||
|
>
|
||||||
|
</PageHeader>
|
||||||
|
<Card className={"flex text-gray-500"}>
|
||||||
|
{store.sample.testObs} Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus aut recusandae velit! Consequatur corporis, eum fuga, harum incidunt laboriosam minus necessitatibus neque non nostrum pariatur tempore. Dignissimos impedit rem tempora!
|
||||||
|
<Button onClick={() => {
|
||||||
|
store.sample.setTestObs(store.sample.testObs + 1);
|
||||||
|
}}>Increment</Button>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
});
|
||||||
|
|
||||||
|
About.getLayout = function Layout(page) {
|
||||||
|
return <DefaultLayout>
|
||||||
|
{page}
|
||||||
|
</DefaultLayout>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default About;
|
5
pages/api/hello.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
||||||
|
|
||||||
|
export default function handler(req, res) {
|
||||||
|
res.status(200).json({ name: 'John Doe' })
|
||||||
|
}
|
31
pages/home.js
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
import React from "react";
|
||||||
|
import DefaultLayout from "../components/Layout/DefaultLayout";
|
||||||
|
import {Button, Card, PageHeader} from "antd";
|
||||||
|
import {observer} from "mobx-react-lite";
|
||||||
|
import {useStore} from "../components/StoreProvider";
|
||||||
|
|
||||||
|
const Home = observer(() => {
|
||||||
|
const store = useStore();
|
||||||
|
return <div>
|
||||||
|
<PageHeader
|
||||||
|
style={{
|
||||||
|
}}
|
||||||
|
title={"Home"}
|
||||||
|
>
|
||||||
|
</PageHeader>
|
||||||
|
<Card className={"flex text-gray-500"}>
|
||||||
|
{store.sample.testObs} Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus aut recusandae velit! Consequatur corporis, eum fuga, harum incidunt laboriosam minus necessitatibus neque non nostrum pariatur tempore. Dignissimos impedit rem tempora!
|
||||||
|
<Button onClick={() => {
|
||||||
|
store.sample.setTestObs(store.sample.testObs + 1);
|
||||||
|
}}>Increment</Button>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
});
|
||||||
|
|
||||||
|
Home.getLayout = function Layout(page) {
|
||||||
|
return <DefaultLayout>
|
||||||
|
{page}
|
||||||
|
</DefaultLayout>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Home;
|
5
pages/index.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
export default function Home() {
|
||||||
|
return (
|
||||||
|
<div></div>
|
||||||
|
)
|
||||||
|
}
|
146
pages/login.js
Normal file
|
@ -0,0 +1,146 @@
|
||||||
|
import React, {useState} from "react";
|
||||||
|
import {observer} from 'mobx-react-lite';
|
||||||
|
import {Button, Card, Checkbox, Col, Form, Input, Row, Typography} from 'antd';
|
||||||
|
import {LockOutlined, UserOutlined} from '@ant-design/icons';
|
||||||
|
import ParticlesLayout from "../components/Layout/ParticlesLayout";
|
||||||
|
|
||||||
|
const Login = observer(() => {
|
||||||
|
// const store = useStore();
|
||||||
|
const [loading, setLoading] = useState(false);
|
||||||
|
|
||||||
|
// let history = useHistory();
|
||||||
|
|
||||||
|
const onFinish = values => {
|
||||||
|
console.log('Received values of form: ', values);
|
||||||
|
enterLoading(values).then(res => {
|
||||||
|
console.log(res, "awasaa");
|
||||||
|
}).catch((error) => {
|
||||||
|
console.log({error}, "awasaa error");
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const enterLoading = async (props) => {
|
||||||
|
// store.setInitialToken("ayayay", "clap");
|
||||||
|
// return history.push("/app/page_example_1");
|
||||||
|
};
|
||||||
|
|
||||||
|
return <div style={{width: '100vw', display: 'flex', justifyContent: 'center'}}>
|
||||||
|
<Row justify={'center'}>
|
||||||
|
<Col>
|
||||||
|
<div style={{
|
||||||
|
display: 'flex',
|
||||||
|
justifyContent: 'flex-start',
|
||||||
|
marginTop: '5vh',
|
||||||
|
flexDirection: 'column',
|
||||||
|
alignItems: 'center',
|
||||||
|
}}>
|
||||||
|
<div style={{display: 'flex', flexDirection: 'column', alignItems: 'stretch'}}>
|
||||||
|
<Typography.Paragraph
|
||||||
|
style={{
|
||||||
|
margin: 0,
|
||||||
|
padding: 0,
|
||||||
|
fontSize: 20,
|
||||||
|
marginLeft: 5,
|
||||||
|
fontWeight: 600,
|
||||||
|
color: "#413d3e",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Boilerplate
|
||||||
|
</Typography.Paragraph>
|
||||||
|
</div>
|
||||||
|
<Card
|
||||||
|
style={{width: 320, textAlign: 'center'}}
|
||||||
|
headStyle={{fontSize: 13, fontWeight: 200}}
|
||||||
|
className={"shadow"}
|
||||||
|
bordered={true}
|
||||||
|
title={'Sign in to your account'}
|
||||||
|
>
|
||||||
|
<Form
|
||||||
|
layout={'vertical'}
|
||||||
|
name="normal_login"
|
||||||
|
className="login-form"
|
||||||
|
onFinish={onFinish}
|
||||||
|
>
|
||||||
|
<Form.Item
|
||||||
|
label="Email"
|
||||||
|
name="email"
|
||||||
|
size={'large'}
|
||||||
|
rules={[{required: false, message: 'Please input your Username!'}]}
|
||||||
|
>
|
||||||
|
<Input
|
||||||
|
prefix={<UserOutlined className="site-form-item-icon"/>}
|
||||||
|
type="text"
|
||||||
|
placeholder="Email"/>
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
|
<Form.Item
|
||||||
|
style={{
|
||||||
|
marginBottom: 0,
|
||||||
|
}}
|
||||||
|
label="Password"
|
||||||
|
name="password"
|
||||||
|
size={'large'}
|
||||||
|
rules={[{required: false, message: 'Please input your Password!'}]}
|
||||||
|
>
|
||||||
|
<Input.Password
|
||||||
|
prefix={<LockOutlined className="site-form-item-icon"/>}
|
||||||
|
type="password"
|
||||||
|
placeholder="Password"
|
||||||
|
/>
|
||||||
|
</Form.Item>
|
||||||
|
<Form.Item
|
||||||
|
style={{
|
||||||
|
marginTop: 0,
|
||||||
|
marginBottom: 20,
|
||||||
|
padding: 0
|
||||||
|
}}
|
||||||
|
// label="Password"
|
||||||
|
name="forgot-password"
|
||||||
|
size={'small'}
|
||||||
|
rules={[{required: false, message: 'Please input your Password!'}]}
|
||||||
|
>
|
||||||
|
<a className="login-form-forgot" href="">
|
||||||
|
Forgot password
|
||||||
|
</a>
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
|
<Form.Item
|
||||||
|
style={{
|
||||||
|
marginBottom: 5,
|
||||||
|
textAlign: 'left'
|
||||||
|
}}>
|
||||||
|
<Form.Item name="remember" valuePropName="checked" noStyle>
|
||||||
|
<Checkbox>Remember me</Checkbox>
|
||||||
|
</Form.Item>
|
||||||
|
</Form.Item>
|
||||||
|
|
||||||
|
<Form.Item
|
||||||
|
style={{
|
||||||
|
marginBottom: 0,
|
||||||
|
}}>
|
||||||
|
<Button type="primary"
|
||||||
|
block
|
||||||
|
loading={loading}
|
||||||
|
htmlType="submit"
|
||||||
|
size={'large'}
|
||||||
|
onSubmit={enterLoading}
|
||||||
|
className="login-form-button">
|
||||||
|
Sign In
|
||||||
|
</Button>
|
||||||
|
</Form.Item>
|
||||||
|
</Form>
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
|
||||||
|
</div>;
|
||||||
|
});
|
||||||
|
|
||||||
|
Login.getLayout = function Layout(page) {
|
||||||
|
return <ParticlesLayout>
|
||||||
|
{page}
|
||||||
|
</ParticlesLayout>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Login;
|
37
pages/not-available/index.js
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
const { observer } = require("mobx-react-lite");
|
||||||
|
import { Button, Image } from "antd";
|
||||||
|
import DefaultLayout from "../../components/Layout/DefaultLayout";
|
||||||
|
|
||||||
|
const NotAvailable = observer(() => {
|
||||||
|
|
||||||
|
const navigateDownload = () => {
|
||||||
|
if (navigator.userAgent.toLocaleLowerCase().indexOf("iphone") > -1) {
|
||||||
|
window.open("https://apps.apple.com/id/app/cariparkir-consumer-app/id1327224621", "_blank");
|
||||||
|
} else {
|
||||||
|
window.open("https://play.google.com/store/apps/details?id=id.sevadigital.cariparkir.consumer&hl=en&gl=US", "_blank");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div className="mx-auto flex flex-col">
|
||||||
|
<div className="mt-9">
|
||||||
|
<p className={'text-[#FFB500] font-bold text-2xl lg:text-3xl text-center'}>Pesan LOCKEY</p>
|
||||||
|
<p className={'font-bold text-xl lg:text-2xl text-center mt-4'}>"Lippo Mall Kemang"</p>
|
||||||
|
</div>
|
||||||
|
<Image src={'/assets/backgrounds/not_available.svg'} preview={false} />
|
||||||
|
<div className="mx-auto px-4 text-center mb-3 mt-4 sm:px-16">
|
||||||
|
<p className={'font-bold text-base md:text-lg lg:text-xl mb-3'}>Maaf, saat ini LOCKEY sudah terpesan semua.</p>
|
||||||
|
<p className="font-normal text-base md:text-lg lg:text-xl mb-4">Silahkan mencoba beberapa saat lagi. Atau install aplikasi CariParkir untuk pesan LOCKEY lebih mudah dan dapatkan penawaran menarik lainnya!</p>
|
||||||
|
<Button type="primary" className="bg-[#231F20] text-base md:text-lg lg:text-xl font-normal border-none h-[45px] rounded-3xl w-full mt-10 mb-10" onClick={navigateDownload}>Download Cariparkir</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
NotAvailable.getLayout = function Layout(page) {
|
||||||
|
return <DefaultLayout>
|
||||||
|
{page}
|
||||||
|
</DefaultLayout>;
|
||||||
|
}
|
||||||
|
export default NotAvailable;
|
109
pages/policy-terms/index.js
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
import { observer } from "mobx-react-lite";
|
||||||
|
import DefaultLayout from "../../components/Layout/DefaultLayout";
|
||||||
|
import { Image, Tabs } from "antd";
|
||||||
|
import { useRouter } from "next/router";
|
||||||
|
|
||||||
|
const PolicyTerms = observer(() => {
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
const general_requirements = [
|
||||||
|
{
|
||||||
|
key: 1,
|
||||||
|
value: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 2,
|
||||||
|
value: 'bled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 3,
|
||||||
|
value: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 4,
|
||||||
|
value: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 5,
|
||||||
|
value: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 6,
|
||||||
|
value: 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since ',
|
||||||
|
},
|
||||||
|
]
|
||||||
|
const items = [
|
||||||
|
{
|
||||||
|
label: `Syarat & Ketentuan`,
|
||||||
|
key: '1',
|
||||||
|
children: [
|
||||||
|
<p className="font-bold text-xs md:text-sm lg:text-base text-center mb-2" > Syarat - syarat & Ketentuan[Layanan] <i> (Terms & Condition of Serfices)</i></p>,
|
||||||
|
<p className="font-bold text-xs md:text-base mb-7">PENTING: <span className="font-normal text-xs md:text-sm">Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged</span></p>,
|
||||||
|
<p className="font-normal text-xs md:text-sm mb-7">Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged</p>,
|
||||||
|
<p className="font-normal text-xs md:text-sm mb-7">Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged</p>,
|
||||||
|
<p className="font-bold text-xs md:text-base">Ketentuan Umum</p>,
|
||||||
|
general_requirements.map(value => (
|
||||||
|
<div className="flex">
|
||||||
|
<p key={value?.key} className="font-normal text-xs md:text-sm mb-0">{value?.key}.</p>
|
||||||
|
<p key={value?.key} className="font-normal text-xs md:text-sm mb-0">{value?.value}</p>
|
||||||
|
</div>
|
||||||
|
))
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: `Kebijakan Privasi`,
|
||||||
|
key: '2',
|
||||||
|
children: [
|
||||||
|
<p className="font-bold text-xs md:text-sm lg:text-base text-center mb-2" > Kebijakan Privasi <i> (Privacy Policy)</i></p>,
|
||||||
|
<p className="font-bold text-xs md:text-base mb-7">PENTING: <span className="font-normal text-xs md:text-sm">Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged</span></p>,
|
||||||
|
<p className="font-normal text-xs md:text-sm mb-7">Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged</p>,
|
||||||
|
<p className="font-normal text-xs md:text-sm mb-7">Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged</p>,
|
||||||
|
<p className="font-bold text-xs md:text-base">Ketentuan Umum</p>,
|
||||||
|
general_requirements.map(value => (
|
||||||
|
<div className="flex">
|
||||||
|
<p key={value?.key} className="font-normal text-xs md:text-sm mb-0">{value?.key}.</p>
|
||||||
|
<p key={value?.key} className="font-normal text-xs md:text-sm mb-0">{value?.value}</p>
|
||||||
|
</div>
|
||||||
|
))
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div>
|
||||||
|
<div className="grid grid-cols-3 items-center bg-[#FF9400] w-full h-16 px-6 lg:px-10">
|
||||||
|
<div
|
||||||
|
className={'cursor-pointer'}
|
||||||
|
onClick={() => router.back()}>
|
||||||
|
<Image
|
||||||
|
src={'/assets/icons/arrow-left.svg'}
|
||||||
|
preview={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className={'col-span-2 lg:ml-10'}>
|
||||||
|
<Image
|
||||||
|
src={'/assets/images/cariparkir2.svg'}
|
||||||
|
preview={false} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="px-4">
|
||||||
|
<Tabs
|
||||||
|
defaultActiveKey="1"
|
||||||
|
centered={true}
|
||||||
|
items={items}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
})
|
||||||
|
PolicyTerms.getLayout = function Layout(page) {
|
||||||
|
return <DefaultLayout>
|
||||||
|
{page}
|
||||||
|
</DefaultLayout>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default PolicyTerms;
|
25
pages/setting.js
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
import React from "react";
|
||||||
|
import DefaultLayout from "../components/Layout/DefaultLayout";
|
||||||
|
import {Card, PageHeader} from "antd";
|
||||||
|
|
||||||
|
const Setting = () => {
|
||||||
|
return <div>
|
||||||
|
<PageHeader
|
||||||
|
style={{
|
||||||
|
}}
|
||||||
|
title={"Setting"}
|
||||||
|
>
|
||||||
|
</PageHeader>
|
||||||
|
<Card className={"flex text-gray-500"}>
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus aut recusandae velit! Consequatur corporis, eum fuga, harum incidunt laboriosam minus necessitatibus neque non nostrum pariatur tempore. Dignissimos impedit rem tempora!
|
||||||
|
</Card>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
Setting.getLayout = function Layout(page) {
|
||||||
|
return <DefaultLayout>
|
||||||
|
{page}
|
||||||
|
</DefaultLayout>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Setting;
|
73
pages/success-payment/index.js
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
import React from 'react';
|
||||||
|
import {Button, Image} from "antd";
|
||||||
|
import DefaultLayout from "../../components/Layout/DefaultLayout";
|
||||||
|
import {useRouter} from "next/router";
|
||||||
|
|
||||||
|
const SuccessPayment = () => {
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={'bg-white min-h-screen'}>
|
||||||
|
<div className="grid grid-cols-3 items-center bg-[#FF9400] w-full h-16 px-6 lg:px-10">
|
||||||
|
<div
|
||||||
|
className={'cursor-pointer'}
|
||||||
|
onClick={() => router.back()}>
|
||||||
|
<Image
|
||||||
|
src={'/assets/icons/arrow-left.svg'}
|
||||||
|
preview={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className={'col-span-2 lg:ml-10'}>
|
||||||
|
<Image
|
||||||
|
src={'/assets/images/cariparkir2.svg'}
|
||||||
|
preview={false}/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={'flex flex-col items-center gap-6'}>
|
||||||
|
<Image src={'/assets/images/hand-tree.png'} alt={'success'} preview={false}/>
|
||||||
|
|
||||||
|
<div className={'flex flex-col text-center'}>
|
||||||
|
<span className={'font-bold text-2xl'}>Selamat!</span>
|
||||||
|
<span className={'text-xl'}>Pembayaran LOCKEY Berhasil</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={'flex flex-col text-center'}>
|
||||||
|
<span className={'font-bold text-xl'}>Lippo Mall Kemang</span>
|
||||||
|
<span className={'text-[#FF6103] font-bold text-xl'}>GROUNDFLOOR - 05</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={'w-4/5 p-4 bg-white border-2 border-slate-200 rounded-lg mt-5'}>
|
||||||
|
<div className={'flex flex-col justify-center gap-4'}>
|
||||||
|
<div className={'flex flex-col'}>
|
||||||
|
<span className={'text-[#B7BAC2]'}>Waktu Kedatangan</span>
|
||||||
|
<div className={'flex flex-row items-center gap-2'}>
|
||||||
|
<Image src={'/assets/icons/clock.svg'} preview={false}/>
|
||||||
|
<span className={'text-[#0A7BC0] font-semibold'}>Pukul 13:33 - 14:33</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={'flex flex-col'}>
|
||||||
|
<span className={'text-[#B7BAC2]'}>Total Biaya Parkir</span>
|
||||||
|
<div className={'flex flex-row items-center gap-2'}>
|
||||||
|
<Image src={'/assets/icons/money.svg'} preview={false}/>
|
||||||
|
<span className={'text-[#FF6103]'}>Rp 99.000</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Button size={'large'}
|
||||||
|
className={'w-4/5 h-[41px] bg-black text-white mt-10 rounded-lg'}>Lanjutkan</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
SuccessPayment.getLayout = function Layout(page) {
|
||||||
|
return <DefaultLayout>
|
||||||
|
{page}
|
||||||
|
</DefaultLayout>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default SuccessPayment;
|
6
postcss.config.js
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
module.exports = {
|
||||||
|
plugins: {
|
||||||
|
tailwindcss: {},
|
||||||
|
autoprefixer: {},
|
||||||
|
},
|
||||||
|
};
|
BIN
public/assets/backgrounds/bg-pattern.png
Normal file
After Width: | Height: | Size: 390 KiB |
4
public/assets/backgrounds/cloud-left.svg
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="81" height="74" viewBox="0 0 81 74" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M-30.5203 24.8163C-39.9703 24.8163 -47.6301 32.4694 -47.6301 41.9081C-47.6301 45.0945 -46.7573 48.0766 -45.2368 50.6295H-48.8102C-51.1148 50.6295 -53 52.5134 -53 54.8148C-53 57.1171 -51.1148 59 -48.8102 59H-41.6853H-30.5203H6.44371H46.5899H56.48H56.4964H56.5031H76.8102C79.115 59 81 57.1171 81 54.8148C81 52.5134 79.115 50.6295 76.8102 50.6295H71.2132C72.7343 48.0766 73.6078 45.0945 73.6078 41.9081C73.6078 32.4694 65.9463 24.8163 56.4964 24.8163C53.8045 24.8163 51.2584 25.4382 48.9912 26.545C48.5048 22.0869 44.7242 18.617 40.131 18.617C38.0356 18.617 36.1101 19.3392 34.589 20.5472C30.794 8.63266 19.6289 0 6.44371 0C-8.88023 0 -21.4771 11.6581 -22.9448 26.5797C-25.2284 25.4517 -27.7997 24.8163 -30.5203 24.8163Z" fill="#FDD300" fill-opacity="0.15"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M-37.9421 63.8888H-33.1625C-31.702 63.8888 -30.5071 62.6945 -30.5071 61.2352C-30.5071 60.0687 -31.083 59.0713 -32.2096 58.718H-33.2064C-34.835 58.718 -36.1668 57.3864 -36.1668 55.7591C-36.1668 54.1318 -34.835 52.8002 -33.2064 52.8002H-30.6815C-31.7556 50.9944 -32.3728 48.8861 -32.3728 46.6329C-32.3728 39.9586 -26.9592 34.5477 -20.282 34.5477C-18.3604 34.5477 -16.5435 34.997 -14.9307 35.7939C-13.8934 25.2439 -4.99269 17 5.83447 17C15.1505 17 23.0403 23.104 25.7218 31.5284C26.7965 30.6749 28.1574 30.1642 29.6374 30.1642C32.8827 30.1642 35.5545 32.6171 35.8984 35.7699C37.4994 34.9874 39.2992 34.5477 41.2008 34.5477C47.8786 34.5477 53.2906 39.9586 53.2906 46.6329C53.2906 48.8861 52.674 50.9944 51.6002 52.8002H55.5552C57.1822 52.8002 58.5152 54.1318 58.5152 55.7591C58.5152 57.3864 57.1822 58.718 55.5552 58.718H44.2636C43.2119 59.0713 42.4494 60.0687 42.4494 61.2352C42.4494 62.6945 43.6825 63.8888 45.104 63.8888H52.4598C55.2421 63.8888 57.5183 66.1641 57.5183 68.9444V68.9453C57.5183 71.7256 55.2421 74 52.4598 74H-37.9421C-40.7239 74 -43 71.7256 -43 68.9453V68.9444C-43 66.1641 -40.7239 63.8888 -37.9421 63.8888ZM68.8061 63.8888H68.9425C71.7238 63.8888 74 66.1641 74 68.9444V68.9453C74 71.7256 71.7238 74 68.9425 74H68.8061C66.0247 74 63.7485 71.7256 63.7485 68.9453V68.9444C63.7485 66.1641 66.0247 63.8888 68.8061 63.8888Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
4
public/assets/backgrounds/cloud-right.svg
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="83" height="74" viewBox="0 0 83 74" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.4797 24.8163C13.0297 24.8163 5.36989 32.4694 5.36989 41.9081C5.36989 45.0945 6.24269 48.0766 7.76322 50.6295H4.18979C1.88516 50.6295 0 52.5134 0 54.8148C0 57.1171 1.88516 59 4.18979 59H11.3147H22.4797H59.4437H99.5899H109.48H109.496H109.503H129.81C132.115 59 134 57.1171 134 54.8148C134 52.5134 132.115 50.6295 129.81 50.6295H124.213C125.734 48.0766 126.608 45.0945 126.608 41.9081C126.608 32.4694 118.946 24.8163 109.496 24.8163C106.805 24.8163 104.258 25.4382 101.991 26.545C101.505 22.0869 97.7242 18.617 93.131 18.617C91.0356 18.617 89.1101 19.3392 87.589 20.5472C83.794 8.63266 72.6289 0 59.4437 0C44.1198 0 31.5229 11.6581 30.0552 26.5797C27.7716 25.4517 25.2003 24.8163 22.4797 24.8163Z" fill="#FDD300" fill-opacity="0.15"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.0579 63.8888H19.8375C21.298 63.8888 22.4929 62.6945 22.4929 61.2352C22.4929 60.0687 21.917 59.0713 20.7904 58.718H19.7936C18.165 58.718 16.8332 57.3864 16.8332 55.7591C16.8332 54.1318 18.165 52.8002 19.7936 52.8002H22.3185C21.2444 50.9944 20.6272 48.8861 20.6272 46.6329C20.6272 39.9586 26.0408 34.5477 32.718 34.5477C34.6396 34.5477 36.4565 34.997 38.0693 35.7939C39.1066 25.2439 48.0073 17 58.8345 17C68.1505 17 76.0403 23.104 78.7218 31.5284C79.7965 30.6749 81.1574 30.1642 82.6374 30.1642C85.8827 30.1642 88.5545 32.6171 88.8984 35.7699C90.4994 34.9874 92.2992 34.5477 94.2008 34.5477C100.879 34.5477 106.291 39.9586 106.291 46.6329C106.291 48.8861 105.674 50.9944 104.6 52.8002H108.555C110.182 52.8002 111.515 54.1318 111.515 55.7591C111.515 57.3864 110.182 58.718 108.555 58.718H97.2636C96.2119 59.0713 95.4494 60.0687 95.4494 61.2352C95.4494 62.6945 96.6825 63.8888 98.104 63.8888H105.46C108.242 63.8888 110.518 66.1641 110.518 68.9444V68.9453C110.518 71.7256 108.242 74 105.46 74H15.0579C12.2761 74 10 71.7256 10 68.9453V68.9444C10 66.1641 12.2761 63.8888 15.0579 63.8888ZM121.806 63.8888H121.942C124.724 63.8888 127 66.1641 127 68.9444V68.9453C127 71.7256 124.724 74 121.942 74H121.806C119.025 74 116.749 71.7256 116.749 68.9453V68.9444C116.749 66.1641 119.025 63.8888 121.806 63.8888Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
23
public/assets/backgrounds/flash-screen-2.svg
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
public/assets/backgrounds/flash-screen.png
Normal file
After Width: | Height: | Size: 212 KiB |
163
public/assets/backgrounds/not_available.svg
Normal file
|
@ -0,0 +1,163 @@
|
||||||
|
<svg width="390" height="336" viewBox="0 0 390 336" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_48_5905)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M200.956 55.0992H201.061C203.228 55.0992 205 56.8774 205 59.0496C205 61.2227 203.228 63 201.061 63H200.956C198.79 63 197.018 61.2227 197.018 59.0496C197.018 56.8774 198.79 55.0992 200.956 55.0992ZM-34.0621 55.0992H-21.977C-22.1702 54.3266 -22.2727 53.4248 -22.2727 52.3682C-22.2727 43.4582 -15.0726 36.2362 -6.19069 36.2362C-2.59655 36.2362 0.721821 37.4192 3.40064 39.4176C3.39611 39.2684 3.39431 39.1173 3.39431 38.9663C3.39431 30.0562 10.5935 22.8334 19.4754 22.8334C24.5455 22.8334 29.0667 25.1876 32.0141 28.865C34.2085 27.7384 36.6968 27.1023 39.3312 27.1023C40.2156 27.1023 41.0811 27.1751 41.9256 27.3125C41.9247 27.2424 41.9229 27.1724 41.9229 27.1023C41.9229 18.1923 49.1239 10.9694 58.0049 10.9694C61.2952 10.9694 64.3541 11.9613 66.9023 13.6622C70.4229 5.61847 78.4322 0 87.7514 0C98.6926 0 107.831 7.74612 110.015 18.0694C112.152 17.0156 114.557 16.4232 117.099 16.4232C124.67 16.4232 131.017 21.6713 132.727 28.7394C134.86 27.6911 137.257 27.1023 139.791 27.1023C147.401 27.1023 153.777 32.405 155.446 39.5287C157.732 35.8531 161.797 33.407 166.432 33.407C173.579 33.407 179.372 39.2184 179.372 46.3875C179.372 49.7401 178.105 52.7959 176.025 55.0992H190.033C192.199 55.0992 193.971 56.8774 193.971 59.0496C193.971 61.2227 192.199 63 190.033 63H-34.0621C-36.2283 63 -38 61.2227 -38 59.0496C-38 56.8774 -36.2283 55.0992 -34.0621 55.0992Z" fill="#C9E4F4"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M108.577 68.4588C105.947 68.4588 103.794 70.6059 103.794 73.2294V73.2303C103.794 75.8539 105.947 78 108.577 78H108.706C111.336 78 113.489 75.8539 113.489 73.2303V73.2294C113.489 70.6059 111.336 68.4588 108.706 68.4588H108.577ZM-4.25231 68.4588H0.267329C1.64883 68.4588 2.77873 67.3319 2.77873 65.9549C2.77873 64.577 1.92586 63.45 0.267329 63.45H-12C-11.8174 54.7378 -4.67921 47.7305 4.09939 47.7305C9.1758 47.7305 13.7018 50.0741 16.6537 53.7349C18.8509 52.6125 21.3414 51.9792 23.98 51.9792C24.8646 51.9792 25.7311 52.0517 26.5777 52.1885C26.5768 52.1187 26.5749 52.0499 26.5749 51.9792C26.5749 43.1103 33.7849 35.9191 42.6771 35.9191C45.9714 35.9191 49.0342 36.9065 51.5846 38.5997C55.1106 30.5932 63.1299 25 72.4607 25C83.4155 25 92.5647 32.7112 94.7519 42.988C96.8918 41.9389 99.2988 41.3492 101.845 41.3492C109.425 41.3492 115.781 46.5736 117.493 53.609C119.627 52.5663 122.028 51.9792 124.565 51.9792C131.859 51.9792 138.02 56.8169 140 63.45H74.2864C72.9058 63.45 71.7759 64.577 71.7759 65.9549C71.7759 67.3319 72.9421 68.4588 74.2864 68.4588H94.5693C97.2006 68.4588 99.3523 70.6059 99.3523 73.2294V73.2303C99.3523 75.8539 97.2006 78 94.5693 78H-4.25231C-6.88362 78 -9.03536 75.8539 -9.03536 73.2303V73.2294C-9.03536 70.6059 -6.88362 68.4588 -4.25231 68.4588Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M303.48 125.816C294.03 125.816 286.37 133.469 286.37 142.908C286.37 146.095 287.243 149.077 288.763 151.63H285.19C282.885 151.63 281 153.513 281 155.815C281 158.117 282.885 160 285.19 160H292.315H303.48H340.444H380.59H390.48H390.496H390.503H410.81C413.115 160 415 158.117 415 155.815C415 153.513 413.115 151.63 410.81 151.63H405.213C406.734 149.077 407.608 146.095 407.608 142.908C407.608 133.469 399.946 125.816 390.496 125.816C387.805 125.816 385.258 126.438 382.991 127.545C382.505 123.087 378.724 119.617 374.131 119.617C372.036 119.617 370.11 120.339 368.589 121.547C364.794 109.633 353.629 101 340.444 101C325.12 101 312.523 112.658 311.055 127.58C308.772 126.452 306.2 125.816 303.48 125.816Z" fill="#C9E4F4"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M296.058 164.889H300.838C302.298 164.889 303.493 163.694 303.493 162.235C303.493 161.069 302.917 160.071 301.79 159.718H300.794C299.165 159.718 297.833 158.386 297.833 156.759C297.833 155.132 299.165 153.8 300.794 153.8H303.318C302.244 151.994 301.627 149.886 301.627 147.633C301.627 140.959 307.041 135.548 313.718 135.548C315.64 135.548 317.456 135.997 319.069 136.794C320.107 126.244 329.007 118 339.834 118C349.151 118 357.04 124.104 359.722 132.528C360.797 131.675 362.157 131.164 363.637 131.164C366.883 131.164 369.555 133.617 369.898 136.77C371.499 135.987 373.299 135.548 375.201 135.548C381.879 135.548 387.291 140.959 387.291 147.633C387.291 149.886 386.674 151.994 385.6 153.8H389.555C391.182 153.8 392.515 155.132 392.515 156.759C392.515 158.386 391.182 159.718 389.555 159.718H378.264C377.212 160.071 376.449 161.069 376.449 162.235C376.449 163.694 377.683 164.889 379.104 164.889H386.46C389.242 164.889 391.518 167.164 391.518 169.944V169.945C391.518 172.726 389.242 175 386.46 175H296.058C293.276 175 291 172.726 291 169.945V169.944C291 167.164 293.276 164.889 296.058 164.889ZM402.806 164.889H402.942C405.724 164.889 408 167.164 408 169.944V169.945C408 172.726 405.724 175 402.942 175H402.806C400.025 175 397.749 172.726 397.749 169.945V169.944C397.749 167.164 400.025 164.889 402.806 164.889Z" fill="white"/>
|
||||||
|
<path d="M70.1055 146.918C65.4278 143.24 60.8875 138.725 59.6467 132.905C58.3286 126.727 61.0707 120.301 65.0505 115.393C70.93 108.14 79.6563 103.267 88.9121 102.061C93.2832 101.491 97.9449 101.651 101.759 99.4451C108.972 95.277 109.498 85.3802 111.381 77.267C114.506 63.8391 123.356 52.5053 132.759 42.4214C144.59 29.738 158.209 17.9423 174.718 12.6317C191.231 7.32504 211.16 9.7813 223.055 22.401C240.221 40.618 235.484 72.2271 252.654 90.4401C266.185 104.792 289.04 106.141 304.041 118.952C321.191 133.59 323.388 161.377 311.696 180.657C308.42 186.059 302.11 194.153 305.195 200.924C306.712 204.256 310.08 206.669 311.632 210.188C313.324 214.014 314.009 218.301 312.922 222.394C311.306 228.497 306.25 233.076 300.935 236.478C289.944 243.514 277.093 247.006 264.342 249.805C211.515 261.404 155.86 262.633 103.646 248.539C90.2179 244.915 75.8664 239.328 69.2436 227.099C66.8455 222.673 65.6643 217.645 65.4398 212.613C65.1018 205.041 66.9967 197.417 70.6792 190.809C74.4691 184.001 82.0528 179.754 85.4486 173.034C91.014 162.014 77.2199 152.512 70.1055 146.918Z" fill="#A18F5F" fill-opacity="0.5"/>
|
||||||
|
<path d="M318.199 167.57C316.97 172.201 315.115 176.66 312.633 180.738C311.046 183.35 308.749 186.587 307.142 190H70.0467C74.0149 183.698 81.104 179.512 84.3654 173.07C89.9844 161.981 76.0633 152.414 68.8895 146.782C64.1718 143.084 59.5926 138.537 58.3347 132.688C57.0109 126.462 59.7754 120 63.7915 115.061C64.1863 114.58 64.5883 114.103 64.998 113.647C70.8861 107.133 79.144 102.774 87.8637 101.644C92.2738 101.075 96.977 101.228 100.825 99.0121C108.103 94.8137 108.629 84.8583 110.537 76.6938C113.681 63.181 122.614 51.7715 132.101 41.6319C144.038 28.8642 157.782 16.994 174.434 11.6538C191.099 6.30556 211.205 8.77734 223.202 21.4809C240.521 39.8131 235.746 71.622 253.065 89.9502C266.717 104.396 289.779 105.75 304.909 118.642C318.573 130.28 322.83 150.167 318.199 167.57Z" fill="#C3ECFB"/>
|
||||||
|
<path d="M103.278 103.46V95.2291C103.278 94.7234 102.859 94.3049 102.354 94.3049C101.848 94.3049 101.429 94.7234 101.429 95.2291V103.46H97.8369V178.866H125.513V103.46H103.278Z" fill="#E1F5F4"/>
|
||||||
|
<path d="M223.834 52.3467V42.5285H219.369V34.3497C219.369 33.7567 218.898 33.2859 218.305 33.2859C217.712 33.2859 217.242 33.7567 217.242 34.3497V42.5285H197.222V52.3467H183.271V189.678H236.25V52.3467H223.834Z" fill="#E1F5F4"/>
|
||||||
|
<path d="M174.046 189.679H136.727V51.51L174.046 37.6809V189.679Z" fill="#E1F5F4"/>
|
||||||
|
<path d="M265.512 117.497V93.0825H244.76V117.497V126.129V155.514H289.7V117.497H265.512Z" fill="#E1F5F4"/>
|
||||||
|
<path d="M263.699 150.702V132.862H248.806V150.702H238.778V105.709H218.759L205.086 92.0546V66.8379H187.037V105.709V108.604V189.608H231.96H238.778H285.497V150.702H263.699Z" fill="#B8DCF2"/>
|
||||||
|
<path d="M128.67 166.482H117.753V125.57H106.243V166.482H86.0664V189.746H128.67H132.192H165.571V76.2531H128.67V166.482Z" fill="#B8DCF2"/>
|
||||||
|
<path d="M211.871 57.8024V40.6076C211.871 39.9624 211.348 39.4566 210.72 39.4566C210.075 39.4566 209.569 39.9798 209.569 40.6076V57.8024H180.952V189.746H217.853V57.8024H211.871Z" fill="#B8DCF2"/>
|
||||||
|
<path d="M165.606 58.9539C165.606 58.3087 165.082 57.8029 164.455 57.8029C163.809 57.8029 163.304 58.3261 163.304 58.9539V76.1487H165.623V58.9539H165.606Z" fill="#B8DCF2"/>
|
||||||
|
<path d="M288.585 189.835V185.754H284.399C281.417 181.464 276.465 178.656 270.832 178.656C266.681 178.656 262.88 180.208 259.967 182.737C259.13 182.441 258.258 182.266 257.317 182.266C254.579 182.266 252.19 183.661 250.76 185.754H238.343C235.814 182.615 231.943 180.61 227.601 180.61C223.258 180.61 219.387 182.615 216.858 185.754H174.83C173.418 183.644 171.011 182.266 168.291 182.266C167 182.266 165.78 182.598 164.698 183.138C161.036 179.685 156.101 177.558 150.677 177.558C145.498 177.558 140.79 179.493 137.197 182.65C136.43 182.406 135.628 182.249 134.773 182.249C132.035 182.249 129.646 183.644 128.216 185.737H120.648C118.119 182.598 114.247 180.592 109.905 180.592C105.563 180.592 101.691 182.598 99.1628 185.737H91.9082V189.817H288.585V189.835Z" fill="#56A35F"/>
|
||||||
|
<path d="M155.245 128.101L125.285 167.373L123.175 175.936C123.175 175.936 121.431 180.871 127.883 180.871H145.113H162.343C168.812 180.871 167.051 175.936 167.051 175.936L155.245 128.101Z" fill="#6CC777"/>
|
||||||
|
<path d="M147.799 97.9809C146.979 94.5978 145.096 94.3013 145.096 94.3013C145.096 94.3013 143.212 94.5978 142.393 97.9809L125.268 167.353L155.228 128.081L147.799 97.9809Z" fill="#90D96E"/>
|
||||||
|
<path d="M139.306 181.655V189.677H148.287V183.416L139.306 181.655Z" fill="#A18F5F"/>
|
||||||
|
<path d="M150.903 180.869H139.306V181.654L148.287 183.416V189.676H150.903V180.869Z" fill="#877850"/>
|
||||||
|
<path d="M132.646 144.95L110.883 173.48L109.348 179.706C109.348 179.706 108.075 183.298 112.766 183.298H125.27H137.773C142.465 183.298 141.192 179.706 141.192 179.706L132.646 144.95Z" fill="#6CC777"/>
|
||||||
|
<path d="M127.24 123.081C126.647 120.622 125.287 120.396 125.287 120.396C125.287 120.396 123.909 120.622 123.333 123.081L110.899 173.48L132.663 144.95L127.24 123.081Z" fill="#90D96E"/>
|
||||||
|
<path d="M121.085 183.854V189.679H127.59V185.127L121.085 183.854Z" fill="#A18F5F"/>
|
||||||
|
<path d="M129.491 183.279H121.085V183.854L127.59 185.127V189.679H129.491V183.279Z" fill="#877850"/>
|
||||||
|
<path d="M263.732 172.416V189.838H272.818V174.195L263.732 172.416Z" fill="#A18F5F"/>
|
||||||
|
<path d="M275.451 171.631H263.732V172.416L272.818 174.194V189.837H275.451V171.631Z" fill="#877850"/>
|
||||||
|
<path d="M258.205 135.097C258.205 131.103 261.432 127.877 265.425 127.877H287.398C287.52 127.877 287.66 127.895 287.782 127.895C287.59 124.093 284.434 121.058 280.58 121.058H258.606C254.613 121.058 251.387 124.285 251.387 128.278V164.412C251.387 168.266 254.421 171.405 258.223 171.614C258.223 171.492 258.205 171.37 258.205 171.23V135.097Z" fill="#63BD6E"/>
|
||||||
|
<path d="M280.597 171.631C284.59 171.631 287.817 168.405 287.817 164.411V128.278C287.817 128.156 287.799 128.016 287.799 127.894C287.677 127.894 287.555 127.877 287.415 127.877H265.442C261.449 127.877 258.223 131.103 258.223 135.096V171.23C258.223 171.352 258.24 171.491 258.24 171.613C258.362 171.613 258.484 171.631 258.624 171.631H280.597Z" fill="#56A35F"/>
|
||||||
|
<path d="M216.283 180.397V189.831H225.648V182.246L216.283 180.397Z" fill="#A18F5F"/>
|
||||||
|
<path d="M228.368 179.577H216.283V180.397L225.648 182.245V189.831H228.368V179.577Z" fill="#877850"/>
|
||||||
|
<path d="M228.56 86.7683H230.757C233.425 86.7683 235.954 87.3961 238.186 88.5122C235.466 83.0713 229.833 79.3219 223.328 79.3219H221.131C211.958 79.3219 204.512 86.7683 204.512 95.9412V163.779C204.512 169.568 207.476 174.661 211.958 177.625V103.388C211.958 94.2148 219.387 86.7683 228.56 86.7683Z" fill="#A4E678"/>
|
||||||
|
<path d="M223.327 180.397C232.5 180.397 239.947 172.95 239.947 163.777V95.9573C239.947 93.2892 239.319 90.7605 238.203 88.5283C235.97 87.4122 233.442 86.7844 230.774 86.7844H228.576C219.403 86.7844 211.957 94.2309 211.957 103.404V177.659C214.59 179.403 217.747 180.414 221.13 180.414H223.327V180.397Z" fill="#98D470"/>
|
||||||
|
<path d="M188.45 163.101V189.835H196.176V164.618L188.45 163.101Z" fill="#A18F5F"/>
|
||||||
|
<path d="M198.425 162.438H188.45V163.101L196.176 164.618V189.835H198.425V162.438Z" fill="#877850"/>
|
||||||
|
<path d="M178.981 140.256C178.981 128.955 187.055 119.538 197.762 117.445C196.315 117.166 194.815 117.009 193.298 117.009C180.463 117.009 170.052 127.42 170.052 140.256C170.052 153.091 180.463 163.502 193.298 163.502C194.833 163.502 196.315 163.345 197.762 163.066C187.055 160.99 178.981 151.573 178.981 140.256Z" fill="#63BD6E"/>
|
||||||
|
<path d="M216.527 140.255C216.527 128.955 208.453 119.538 197.746 117.445C187.056 119.538 178.964 128.955 178.964 140.255C178.964 151.556 187.038 160.99 197.746 163.065C208.453 160.99 216.527 151.573 216.527 140.255Z" fill="#56A35F"/>
|
||||||
|
<path d="M195.944 208.879C195.944 205.782 193.432 203.269 190.334 203.269H187.987C184.889 203.269 182.377 205.782 182.377 208.879V223.842C182.377 226.94 184.889 229.451 187.987 229.451H190.334C193.432 229.451 195.944 226.94 195.944 223.842V208.879Z" fill="#333333"/>
|
||||||
|
<path d="M273.06 208.879C273.06 205.782 270.548 203.269 267.45 203.269H265.102C262.005 203.269 259.492 205.782 259.492 208.879V223.842C259.492 226.94 262.005 229.451 265.102 229.451H267.45C270.548 229.451 273.06 226.94 273.06 223.842V208.879Z" fill="#333333"/>
|
||||||
|
<path d="M189.634 180.854C189.465 180.816 189.277 180.667 189.277 180.496V179.343C189.277 178.232 188.72 177.216 187.728 176.716C186.448 176.071 184.978 176.048 183.68 176.655L181.338 177.771C180.199 178.302 179.519 179.445 179.519 180.702V181.581C179.519 183.199 180.684 184.567 182.287 184.786L192.096 186.123L193.269 181.649L189.634 180.854Z" fill="url(#paint0_linear_48_5905)"/>
|
||||||
|
<path d="M266.178 180.854C266.346 180.816 266.395 180.667 266.395 180.496V179.343C266.395 178.232 267.092 177.216 268.084 176.716C269.364 176.071 270.905 176.048 272.202 176.655L274.558 177.771C275.697 178.302 276.39 179.445 276.39 180.702V181.581C276.39 183.199 275.246 184.567 273.643 184.786L263.846 186.123L262.607 181.649L266.178 180.854Z" fill="#FDC602"/>
|
||||||
|
<path d="M273.427 190.749C272.005 185.948 264.657 181.495 264.657 181.495C264.657 181.495 258.494 162.573 251.857 162.573C246.528 162.573 233.731 162.573 228.894 162.573C228.894 162.573 228.186 162.573 226.999 162.573C222.157 162.573 209.337 162.573 204.007 162.573C197.37 162.573 191.207 181.495 191.207 181.495C191.207 181.495 183.859 185.941 182.437 190.741C181.397 194.251 183.651 207.72 184.939 214.685C185.393 217.141 187.71 218.983 190.416 218.983H226.999H228.894H265.448C268.155 218.983 270.472 217.144 270.925 214.688C272.213 207.724 274.467 194.258 273.427 190.749Z" fill="#FFDF48"/>
|
||||||
|
<path d="M272.505 210.937C272.092 210.464 271.461 210.17 270.794 210.17H185.074C184.41 210.17 183.783 210.46 183.369 210.929C182.955 211.397 182.8 212.019 182.947 212.603L184.35 218.167C184.575 219.063 185.458 219.69 186.476 219.69H269.321C270.331 219.69 271.208 219.079 271.443 218.192L272.915 212.617C273.07 212.03 272.919 211.41 272.505 210.937Z" fill="#EBC613"/>
|
||||||
|
<path d="M204.781 202.259C204.781 202.259 202.648 195.86 199.962 195.307C197.275 194.753 185.898 192.384 185.661 194.359C185.424 196.334 183.133 203.129 189.928 203.76C196.722 204.393 205.876 204.913 204.781 202.259Z" fill="#FFF48F"/>
|
||||||
|
<path d="M251.086 202.259C251.086 202.259 253.219 195.86 255.905 195.307C258.592 194.753 269.969 192.384 270.206 194.359C270.442 196.334 272.734 203.129 265.939 203.76C259.145 204.393 249.991 204.913 251.086 202.259Z" fill="#FFF48F"/>
|
||||||
|
<path d="M249.551 196.739C249.33 196.399 248.953 196.13 248.548 196.13H207.316C206.896 196.13 206.507 196.413 206.29 196.773C206.074 197.133 206.062 197.612 206.259 197.983L208.579 202.447C209.44 204.07 211.126 205.174 212.964 205.174H243.259C245.218 205.174 246.994 203.948 247.793 202.158L249.64 197.946C249.805 197.576 249.772 197.079 249.551 196.739Z" fill="url(#paint1_linear_48_5905)"/>
|
||||||
|
<path d="M260.779 183.069C260.512 183.477 260.056 183.753 259.566 183.753H196.298C195.802 183.753 195.34 183.47 195.075 183.05C194.809 182.631 194.776 182.09 194.989 181.64C196.426 178.613 199.121 173.002 200.63 169.866C200.699 169.724 200.775 169.581 200.86 169.451C201.59 168.291 202.873 167.568 204.265 167.568H252.108C253.514 167.568 254.801 168.302 255.529 169.471C255.631 169.637 255.723 169.812 255.801 169.992L260.892 181.681C261.09 182.129 261.047 182.66 260.779 183.069Z" fill="#7D97F4"/>
|
||||||
|
<path d="M255.529 169.47C252.177 170.131 242.329 171.781 227.474 171.781C212.496 171.781 203.707 170.097 200.86 169.445C201.59 168.286 202.873 167.567 204.264 167.567H252.108C253.514 167.567 254.801 168.301 255.529 169.47Z" fill="#BDD0FB"/>
|
||||||
|
<path d="M203.762 193.555C203.703 193.555 203.644 193.534 203.599 193.491L195.398 185.731C195.303 185.641 195.299 185.49 195.389 185.395C195.479 185.3 195.629 185.296 195.724 185.385L203.925 193.146C204.019 193.237 204.024 193.386 203.934 193.481C203.888 193.53 203.824 193.555 203.762 193.555Z" fill="url(#paint2_linear_48_5905)"/>
|
||||||
|
<path d="M260.739 185.41C260.68 185.41 260.621 185.431 260.576 185.474L252.375 193.234C252.28 193.324 252.276 193.474 252.366 193.57C252.456 193.665 252.606 193.668 252.701 193.579L260.902 185.818C260.996 185.728 261 185.579 260.91 185.484C260.864 185.434 260.801 185.41 260.739 185.41Z" fill="url(#paint3_linear_48_5905)"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M146.035 242.89L146.214 245.363L70.8391 236.261L73.0054 233.843L146.035 242.89Z" fill="#E5E9F2"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M143.048 199.011L143.228 201.485L67.8528 192.383L70.0191 189.964L143.048 199.011Z" fill="#E5E9F2"/>
|
||||||
|
<g clip-path="url(#clip1_48_5905)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M98.8477 216.493C98.8477 213.981 100.207 211.655 102.463 210.549C104.92 209.345 107.961 208.003 109.321 208.003C110.659 208.003 113.735 209.303 116.269 210.493C118.689 211.628 120.161 214.093 120.161 216.766V216.766C120.161 220.972 116.573 224.284 112.38 223.947L105.194 223.37C101.61 223.082 98.8477 220.089 98.8477 216.493V216.493Z" stroke="#FFB500" stroke-width="4.03485"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M100.933 194.412C99.0367 194.504 97.5469 196.068 97.5469 197.967V211.689C97.5469 213.537 98.9623 215.078 100.804 215.235L101.076 215.258C100.665 214.817 100.439 214.336 100.439 213.833C100.439 211.712 104.454 209.993 109.408 209.993C114.362 209.993 118.377 211.712 118.377 213.833C118.377 214.875 117.408 215.82 115.834 216.512L117.575 216.66C119.652 216.836 121.435 215.198 121.435 213.114V201.397C121.435 200.241 120.874 199.157 119.93 198.49L113.306 193.81L100.933 194.412Z" fill="url(#paint4_linear_48_5905)"/>
|
||||||
|
<path d="M109.94 201.581C113.143 200.272 115.391 197.205 115.391 193.629C115.391 188.863 111.398 185 106.472 185C101.546 185 97.5522 188.863 97.5522 193.629C97.5522 193.629 97.0242 202.807 106.472 208.913C106.472 208.913 105.364 203.687 109.94 201.581Z" fill="#333333"/>
|
||||||
|
<path d="M101.32 193.737H99.7644V191.041H100.268V193.289H101.32V193.737ZM104.142 192.381C104.142 192.797 104.026 193.132 103.794 193.385C103.565 193.639 103.257 193.765 102.87 193.765C102.483 193.765 102.174 193.639 101.942 193.385C101.71 193.132 101.594 192.797 101.594 192.381C101.594 191.963 101.709 191.627 101.938 191.373C102.17 191.12 102.479 190.993 102.866 190.993C103.258 190.993 103.569 191.12 103.798 191.373C104.027 191.624 104.142 191.96 104.142 192.381ZM102.134 192.381C102.134 192.664 102.201 192.888 102.334 193.053C102.467 193.219 102.646 193.301 102.87 193.301C103.097 193.301 103.275 193.22 103.406 193.057C103.537 192.892 103.602 192.667 103.602 192.381C103.602 192.096 103.537 191.871 103.406 191.705C103.275 191.54 103.095 191.457 102.866 191.457C102.639 191.457 102.461 191.54 102.33 191.705C102.199 191.871 102.134 192.096 102.134 192.381ZM106.561 193.609C106.395 193.716 106.163 193.769 105.865 193.769C105.465 193.769 105.134 193.644 104.873 193.393C104.614 193.14 104.485 192.805 104.485 192.389C104.485 191.981 104.613 191.649 104.869 191.393C105.127 191.135 105.459 191.005 105.865 191.005C106.161 191.005 106.391 191.055 106.557 191.153V191.645C106.354 191.528 106.13 191.469 105.885 191.469C105.639 191.469 105.434 191.553 105.269 191.721C105.106 191.887 105.025 192.109 105.025 192.389C105.025 192.669 105.106 192.892 105.269 193.057C105.434 193.223 105.649 193.305 105.913 193.305C106.166 193.305 106.382 193.239 106.561 193.105V193.609ZM109.178 193.737H108.542L107.574 192.401L108.506 191.041H109.11L108.174 192.393L109.178 193.737ZM107.534 193.737H107.03V191.041H107.534V193.737ZM111.15 193.737H109.542V191.041H111.134V191.453H110.05V192.185H111.014V192.593H110.05V193.325H111.15V193.737ZM112.871 193.737H112.367V192.753L111.447 191.041H112.035L112.215 191.433C112.319 191.66 112.404 191.851 112.471 192.005C112.538 192.157 112.578 192.252 112.591 192.289L112.615 192.349C112.639 192.251 112.776 191.945 113.027 191.433L113.211 191.041H113.799L112.871 192.737V193.737Z" fill="#FFD300"/>
|
||||||
|
<path d="M100.873 195.928H100.327V197.737H100.084V195.928H99.5384V195.715H100.873V195.928ZM101.685 195.925H101.406V196.732H101.712C101.85 196.732 101.955 196.695 102.027 196.621C102.101 196.545 102.138 196.448 102.138 196.33C102.138 196.06 101.987 195.925 101.685 195.925ZM101.697 196.939H101.406V197.737H101.163V195.715H101.67C101.904 195.715 102.081 195.77 102.201 195.88C102.323 195.99 102.384 196.142 102.384 196.336C102.38 196.476 102.343 196.595 102.273 196.693C102.203 196.791 102.104 196.86 101.976 196.9L102.507 197.737H102.216L101.721 196.939H101.697ZM103.583 197.737H103.34V196.987L102.653 195.715H102.935L103.088 196.012C103.192 196.212 103.275 196.375 103.337 196.501C103.399 196.627 103.435 196.703 103.445 196.729L103.46 196.765C103.478 196.715 103.605 196.464 103.841 196.012L103.994 195.715H104.276L103.583 196.984V197.737ZM105.483 197.737H105.24L105.387 195.715H105.696L105.963 196.453L106.287 197.395C106.403 197.067 106.517 196.753 106.629 196.453L106.908 195.715H107.217L107.394 197.737H107.151L107.082 196.939L107.01 196.042C106.904 196.338 106.795 196.637 106.683 196.939L106.401 197.692H106.17L105.903 196.939L105.597 196.06C105.597 196.138 105.578 196.431 105.54 196.939L105.483 197.737ZM108.962 197.737H107.834V195.715H108.947V195.928H108.077V196.621H108.845V196.834H108.077V197.524H108.962V197.737ZM109.597 197.125H109.366V195.715H109.597V197.125ZM109.657 197.584C109.657 197.634 109.64 197.676 109.606 197.71C109.572 197.744 109.529 197.761 109.477 197.761C109.425 197.761 109.382 197.744 109.348 197.71C109.316 197.676 109.3 197.634 109.3 197.584C109.3 197.536 109.317 197.495 109.351 197.461C109.385 197.425 109.427 197.407 109.477 197.407C109.527 197.407 109.569 197.425 109.603 197.461C109.639 197.495 109.657 197.536 109.657 197.584Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M112.318 203.717C112.376 203.772 112.421 203.833 112.451 203.902C112.482 203.973 112.496 204.049 112.492 204.129L112.471 204.669L112.132 204.655L112.134 204.624C112.11 204.632 112.093 204.638 112.083 204.642C112.006 204.667 111.926 204.679 111.843 204.676C111.734 204.673 111.632 204.645 111.537 204.593C111.442 204.54 111.367 204.47 111.314 204.382C111.259 204.293 111.234 204.195 111.238 204.088C111.241 204.008 111.26 203.933 111.297 203.864C111.333 203.796 111.381 203.738 111.441 203.689C111.501 203.64 111.569 203.603 111.647 203.578C111.724 203.553 111.804 203.541 111.886 203.544C111.967 203.546 112.046 203.563 112.122 203.593C112.198 203.623 112.263 203.664 112.318 203.717ZM111.855 204.377C111.932 204.38 112 204.356 112.059 204.305C112.118 204.254 112.149 204.191 112.151 204.118C112.153 204.07 112.142 204.025 112.117 203.983C112.092 203.942 112.058 203.908 112.015 203.883C111.972 203.858 111.925 203.845 111.875 203.843C111.826 203.841 111.778 203.852 111.733 203.874C111.688 203.896 111.652 203.928 111.624 203.967C111.596 204.007 111.581 204.051 111.579 204.1C111.576 204.173 111.603 204.237 111.658 204.292C111.712 204.346 111.778 204.374 111.855 204.377Z" fill="#333333"/>
|
||||||
|
<path d="M113.465 203.219C113.438 203.203 113.409 203.194 113.376 203.193C113.343 203.192 113.313 203.198 113.286 203.213C113.259 203.227 113.237 203.247 113.219 203.274C113.202 203.299 113.193 203.328 113.192 203.36C113.191 203.391 113.198 203.42 113.213 203.448C113.228 203.475 113.249 203.497 113.275 203.514C113.301 203.53 113.331 203.538 113.363 203.539C113.396 203.541 113.427 203.534 113.454 203.519C113.482 203.504 113.504 203.484 113.521 203.459C113.537 203.434 113.546 203.405 113.547 203.372C113.548 203.34 113.542 203.311 113.527 203.284C113.511 203.257 113.491 203.235 113.465 203.219Z" fill="#333333"/>
|
||||||
|
<path d="M113.156 204.691L113.498 204.702L113.536 203.642L113.195 203.632L113.156 204.691Z" fill="#333333"/>
|
||||||
|
<path d="M113.039 203.626C112.723 203.63 112.559 203.783 112.549 204.084L112.527 204.67L112.87 204.682L112.891 204.096C112.895 203.982 112.941 203.925 113.028 203.924L113.048 203.925C113.076 203.927 113.099 203.935 113.116 203.947L113.128 203.635C113.105 203.631 113.082 203.628 113.058 203.626L113.039 203.626Z" fill="#333333"/>
|
||||||
|
<path d="M116.779 203.752C116.463 203.756 116.3 203.909 116.289 204.21L116.268 204.796L116.61 204.808L116.632 204.222C116.636 204.108 116.681 204.051 116.769 204.051L116.788 204.051C116.816 204.054 116.839 204.061 116.857 204.073L116.868 203.761C116.845 203.757 116.822 203.754 116.799 203.752L116.779 203.752Z" fill="#333333"/>
|
||||||
|
<path d="M119.03 203.828C118.714 203.832 118.551 203.985 118.54 204.286L118.519 204.872L118.861 204.884L118.882 204.298C118.887 204.184 118.932 204.127 119.019 204.126L119.039 204.127C119.067 204.129 119.09 204.137 119.108 204.149L119.119 203.837C119.096 203.833 119.073 203.83 119.05 203.828L119.03 203.828Z" fill="#333333"/>
|
||||||
|
<path d="M118.431 203.386C118.404 203.37 118.375 203.362 118.342 203.36C118.309 203.359 118.279 203.366 118.252 203.38C118.225 203.394 118.202 203.415 118.184 203.441C118.168 203.467 118.159 203.495 118.158 203.527C118.157 203.558 118.164 203.588 118.179 203.616C118.194 203.643 118.214 203.664 118.241 203.681C118.267 203.697 118.296 203.706 118.329 203.707C118.362 203.708 118.392 203.701 118.42 203.686C118.448 203.671 118.47 203.651 118.487 203.626C118.503 203.601 118.512 203.572 118.513 203.539C118.514 203.507 118.508 203.478 118.493 203.451C118.477 203.424 118.457 203.402 118.431 203.386Z" fill="#333333"/>
|
||||||
|
<path d="M118.025 203.794L117.624 203.78L117.255 204.169L117.25 204.169L117.28 203.359L116.937 203.348L116.884 204.814L117.227 204.826L117.245 204.307L117.629 204.839L118.057 204.854L117.612 204.234L118.025 203.794Z" fill="#333333"/>
|
||||||
|
<path d="M118.122 204.858L118.464 204.87L118.502 203.81L118.16 203.799L118.122 204.858Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M116.058 203.843C116.116 203.898 116.16 203.959 116.19 204.028C116.221 204.099 116.235 204.175 116.232 204.256L116.211 204.795L115.872 204.781L115.873 204.75C115.85 204.758 115.833 204.765 115.822 204.768C115.745 204.793 115.666 204.805 115.583 204.802C115.474 204.799 115.371 204.771 115.276 204.719C115.181 204.666 115.107 204.596 115.053 204.508C114.998 204.419 114.973 204.321 114.977 204.215C114.98 204.134 115 204.059 115.036 203.99C115.072 203.923 115.12 203.864 115.18 203.815C115.24 203.766 115.309 203.729 115.386 203.704C115.463 203.679 115.543 203.667 115.625 203.67C115.706 203.672 115.785 203.689 115.861 203.719C115.937 203.749 116.003 203.79 116.058 203.843ZM115.594 204.503C115.672 204.506 115.74 204.482 115.798 204.431C115.857 204.38 115.888 204.318 115.891 204.244C115.892 204.196 115.881 204.151 115.856 204.11C115.831 204.068 115.797 204.034 115.754 204.009C115.711 203.984 115.664 203.971 115.614 203.969C115.565 203.967 115.517 203.978 115.472 204C115.427 204.022 115.391 204.054 115.363 204.093C115.335 204.133 115.32 204.177 115.318 204.226C115.316 204.299 115.342 204.363 115.397 204.418C115.451 204.472 115.517 204.501 115.594 204.503Z" fill="#333333"/>
|
||||||
|
<path d="M111.183 204.377C111.144 204.314 111.12 204.246 111.111 204.174L111.11 204.173C111.08 204.207 111.049 204.234 111.015 204.254C110.952 204.293 110.885 204.311 110.812 204.308C110.74 204.306 110.674 204.283 110.614 204.241C110.555 204.198 110.508 204.143 110.474 204.074C110.44 204.006 110.424 203.935 110.427 203.862C110.429 203.789 110.45 203.719 110.488 203.653C110.527 203.587 110.577 203.535 110.64 203.496C110.705 203.458 110.772 203.44 110.844 203.442C110.915 203.444 110.982 203.467 111.043 203.51C111.071 203.529 111.1 203.556 111.129 203.592L111.383 203.356C111.338 203.304 111.286 203.26 111.227 203.222C111.115 203.15 110.992 203.112 110.856 203.107C110.721 203.102 110.595 203.132 110.477 203.197C110.359 203.262 110.264 203.352 110.193 203.467C110.122 203.582 110.084 203.709 110.078 203.85C110.073 203.99 110.102 204.12 110.165 204.239C110.228 204.358 110.316 204.454 110.429 204.526C110.542 204.599 110.666 204.637 110.8 204.641C110.936 204.646 111.062 204.616 111.179 204.552C111.212 204.533 111.244 204.512 111.274 204.489C111.239 204.456 111.209 204.418 111.183 204.377Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.638 204.205C114.291 204.351 114.359 204.743 114.359 204.743C113.671 204.265 113.736 203.581 113.736 203.581C113.75 203.226 114.058 202.947 114.426 202.959C114.793 202.971 115.08 203.269 115.067 203.625C115.057 203.892 114.88 204.115 114.638 204.205ZM114.396 204.04C114.397 204.04 114.398 204.04 114.399 204.04C114.642 204.041 114.844 203.855 114.852 203.618C114.861 203.377 114.667 203.175 114.418 203.167C114.168 203.158 113.959 203.347 113.95 203.589C113.948 203.644 113.957 203.697 113.974 203.746C114.033 203.912 114.193 204.034 114.385 204.04C114.388 204.04 114.392 204.04 114.396 204.04Z" fill="white"/>
|
||||||
|
<path d="M114.439 203.274C114.384 203.272 114.329 203.289 114.285 203.328C114.28 203.332 114.279 203.339 114.284 203.344C114.288 203.349 114.296 203.349 114.301 203.345C114.34 203.311 114.389 203.295 114.438 203.297C114.487 203.3 114.534 203.32 114.57 203.358C114.574 203.363 114.582 203.363 114.587 203.359C114.592 203.354 114.592 203.347 114.587 203.342C114.548 203.3 114.494 203.277 114.439 203.274Z" fill="#333333"/>
|
||||||
|
<path d="M114.434 203.378C114.407 203.376 114.38 203.385 114.359 203.405C114.354 203.41 114.354 203.418 114.358 203.423C114.362 203.428 114.37 203.428 114.375 203.423C114.391 203.408 114.412 203.401 114.433 203.402C114.453 203.403 114.473 203.412 114.488 203.429C114.492 203.434 114.5 203.434 114.505 203.43C114.51 203.425 114.51 203.418 114.506 203.413C114.487 203.391 114.46 203.379 114.434 203.378Z" fill="#333333"/>
|
||||||
|
<path d="M114.437 203.324C114.396 203.321 114.354 203.335 114.322 203.366C114.317 203.37 114.317 203.378 114.321 203.383C114.325 203.388 114.333 203.388 114.338 203.384C114.366 203.358 114.401 203.346 114.435 203.348C114.47 203.35 114.504 203.365 114.529 203.393C114.533 203.398 114.541 203.399 114.546 203.394C114.551 203.39 114.551 203.382 114.547 203.377C114.517 203.344 114.477 203.326 114.437 203.324Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M114.541 203.508C114.556 203.519 114.568 203.534 114.576 203.552C114.583 203.571 114.587 203.594 114.586 203.62C114.585 203.642 114.58 203.661 114.571 203.678C114.562 203.695 114.549 203.71 114.534 203.721C114.518 203.733 114.499 203.742 114.478 203.748C114.457 203.754 114.435 203.756 114.412 203.756L114.373 203.754L114.367 203.913L114.255 203.91L114.271 203.469L114.407 203.473C114.438 203.474 114.464 203.477 114.485 203.483C114.507 203.488 114.525 203.496 114.541 203.508ZM114.408 203.662C114.429 203.663 114.445 203.659 114.457 203.651C114.468 203.643 114.474 203.631 114.475 203.616C114.476 203.6 114.47 203.588 114.46 203.58C114.449 203.571 114.433 203.567 114.412 203.566L114.38 203.565L114.376 203.661L114.408 203.662Z" fill="#333333"/>
|
||||||
|
<rect width="9.32004" height="1.80025" rx="0.900126" transform="matrix(0.997729 0.0673586 -0.0722388 0.997387 110.141 205.773)" fill="#E5E9F2" stroke="white" stroke-width="1.04117"/>
|
||||||
|
<path d="M113.815 207.938C113.811 208.074 113.761 208.172 113.664 208.234C113.57 208.297 113.442 208.314 113.28 208.284C113.092 208.25 112.94 208.191 112.825 208.105L112.831 207.865C112.966 207.973 113.113 208.041 113.27 208.069C113.365 208.086 113.437 208.08 113.487 208.052C113.537 208.023 113.563 207.977 113.565 207.912C113.567 207.837 113.541 207.774 113.487 207.722C113.435 207.671 113.346 207.608 113.22 207.533C113.105 207.466 113.012 207.392 112.942 207.311C112.874 207.229 112.842 207.13 112.845 207.014C112.849 206.883 112.9 206.787 112.998 206.728C113.099 206.666 113.222 206.649 113.367 206.675C113.529 206.704 113.658 206.75 113.756 206.814L113.749 207.048C113.657 206.973 113.528 206.92 113.364 206.891C113.282 206.876 113.216 206.884 113.166 206.915C113.118 206.944 113.093 206.988 113.091 207.049C113.09 207.086 113.096 207.121 113.11 207.153C113.124 207.182 113.151 207.214 113.191 207.249C113.233 207.283 113.263 207.308 113.282 207.321C113.302 207.333 113.344 207.36 113.409 207.401C113.539 207.479 113.64 207.558 113.712 207.64C113.783 207.722 113.818 207.822 113.815 207.938ZM114.763 208.532L114.464 208.479L114.028 206.809L114.286 206.856L114.423 207.408C114.471 207.6 114.511 207.768 114.542 207.912C114.575 208.054 114.596 208.149 114.605 208.196L114.619 208.265C114.653 208.137 114.735 207.877 114.865 207.484L115.027 206.989L115.285 207.036L115.422 207.584L115.63 208.45C115.662 208.332 115.748 208.072 115.889 207.668L116.06 207.175L116.309 207.22L115.774 208.714L115.476 208.661L115.342 208.116L115.149 207.287C115.114 207.415 115.037 207.666 114.918 208.039L114.763 208.532ZM116.822 208.903L116.579 208.859L116.622 207.276L116.865 207.32L116.822 208.903ZM116.873 206.706C116.903 206.743 116.917 206.784 116.916 206.83C116.914 206.876 116.898 206.912 116.866 206.937C116.835 206.961 116.797 206.969 116.752 206.961C116.706 206.952 116.669 206.931 116.639 206.896C116.611 206.86 116.598 206.819 116.599 206.773C116.6 206.727 116.616 206.691 116.645 206.665C116.677 206.64 116.715 206.631 116.76 206.639C116.805 206.647 116.843 206.67 116.873 206.706ZM117.508 209.644L117.268 209.601L117.328 207.403L117.567 207.446L117.561 207.687C117.674 207.529 117.838 207.47 118.051 207.508C118.258 207.545 118.418 207.652 118.53 207.827C118.645 208 118.699 208.201 118.693 208.43C118.686 208.674 118.618 208.862 118.489 208.996C118.362 209.128 118.199 209.176 118 209.14C117.795 209.103 117.639 208.986 117.531 208.789L117.508 209.644ZM117.546 208.239C117.54 208.441 117.582 208.598 117.672 208.711C117.762 208.823 117.863 208.889 117.976 208.91C118.107 208.933 118.216 208.901 118.303 208.812C118.39 208.721 118.436 208.578 118.441 208.385C118.446 208.212 118.408 208.065 118.329 207.944C118.25 207.823 118.148 207.752 118.023 207.729C117.898 207.707 117.788 207.734 117.693 207.811C117.601 207.886 117.552 208.029 117.546 208.239ZM120.168 209.423C120.046 209.466 119.897 209.472 119.723 209.441C119.487 209.398 119.299 209.291 119.157 209.119C119.018 208.946 118.951 208.738 118.958 208.497C118.965 208.245 119.035 208.058 119.168 207.935C119.301 207.813 119.469 207.77 119.672 207.806C119.867 207.841 120.02 207.932 120.131 208.08C120.242 208.228 120.295 208.418 120.288 208.651C120.287 208.718 120.28 208.778 120.268 208.833L119.204 208.641C119.218 208.801 119.274 208.931 119.37 209.032C119.466 209.133 119.594 209.198 119.754 209.226C119.928 209.258 120.068 209.246 120.175 209.192L120.168 209.423ZM119.666 208.022C119.549 208.001 119.449 208.025 119.364 208.096C119.28 208.167 119.229 208.28 119.21 208.435L120.046 208.586L120.048 208.523C120.051 208.392 120.019 208.282 119.952 208.192C119.884 208.101 119.789 208.044 119.666 208.022ZM122.575 208.987L121.264 209.345L121.271 209.089L122.32 208.819L121.296 208.183L121.303 207.93L122.581 208.75L122.575 208.987ZM124.196 209.279L122.885 209.636L122.892 209.38L123.941 209.111L122.917 208.475L122.924 208.222L124.202 209.042L124.196 209.279Z" fill="#333333"/>
|
||||||
|
<ellipse rx="0.665716" ry="0.642948" transform="matrix(0.997729 0.0673589 -0.0722386 0.997387 110.782 206.748)" fill="#FDD300"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M100.138 221.622C101.687 220.71 103.462 220.25 105.259 220.296L115.155 220.549C117.583 220.611 119.517 223.541 117.69 225.14C116.889 225.841 112.829 227.069 112.829 227.069L98.2275 222.748L100.138 221.622Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M113.961 223.343C114.172 223.246 114.286 223.144 114.286 223.038C114.286 222.428 110.539 221.934 105.916 221.934C101.294 221.934 97.5469 222.428 97.5469 223.038C97.5469 223.095 97.5807 223.152 97.6458 223.208C97.2454 223.633 97 224.206 97 224.836C97 226.147 98.063 227.21 99.3743 227.21H112.114C113.425 227.21 114.488 226.147 114.488 224.836C114.488 224.27 114.29 223.751 113.961 223.343Z" fill="#535151"/>
|
||||||
|
<ellipse cx="105.534" cy="224.769" rx="0.614911" ry="0.593678" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M155.662 189.153H157.225V151.936H155.662V189.153Z" fill="#E5E9F2"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.953 154.448C148.875 154.448 148 153.572 148 152.496V138.952C148 137.875 148.875 137 149.953 137H163.497C164.573 137 165.448 137.875 165.448 138.952V152.496C165.448 153.572 164.573 154.448 163.497 154.448H149.953Z" fill="#3A3A3A"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M149.953 138.208C149.542 138.208 149.208 138.541 149.208 138.952V152.496C149.208 152.906 149.542 153.24 149.953 153.24H163.496C163.906 153.24 164.24 152.906 164.24 152.496V138.952C164.24 138.541 163.906 138.208 163.496 138.208H149.953ZM163.496 153.585H149.953C149.351 153.585 148.862 153.097 148.862 152.496V138.952C148.862 138.352 149.351 137.863 149.953 137.863H163.496C164.097 137.863 164.585 138.352 164.585 138.952V152.496C164.585 153.097 164.097 153.585 163.496 153.585Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M158.73 148.399C156.321 149.576 156.906 152.508 156.906 152.508C151.928 149.084 152.207 143.942 152.207 143.942C152.206 141.518 153.948 139.467 156.282 139.145C158.616 138.824 160.821 140.33 161.44 142.669C162.059 145.009 160.9 147.458 158.73 148.399ZM156.906 147.217H157.003V147.212C158.75 147.157 160.128 145.664 160.092 143.865C160.056 142.066 158.619 140.633 156.871 140.653C155.124 140.672 153.718 142.137 153.72 143.937C153.72 144.339 153.79 144.737 153.929 145.113C154.41 146.376 155.589 147.209 156.906 147.217Z" fill="#FFD400"/>
|
||||||
|
<path d="M156.928 142.57C156.681 142.558 156.44 142.651 156.263 142.825C156.223 142.869 156.223 142.936 156.263 142.979C156.304 143.018 156.368 143.018 156.41 142.979C156.541 142.846 156.719 142.771 156.905 142.771C157.091 142.771 157.269 142.846 157.4 142.979C157.441 143.018 157.506 143.018 157.547 142.979C157.586 142.936 157.586 142.869 157.547 142.825C157.382 142.662 157.16 142.57 156.928 142.57Z" fill="white"/>
|
||||||
|
<path d="M157.266 141.814C156.892 141.806 156.531 141.953 156.265 142.223C156.245 142.243 156.233 142.271 156.233 142.3C156.233 142.329 156.245 142.357 156.265 142.377C156.306 142.416 156.369 142.416 156.409 142.377C156.865 141.913 157.601 141.913 158.057 142.377C158.081 142.413 158.125 142.431 158.167 142.421C158.209 142.411 158.241 142.375 158.247 142.331C158.253 142.287 158.232 142.244 158.194 142.223C157.946 141.971 157.615 141.825 157.266 141.814Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M157.923 143.348C158.025 143.434 158.105 143.549 158.157 143.683C158.218 143.845 158.248 144.02 158.248 144.197C158.249 144.349 158.222 144.5 158.167 144.638C158.114 144.768 158.038 144.882 157.942 144.973C157.841 145.07 157.724 145.144 157.599 145.191C157.466 145.24 157.327 145.264 157.188 145.263H156.94V146.475H156.233V143.124H157.093C157.253 143.122 157.413 143.139 157.57 143.174C157.697 143.204 157.817 143.263 157.923 143.348ZM157.131 144.554C157.238 144.563 157.344 144.529 157.432 144.459C157.501 144.394 157.538 144.294 157.532 144.191C157.538 144.09 157.5 143.991 157.432 143.929C157.344 143.858 157.238 143.825 157.131 143.834H156.931V144.554H157.131Z" fill="white"/>
|
||||||
|
<rect x="299.939" y="265.098" width="5.08481" height="12.3799" transform="rotate(-30.8232 299.939 265.098)" fill="#95D8F3"/>
|
||||||
|
<rect x="280.648" y="265.424" width="5.58601" height="21.9835" transform="rotate(-30.8232 280.648 265.424)" fill="#95D8F3"/>
|
||||||
|
<rect x="290.35" y="270.783" width="13.1469" height="12.4098" transform="rotate(-30.8232 290.35 270.783)" fill="#95D8F3"/>
|
||||||
|
<rect x="291.168" y="277.957" width="6.20014" height="5.83017" transform="rotate(-30.8232 291.168 277.957)" fill="#7CB8E1"/>
|
||||||
|
<rect x="282.215" y="279.464" width="5.87441" height="9.12325" transform="rotate(-30.8232 282.215 279.464)" fill="#7CB8E1"/>
|
||||||
|
<path d="M271.762 224.776C273.532 224.933 274.796 226.997 274.586 229.385C274.376 231.773 272.771 233.581 271.001 233.424C269.232 233.266 267.967 231.203 268.176 228.814C268.386 226.426 269.992 224.618 271.762 224.776Z" fill="#FEB28B"/>
|
||||||
|
<path d="M277.177 239.285C277.177 239.285 284.575 242.924 289.87 256.369C291.519 260.552 293.161 271.67 291.135 272.879C289.109 274.088 280.879 279.12 276.31 278.655C272.016 278.218 266.48 277.102 264.09 273.096C261.7 269.09 256.035 261.758 252.839 258.836C249.452 255.742 246.26 253.412 244.639 252.067C243.352 251.003 246.517 246.912 254.008 251.374C257.087 253.208 260.623 254.411 265.022 251.423C269.422 248.434 277.177 239.285 277.177 239.285Z" fill="#FEB28B"/>
|
||||||
|
<rect x="273.723" y="276.974" width="19.1063" height="12.4322" transform="rotate(-30.8232 273.723 276.974)" fill="#FEB28B"/>
|
||||||
|
<path d="M249.072 249.433L259.456 262.791C259.456 262.791 258.991 255.662 255.976 252.547C253.327 249.811 249.072 249.433 249.072 249.433Z" fill="#FEB28B"/>
|
||||||
|
<path d="M267.325 271.876C267.925 272.882 271.423 275.677 273.082 274.687L288.031 265.768C289.689 264.779 290.55 263.154 289.95 262.147L277.626 241.493C277.025 240.486 275.186 240.472 273.528 241.461L258.579 250.38C256.92 251.37 256.06 252.996 256.661 254.003L267.325 271.876Z" fill="#F58D6F"/>
|
||||||
|
<path d="M287.72 263.791C289.38 262.799 289.922 260.648 288.931 258.985L268.613 224.933C267.621 223.269 265.469 222.723 263.806 223.713L248.858 232.632C247.198 233.625 246.656 235.775 247.647 237.439L267.966 271.494C268.96 273.155 271.109 273.7 272.771 272.711L287.72 263.791Z" fill="#333333"/>
|
||||||
|
<rect x="248.756" y="236.781" width="21.8344" height="38.0629" transform="rotate(-30.8232 248.756 236.781)" fill="white"/>
|
||||||
|
<path d="M254.931 231.072C254.987 231.166 255.077 231.233 255.183 231.26C255.288 231.287 255.4 231.271 255.494 231.216L259.408 228.88C259.502 228.824 259.57 228.733 259.597 228.627C259.624 228.521 259.607 228.409 259.551 228.315C259.495 228.222 259.404 228.154 259.298 228.128C259.192 228.101 259.081 228.118 258.987 228.174L255.074 230.509C254.88 230.625 254.817 230.876 254.933 231.071L254.931 231.072Z" fill="#4C4B4B"/>
|
||||||
|
<path d="M276.588 267.371C276.49 267.207 276.461 267.011 276.508 266.826C276.554 266.64 276.673 266.481 276.837 266.383L280.218 264.365C280.56 264.162 281.003 264.274 281.207 264.616C281.41 264.958 281.298 265.4 280.957 265.604L277.576 267.621C277.234 267.825 276.792 267.713 276.588 267.371L276.588 267.371Z" fill="#4C4B4B"/>
|
||||||
|
<rect x="248.754" y="236.781" width="21.8344" height="38.0629" transform="rotate(-30.8232 248.754 236.781)" fill="white"/>
|
||||||
|
<rect opacity="0.5" x="265.082" y="258.329" width="15.8751" height="4.88729" rx="2.44365" transform="rotate(-30.8232 265.082 258.329)" fill="black"/>
|
||||||
|
<path d="M266.871 256.565L276.312 250.932C277.47 250.241 278.969 250.621 279.661 251.78C280.352 252.939 279.974 254.438 278.816 255.129L269.376 260.762C268.218 261.452 266.719 261.073 266.027 259.914C265.336 258.755 265.714 257.255 266.871 256.565Z" fill="#231F20"/>
|
||||||
|
<path opacity="0.39" d="M274.141 242.531C273.058 240.716 269.126 241.062 265.366 243.306C261.605 245.55 259.431 248.843 260.516 250.661C261.601 252.479 265.528 252.127 269.289 249.882C273.051 247.638 275.225 244.346 274.141 242.531Z" fill="#7CB8E1"/>
|
||||||
|
<path d="M269.619 244.813C269.225 244.153 267.798 244.28 266.43 245.097C265.062 245.913 264.272 247.109 264.666 247.769C265.059 248.428 266.487 248.301 267.855 247.485C269.222 246.669 270.013 245.474 269.619 244.813Z" fill="#4192D4"/>
|
||||||
|
<ellipse cx="262.347" cy="238.256" rx="2.884" ry="2.88752" transform="rotate(-30.8232 262.347 238.256)" fill="white"/>
|
||||||
|
<path d="M291.932 254.385C292.21 255.107 292.19 255.909 291.876 256.616C291.562 257.323 290.981 257.875 290.259 258.152L284.91 260.209C284.188 260.487 283.385 260.467 282.678 260.152C281.97 259.837 281.417 259.253 281.14 258.53C280.862 257.809 280.882 257.008 281.194 256.302C281.507 255.596 282.087 255.044 282.807 254.767L288.161 252.708C289.663 252.131 291.349 252.88 291.93 254.382L291.932 254.385Z" fill="#FEB28B"/>
|
||||||
|
<path d="M284.91 260.209L290.259 258.152C290.981 257.875 291.562 257.323 291.876 256.616C292.19 255.91 292.21 255.107 291.932 254.385L281.144 258.536C281.724 260.038 283.409 260.787 284.91 260.209Z" fill="#F58D6F"/>
|
||||||
|
<path opacity="0.3" d="M285.351 259.197L284.636 259.473C284.109 259.676 283.523 259.661 283.006 259.432C282.49 259.202 282.086 258.777 281.883 258.249C281.68 257.722 281.695 257.136 281.924 256.621C282.153 256.105 282.578 255.702 283.104 255.5L283.82 255.225C284.917 254.803 285.405 255.225 285.966 256.68C286.527 258.136 286.448 258.776 285.351 259.197Z" fill="white"/>
|
||||||
|
<path d="M289.126 246.909C289.576 247.661 289.708 248.561 289.494 249.41C289.281 250.259 288.739 250.988 287.988 251.437L281.456 255.334C280.705 255.782 279.806 255.913 278.957 255.698C278.108 255.482 277.38 254.938 276.931 254.186C276.483 253.434 276.351 252.535 276.565 251.686C276.779 250.838 277.321 250.11 278.072 249.662L284.603 245.765C286.167 244.832 288.191 245.345 289.126 246.909Z" fill="#FEB28B"/>
|
||||||
|
<path d="M281.458 255.338L287.99 251.441C288.742 250.992 289.284 250.262 289.497 249.412C289.71 248.562 289.577 247.662 289.127 246.91L276.932 254.186C277.379 254.94 278.108 255.485 278.957 255.701C279.807 255.917 280.706 255.786 281.458 255.338Z" fill="#F58D6F"/>
|
||||||
|
<path opacity="0.3" d="M282.103 253.914L281.009 254.567C280.46 254.895 279.803 254.991 279.183 254.833C278.563 254.676 278.031 254.278 277.704 253.728C277.022 252.585 277.395 251.106 278.537 250.424L279.631 249.771C280.774 249.089 281.397 249.468 282.302 250.985C283.207 252.501 283.246 253.232 282.103 253.914Z" fill="white"/>
|
||||||
|
<path d="M284.907 238.683C285.53 239.378 285.852 240.292 285.801 241.223C285.751 242.155 285.333 243.028 284.638 243.65L278.197 249.42C276.752 250.714 274.532 250.589 273.237 249.142C272.615 248.447 272.294 247.533 272.344 246.602C272.395 245.67 272.813 244.798 273.508 244.176L279.948 238.405C280.642 237.783 281.555 237.463 282.485 237.514C283.416 237.566 284.288 237.986 284.91 238.681L284.907 238.683Z" fill="#FEB28B"/>
|
||||||
|
<path d="M278.198 249.42L284.638 243.65C285.333 243.028 285.751 242.155 285.801 241.224C285.852 240.292 285.53 239.378 284.907 238.683L273.237 249.142C274.532 250.589 276.752 250.714 278.198 249.42Z" fill="#F58D6F"/>
|
||||||
|
<path opacity="0.3" d="M278.729 247.667L277.571 248.705C277.065 249.161 276.398 249.397 275.717 249.359C275.037 249.322 274.399 249.015 273.945 248.506C273.49 247.998 273.255 247.331 273.292 246.651C273.329 245.97 273.635 245.333 274.142 244.879L275.301 243.841C276.356 242.896 277.087 243.165 278.342 244.566C279.597 245.966 279.782 246.719 278.729 247.667Z" fill="white"/>
|
||||||
|
<path d="M275.351 281.887C275.351 281.887 280.044 282.767 286.947 278.649C293.85 274.53 293.158 269.048 293.158 269.048L329.465 319.879C329.465 319.879 324.244 323.845 315.748 328.183C308.334 331.968 296.418 325.446 296.418 325.446L275.351 281.887Z" fill="#333333"/>
|
||||||
|
<path d="M300.449 258.995C300.129 259.427 299.902 259.921 299.782 260.445C298.21 260.02 296.538 260.599 295.567 261.906C295.21 262.388 294.969 262.946 294.861 263.537C293.399 263.296 291.926 263.892 291.043 265.082C290.776 265.444 290.287 266.232 290.16 266.638L278.311 258.83C276.542 257.521 271.656 253.702 269.63 256.443C267.605 259.183 272.879 262.476 274.649 263.786L295.219 279.018L291.206 280.324C291.176 280.327 291.146 280.33 291.117 280.335C290.068 280.492 287.338 280.377 284.132 281.284C281.548 282.014 277.69 285.694 281.355 286.36C284.646 286.956 288.185 286.679 290.564 286.966C293.642 287.336 297.74 287.771 300.415 287.924C302.372 288.036 304.219 288.14 305.691 288.306C306.089 288.35 306.829 288.473 307.661 288.62C310.184 289.067 312.741 288.047 314.263 285.986L319.565 278.813C321.366 276.377 320.955 273.278 319.455 270.642C318.188 268.414 317.473 267.209 314.633 264.564C311.793 261.919 306.013 258.181 306.013 258.181C304.25 256.87 301.761 257.232 300.447 258.992L300.449 258.995Z" fill="#FEB28B"/>
|
||||||
|
<path d="M309.116 285.68L319.137 272.123L327.95 278.649L317.929 292.206L309.116 285.68Z" fill="#FEB28B"/>
|
||||||
|
<path opacity="0.3" d="M274.008 256.909L273.054 256.203C272.589 255.857 272.006 255.71 271.434 255.795C270.861 255.88 270.346 256.19 270.003 256.656C269.661 257.12 269.516 257.701 269.602 258.272C269.688 258.843 269.997 259.357 270.461 259.7L271.416 260.407C272.385 261.121 272.978 260.84 273.926 259.562C274.875 258.284 274.972 257.621 274.008 256.909Z" fill="white"/>
|
||||||
|
<path opacity="0.3" d="M285.84 286.79C285.84 286.79 285.167 285.232 283.727 285.18C282.577 285.133 280.972 285.144 280.5 285.199C280.027 285.253 280.445 286.403 280.445 286.403L285.84 286.79Z" fill="white"/>
|
||||||
|
<path d="M323.172 272.272C323.172 272.272 322.878 279.557 319.586 284.875C317.59 288.1 313.755 292.097 313.755 292.097L334.826 317.393C334.826 317.393 339.365 315.685 345.872 309.879C352.38 304.074 354.179 292.781 354.179 292.781L323.172 272.272Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M267.476 241.782C265.829 244.171 267.914 246.419 267.914 246.419C261.44 246.202 259.003 241.524 259.003 241.524C257.602 239.176 258.444 236.092 260.883 234.636C263.323 233.181 266.437 233.904 267.838 236.252C268.889 238.014 268.678 240.19 267.476 241.782ZM265.21 241.729C265.217 241.724 265.225 241.719 265.233 241.714C266.815 240.705 267.347 238.664 266.415 237.102C265.465 235.51 263.354 235.019 261.699 236.006C260.045 236.993 259.474 239.085 260.424 240.677C260.642 241.042 260.921 241.349 261.242 241.593C262.319 242.416 263.865 242.534 265.14 241.773C265.164 241.759 265.187 241.744 265.21 241.729Z" fill="#FCD205"/>
|
||||||
|
<path d="M262.186 236.616C261.833 236.819 261.56 237.159 261.447 237.585C261.434 237.632 261.463 237.681 261.51 237.695C261.557 237.707 261.606 237.68 261.619 237.632C261.719 237.253 261.962 236.952 262.275 236.771C262.59 236.59 262.973 236.529 263.353 236.633C263.401 236.647 263.449 236.618 263.462 236.571C263.474 236.524 263.446 236.474 263.398 236.461C262.971 236.344 262.539 236.413 262.186 236.616Z" fill="#515257"/>
|
||||||
|
<path d="M262.665 237.444C262.491 237.544 262.354 237.71 262.297 237.918C262.284 237.966 262.312 238.015 262.36 238.027C262.408 238.04 262.457 238.011 262.47 237.963C262.515 237.803 262.62 237.675 262.753 237.598C262.888 237.52 263.051 237.494 263.212 237.536C263.26 237.548 263.309 237.519 263.323 237.472C263.336 237.424 263.308 237.376 263.259 237.363C263.052 237.309 262.839 237.343 262.665 237.444Z" fill="#515257"/>
|
||||||
|
<path d="M262.407 237.07C262.144 237.221 261.937 237.472 261.851 237.785C261.837 237.832 261.865 237.88 261.912 237.893C261.959 237.904 262.008 237.877 262.02 237.829C262.095 237.563 262.27 237.351 262.495 237.221C262.719 237.092 262.99 237.047 263.258 237.117C263.305 237.128 263.354 237.1 263.367 237.053C263.38 237.006 263.353 236.958 263.305 236.947C262.991 236.865 262.67 236.919 262.407 237.07Z" fill="#515257"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M264.053 237.773C264.196 237.781 264.33 237.828 264.456 237.914C264.583 237.999 264.696 238.128 264.798 238.298C264.882 238.438 264.929 238.58 264.94 238.724C264.95 238.867 264.931 239.008 264.879 239.145C264.827 239.284 264.747 239.415 264.638 239.536C264.527 239.66 264.398 239.765 264.252 239.852L263.999 240.004L264.609 241.027L263.887 241.458L262.194 238.621L263.072 238.097C263.268 237.98 263.444 237.896 263.6 237.843C263.758 237.788 263.909 237.765 264.053 237.773ZM263.846 239.278C263.979 239.199 264.065 239.111 264.105 239.015C264.144 238.921 264.134 238.824 264.075 238.724C264.016 238.627 263.937 238.573 263.835 238.563C263.733 238.554 263.615 238.589 263.482 238.668L263.275 238.792L263.639 239.402L263.846 239.278Z" fill="#515257"/>
|
||||||
|
<path d="M229.666 215.287C232.946 202.615 245.842 195.096 258.489 198.482" stroke="#0A7BC0" stroke-width="3.64583" stroke-linecap="round"/>
|
||||||
|
<path d="M237.454 219.04C239.501 209.488 248.715 204.128 258.054 207.057" stroke="#0A7BC0" stroke-width="3.64583" stroke-linecap="round"/>
|
||||||
|
<path d="M244.046 220.786C245.376 215.229 250.904 212.009 256.401 213.588" stroke="#0A7BC0" stroke-width="3.64583" stroke-linecap="round"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_48_5905" x1="197.338" y1="108.606" x2="190.582" y2="153.324" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#FDC602"/>
|
||||||
|
<stop offset="1" stop-color="#FDC602"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint1_linear_48_5905" x1="228.159" y1="205.835" x2="229.587" y2="258.675" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#FDC602"/>
|
||||||
|
<stop offset="1" stop-color="#E9605A"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint2_linear_48_5905" x1="195.324" y1="189.439" x2="203.999" y2="189.439" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#FFD300"/>
|
||||||
|
<stop offset="0.432292" stop-color="#FCDA92"/>
|
||||||
|
<stop offset="0.994792" stop-color="#FDE513"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint3_linear_48_5905" x1="252.301" y1="189.526" x2="260.975" y2="189.526" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#FFD300"/>
|
||||||
|
<stop offset="0.432292" stop-color="#FCDA92"/>
|
||||||
|
<stop offset="0.994792" stop-color="#FDE513"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint4_linear_48_5905" x1="103.519" y1="205.241" x2="103.519" y2="216.673" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#FFD300"/>
|
||||||
|
<stop offset="1" stop-color="#FFB500"/>
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath id="clip0_48_5905">
|
||||||
|
<rect width="390" height="336" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
<clipPath id="clip1_48_5905">
|
||||||
|
<rect width="24.4831" height="42.3975" fill="white" transform="translate(97 185)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 52 KiB |
4
public/assets/icons/arrow-left.svg
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M9.57 6.42999L3.5 12.5L9.57 18.57" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M20.5 12.5H3.67" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 385 B |
9
public/assets/icons/cariparkir.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<svg width="40" height="41" viewBox="0 0 40 41" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.946167" width="40" height="39.1076" rx="19.5538" fill="#FFD300"/>
|
||||||
|
<path d="M20.0021 32.054C20.0021 32.054 18.9588 27.0035 23.2731 24.9692C26.2934 23.7044 28.4127 20.7397 28.4127 17.2844C28.4127 12.6797 24.6469 8.94634 20.0021 8.94634C15.3573 8.94634 11.5924 12.6797 11.5924 17.2844C11.5924 17.2844 11.0948 26.153 20.0021 32.054" fill="white"/>
|
||||||
|
<path d="M20.1807 22.9349C20.1212 22.9368 20.0616 22.9397 20.002 22.9397C17.5744 22.9397 15.5023 21.4349 14.679 19.3159C14.434 18.6854 14.2986 18.0006 14.2986 17.2845C14.2986 14.1626 16.852 11.6302 20.002 11.6302C23.152 11.6302 25.7055 14.1626 25.7055 17.2845C25.7055 20.3483 23.2481 22.8406 20.1807 22.9349Z" fill="#FFD300"/>
|
||||||
|
<path d="M20.3344 13.0101C19.6437 12.9996 18.9491 13.253 18.4141 13.7663C18.3545 13.8235 18.3535 13.9177 18.4112 13.9777C18.4688 14.0358 18.5639 14.0377 18.6244 13.9806C19.1 13.5235 19.7158 13.2996 20.3296 13.3082C20.9464 13.3177 21.5583 13.5587 22.0223 14.032C22.0799 14.092 22.175 14.093 22.2346 14.0358C22.2942 13.9787 22.2961 13.8835 22.2375 13.8244C21.7168 13.292 21.0271 13.0216 20.3344 13.0101Z" fill="#515257"/>
|
||||||
|
<path d="M20.3181 14.3914C19.9828 14.3857 19.6446 14.5076 19.3853 14.7581C19.3257 14.8152 19.3238 14.9095 19.3814 14.9686C19.44 15.0276 19.5351 15.0295 19.5947 14.9714C19.7955 14.779 20.0548 14.6857 20.3133 14.6886C20.5726 14.6933 20.8282 14.7952 21.0232 14.9943C21.0808 15.0524 21.1769 15.0533 21.2365 14.9971C21.296 14.939 21.297 14.8457 21.2384 14.7857C20.9876 14.5295 20.6533 14.3962 20.3181 14.3914Z" fill="#515257"/>
|
||||||
|
<path d="M20.3284 13.7012C19.8154 13.6926 19.2976 13.8793 18.9009 14.2621C18.8413 14.3193 18.8394 14.4136 18.897 14.4736C18.9547 14.5317 19.0498 14.5336 19.1093 14.4755C19.4485 14.1507 19.8865 13.9926 20.3246 13.9983C20.7617 14.006 21.194 14.1774 21.5235 14.5136C21.5811 14.5717 21.6762 14.5736 21.7358 14.5155C21.7954 14.4583 21.7973 14.364 21.7387 14.306C21.3534 13.9117 20.8414 13.7088 20.3284 13.7012Z" fill="#515257"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.7222 15.9875C21.922 16.1266 22.0767 16.3151 22.1852 16.5542C22.2938 16.7932 22.3476 17.0847 22.3476 17.4285C22.3476 17.7094 22.2938 17.9628 22.1852 18.1856C22.0767 18.4085 21.9268 18.5989 21.7337 18.757C21.5387 18.918 21.3101 19.0409 21.0478 19.1237C20.7798 19.2094 20.5022 19.2523 20.2159 19.2523H19.7192V21.3132H18.3022V15.5999H20.0247C20.409 15.5999 20.7366 15.6304 21.0075 15.6894C21.2832 15.7485 21.5214 15.8475 21.7222 15.9875ZM20.1256 18.0409C20.3859 18.0409 20.5867 17.9866 20.727 17.8799C20.8653 17.7751 20.9345 17.6218 20.9345 17.4209C20.9345 17.2247 20.8653 17.0742 20.727 16.9694C20.5867 16.8656 20.3859 16.8123 20.1256 16.8123H19.7192V18.0409H20.1256Z" fill="#515257"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
3
public/assets/icons/clock.svg
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.75293 9.49969C0.75293 4.48579 4.8177 0.420898 9.83173 0.420898C14.8457 0.420898 18.9108 4.48579 18.9108 9.49969C18.9108 14.5136 14.8457 18.5788 9.83173 18.5788C4.8177 18.5788 0.75293 14.5136 0.75293 9.49969ZM9.90769 11.2265H13.7567C14.1035 11.2265 14.3844 10.9453 14.3844 10.5986C14.3844 10.2518 14.1033 9.97066 13.7565 9.97066H10.4596V4.18866C10.4596 3.8419 10.1784 3.56075 9.83167 3.56075C9.4849 3.56075 9.20375 3.8419 9.20375 4.18866V10.5986C9.20375 10.9453 9.4849 11.2265 9.83167 11.2265C9.83892 11.2265 9.84587 11.2255 9.85281 11.2246C9.85838 11.2239 9.86394 11.2231 9.86968 11.2228C9.87559 11.2231 9.88133 11.2239 9.88708 11.2246C9.89386 11.2256 9.90064 11.2265 9.90769 11.2265Z" fill="#E5E9F2"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 858 B |
7
public/assets/icons/email.svg
Normal file
After Width: | Height: | Size: 56 KiB |
9
public/assets/icons/gopay.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<svg width="82" height="18" viewBox="0 0 82 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M8.83768 0.5C13.7177 0.5 17.6742 4.30502 17.6742 8.99811C17.6742 13.6912 13.7177 17.4962 8.83768 17.4962C3.95654 17.4962 0 13.6912 0 8.99811C0 4.30502 3.95654 0.5 8.83768 0.5Z" fill="#00AED6"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.9936 8.73543C13.9257 7.65335 12.9688 6.82405 11.8428 6.87283H6.26073C6.05712 6.87283 5.89245 6.71429 5.89245 6.51805C5.89245 6.32292 6.05712 6.16438 6.26073 6.16438H11.9163C11.884 5.43153 11.3633 4.8018 10.6278 4.60667C8.97891 4.32284 7.29104 4.32284 5.64211 4.60667C4.70527 4.82841 4.00431 5.57788 3.87524 6.49698C3.61711 8.16445 3.61711 9.85853 3.87524 11.5249C4.07218 12.4983 4.8755 13.2511 5.89245 13.4163C7.93637 13.6636 10.0048 13.6636 12.0487 13.4163C12.9599 13.2389 13.6486 12.5194 13.7577 11.6313C13.9446 10.6767 14.0236 9.70553 13.9936 8.73543ZM12.1526 9.92605V10.2376C12.1526 10.4327 11.988 10.5913 11.7843 10.5913C11.5807 10.5913 11.4161 10.4327 11.4161 10.2376V9.92605C11.297 9.82627 11.2303 9.68103 11.2325 9.52914C11.2325 9.23534 11.4795 8.99808 11.7843 8.99808C12.0892 8.99808 12.3362 9.23534 12.3362 9.52914C12.3351 9.67993 12.2683 9.82406 12.1526 9.92605Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M40.0618 3.05066C36.8363 3.05066 34.5098 5.21039 34.5098 8.04309C34.5098 10.868 36.814 13.0422 40.0618 13.0422C43.3096 13.0422 45.615 10.8614 45.615 8.04309C45.615 5.22369 43.2874 3.05066 40.0618 3.05066ZM40.0617 5.32314C41.6116 5.33533 42.8577 6.55268 42.8455 8.04276H42.8677C42.8711 8.12702 42.8711 8.21238 42.8666 8.29664C42.7876 9.71022 41.5315 10.7956 40.0617 10.7191H40.0183C38.4684 10.708 37.2222 9.48959 37.2345 7.99952C37.2467 6.50944 38.5118 5.31205 40.0617 5.32314Z" fill="black"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.1986 4.1607V3.04203H32.8277V12.773C32.8277 15.4704 30.6781 17.496 27.5405 17.496C25.6612 17.5592 23.8376 16.8785 22.4958 15.6124L24.286 13.9549C25.145 14.7232 26.2977 15.1123 27.467 15.0314C28.9991 15.0314 30.1618 14.0824 30.1618 12.7863V11.8306C29.324 12.6267 28.1791 13.0502 27.0031 12.9992C24.1458 13.0247 21.8082 10.8173 21.7815 8.06994C21.7559 5.32261 24.0501 3.07418 26.9074 3.04979C28.1157 2.97773 29.3029 3.37796 30.1986 4.1607ZM27.2841 10.6826C28.8518 10.6826 30.089 9.72687 30.089 8.55831V7.46736C30.089 6.36976 28.8674 5.39966 27.3942 5.39966C25.5829 5.39966 24.4046 6.46178 24.4046 8.00619C24.3946 8.14699 24.3968 8.28779 24.4113 8.42749C24.557 9.81335 25.8432 10.8234 27.2841 10.6826Z" fill="black"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.8702 3.33269H47.2344L47.2566 16.7877H50.0026V12.057C50.876 12.7277 51.9653 13.0803 53.0813 13.0559C55.7995 12.9572 57.9791 10.8618 58.0815 8.24751C58.1894 5.48909 55.9508 3.16749 53.0813 3.06328C51.913 3.01338 50.7714 3.4103 49.9069 4.16864H49.8702V3.33269ZM49.9805 7.45584C49.9805 6.38596 51.1799 5.40144 52.653 5.40144H52.6675C52.7632 5.39701 52.8589 5.39701 52.9534 5.40144C54.4855 5.47794 55.6627 6.73298 55.5837 8.20532C55.5047 9.67766 54.1996 10.8096 52.6675 10.7342C51.1654 10.7342 49.9805 9.79185 49.9805 8.65212V7.45584Z" fill="black"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M65.6975 6.16504C65.6975 6.64621 65.1601 6.89456 63.3554 7.12849C60.2623 7.53871 59.025 8.50881 59.025 10.2018C59.025 11.8936 60.5349 13.0345 62.7079 13.0345C63.9651 13.1187 65.1924 12.6376 66.0291 11.7318H66.0658V12.7795H68.5325V6.76706C68.5325 4.47207 66.7512 3.05627 63.8784 3.05627C61.3382 3.05627 59.2765 4.42994 58.9082 6.35574L61.4995 6.87349C61.7688 5.80139 62.8091 5.07631 63.9518 5.16611C65.0132 5.16611 65.6975 5.54196 65.6975 6.16504ZM65.8824 8.12747H65.9191L65.8968 9.2539C65.8968 10.1531 64.674 10.8615 63.0907 10.8615C62.0527 10.8615 61.5742 10.5921 61.5742 10.04C61.5742 9.48784 62.1706 9.18295 63.7828 8.89247C65.1458 8.6663 65.6387 8.46784 65.8824 8.12747Z" fill="black"/>
|
||||||
|
<path d="M73.5049 12.2482L68.9609 3.33215H71.9884L74.9703 9.50756H75.0148L77.9599 3.33215H81.0019L74.197 16.7872H71.1706L73.5049 12.2482Z" fill="black"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.0 KiB |
7
public/assets/icons/money.svg
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<svg width="19" height="11" viewBox="0 0 19 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M18.2174 0.0527344H1.06407C0.898116 0.0527344 0.75293 0.199147 0.75293 0.366413V10.6338C0.75293 10.8011 0.898116 10.9475 1.06407 10.9475H18.2174C18.3834 10.9475 18.5286 10.8011 18.5286 10.6338V0.366413C18.5286 0.199147 18.3834 0.0527344 18.2174 0.0527344Z" fill="#E5E9F2"/>
|
||||||
|
<path d="M16.3909 3.89981C15.7013 3.88016 15.1371 3.369 15.1162 2.72023C15.1162 2.50397 14.9281 2.34668 14.6983 2.34668H4.60511C4.37524 2.34668 4.20805 2.50397 4.18717 2.72023C4.14538 3.369 3.58117 3.88016 2.89157 3.89981C2.6617 3.89981 2.47363 4.07674 2.47363 4.293V7.28125C2.47363 7.4975 2.6617 7.67444 2.89157 7.67444C3.60205 7.69408 4.16626 8.20524 4.18717 8.85402C4.18717 9.07027 4.37524 9.22757 4.60511 9.22757H14.6773C14.9072 9.22757 15.0744 9.07027 15.0953 8.85402C15.1371 8.20524 15.7013 7.69412 16.3909 7.67444C16.6207 7.67444 16.8088 7.4975 16.8088 7.28125V4.293C16.8088 4.07674 16.6207 3.89981 16.3909 3.89981Z" fill="#F9FAFC"/>
|
||||||
|
<path d="M14.2634 4.64941C13.8041 4.64941 13.4492 5.02207 13.4492 5.50432C13.4492 5.98657 13.825 6.35923 14.2634 6.35923C14.7018 6.35923 15.0776 5.96467 15.0776 5.50432C15.0776 5.04397 14.7227 4.64941 14.2634 4.64941Z" fill="#E5E9F2"/>
|
||||||
|
<path d="M5.49363 5.57659C5.49363 5.11628 5.13872 4.72168 4.67943 4.72168C4.22015 4.72168 3.86523 5.09434 3.86523 5.57659C3.86523 6.05884 4.22015 6.4315 4.67943 6.4315C5.13872 6.4315 5.49363 6.03694 5.49363 5.57659Z" fill="#E5E9F2"/>
|
||||||
|
<path d="M9.83969 4.12711C9.67777 4.08663 9.51589 4.06641 9.33375 4.06641C9.15161 4.06641 8.98969 4.08663 8.82781 4.14737C8.28139 4.32951 7.83615 4.77475 7.69449 5.30095C7.65401 5.46287 7.63379 5.62475 7.63379 5.80689C7.63379 5.98903 7.65401 6.15095 7.71475 6.31283C7.89689 6.85925 8.34213 7.30449 8.86833 7.44615C9.03025 7.48663 9.19213 7.50685 9.37427 7.50685C9.55641 7.50685 9.71833 7.48663 9.88021 7.42589C10.4266 7.24375 10.8719 6.79851 11.0135 6.27231C11.054 6.11039 11.0742 5.94851 11.0742 5.76637C11.0742 5.58423 11.054 5.42231 10.9933 5.26043C10.8111 4.71401 10.3659 4.26877 9.83969 4.12711Z" fill="#E5E9F2"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
3
public/assets/icons/phone.svg
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="29" height="37" viewBox="0 0 29 37" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M11.2602 10.5719L11.2603 10.5719L11.2575 10.5605C10.7852 8.63451 10.5288 6.56592 10.5288 4.40655C10.5288 3.7104 10.3189 3.03967 9.93256 2.51922C9.54722 2.00006 8.93084 1.57161 8.15609 1.57161H3.49752C2.72277 1.57161 2.10639 2.00006 1.72105 2.51922C1.33475 3.03967 1.12484 3.7104 1.12484 4.40655C1.12484 13.027 3.71619 20.8713 7.95687 26.5847C12.1975 32.2981 18.1387 35.9338 24.7938 35.9338C25.5686 35.9338 26.185 35.5053 26.5703 34.9862C26.9566 34.4657 27.1665 33.795 27.1665 33.0989V26.8403C27.1665 26.1442 26.9566 25.4735 26.5703 24.953C26.185 24.4338 25.5686 24.0054 24.7938 24.0054C23.2974 24.0054 21.8326 23.6808 20.471 23.0756C19.4755 22.6205 18.4407 23.0359 17.848 23.8345L15.5362 26.9491C12.4587 24.5654 9.88021 21.0372 8.16404 16.7418L10.7495 13.2585C11.3333 12.4718 11.4644 11.4472 11.2602 10.5719Z" stroke="#FFD300" stroke-width="2.08333"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 964 B |
12
public/assets/icons/whatsapp.svg
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.1846 0C20.3451 0.00179303 24.2502 1.62113 27.1869 4.55994C30.1233 7.49895 31.7398 11.4056 31.7384 15.5605C31.7348 24.1332 24.7566 31.1093 16.1846 31.1093H16.1845H16.1779C13.5749 31.1082 11.0171 30.4554 8.74534 29.2164L0.5 31.3785L2.70661 23.3214C1.34562 20.9634 0.629585 18.2883 0.630584 15.5479C0.634016 6.97485 7.61109 0 16.1846 0ZM16.1795 28.4832H16.1846C23.3098 28.4832 29.1091 22.6853 29.1121 15.5594C29.1132 12.106 27.77 8.85891 25.3291 6.41629C22.8882 3.97364 19.6426 2.62764 16.1894 2.6262C9.05853 2.6262 3.25945 8.42326 3.25661 15.5489C3.25564 17.9908 3.93886 20.3688 5.23304 22.4266L5.54075 22.9155L4.2344 27.6843L9.12736 26.4015L9.59964 26.6815C11.5842 27.859 13.8594 28.4819 16.1795 28.4832Z" fill="#E0E0E0"/>
|
||||||
|
<path d="M1.21387 30.4845L3.31968 22.7955C2.02053 20.5452 1.33733 17.9921 1.33815 15.3774C1.34156 7.19608 7.99998 0.540039 16.1811 0.540039C20.1518 0.541832 23.8785 2.08712 26.6805 4.89176C29.4832 7.69637 31.0257 11.4243 31.024 15.389C31.0206 23.5705 24.3618 30.2271 16.1817 30.2271C16.1811 30.2271 16.1821 30.2271 16.1817 30.2271H16.1751C13.691 30.2263 11.2502 29.6028 9.08241 28.4213L1.21387 30.4845H1.21387Z" fill="url(#paint0_linear_1_25177)"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.341 8.94722C12.0532 8.30744 11.7502 8.29463 11.4765 8.28344C11.2525 8.27383 10.9962 8.27442 10.7403 8.27442C10.4841 8.27442 10.0679 8.37068 9.71587 8.75511C9.36367 9.13953 8.37109 10.0689 8.37109 11.9589C8.37109 13.8492 9.74789 15.6757 9.93979 15.9322C10.1319 16.1884 12.5975 20.1911 16.5024 21.731C19.7476 23.0107 20.408 22.7562 21.1124 22.6921C21.8168 22.6281 23.3853 21.763 23.7055 20.8659C24.0257 19.9689 24.0257 19.2001 23.9296 19.0394C23.8336 18.8793 23.5774 18.7833 23.1932 18.5911C22.809 18.399 20.9203 17.4695 20.5681 17.3414C20.2159 17.2134 19.9598 17.1493 19.7036 17.5339C19.4475 17.9182 18.7116 18.7833 18.4875 19.0394C18.2634 19.2961 18.0393 19.3282 17.655 19.1361C17.2708 18.9434 16.0335 18.5381 14.5657 17.2293C13.4236 16.2112 12.6525 14.9536 12.4284 14.569C12.2043 14.1848 12.4044 13.9767 12.5971 13.7852C12.7696 13.613 12.9813 13.3367 13.1735 13.1124C13.3652 12.888 13.4292 12.7279 13.5573 12.4718C13.6853 12.2152 13.6213 11.9909 13.5252 11.7988C13.4292 11.6067 12.6826 9.70685 12.341 8.94722Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.1837 0.00292969C20.2965 0.00474833 24.1567 1.60547 27.0598 4.51054C29.9625 7.41581 31.5604 11.2776 31.559 15.3848C31.5554 23.8591 24.6574 30.755 16.1837 30.755H16.1837H16.1771C13.604 30.754 11.0756 30.1086 8.82989 28.8839L0.679199 31.0212L2.86045 23.0566C1.51509 20.7257 0.807273 18.0814 0.808272 15.3724C0.811679 6.89771 7.70866 0.00292969 16.1837 0.00292969ZM16.1787 28.1592H16.1837C23.2272 28.1592 28.9599 22.4279 28.9629 15.3838C28.9639 11.97 27.6361 8.7602 25.2234 6.3456C22.8104 3.931 19.6021 2.60045 16.1885 2.59904C9.13947 2.59904 3.40697 8.32954 3.40417 15.3734C3.40317 17.7872 4.07856 20.1379 5.35789 22.1721L5.66206 22.6554L4.37072 27.3695L9.2075 26.1014L9.67438 26.3781C11.6361 27.5422 13.8852 28.1579 16.1787 28.1592Z" fill="white"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_1_25177" x1="31.024" y1="30.4845" x2="31.024" y2="0.540089" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#20B038"/>
|
||||||
|
<stop offset="1" stop-color="#60D66A"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
105
public/assets/images/Illustration-order-out.svg
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
<svg width="252" height="174" viewBox="0 0 252 174" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M57.8793 30.5835C55.0681 29.7607 52.9425 31.3378 55.3423 33.669C57.7422 36.0003 61.719 38.6058 59.5249 40.2514C57.3308 41.897 36.8295 37.5087 22.5677 31.5434C8.30592 25.5782 7.14029 22.767 2.34065 26.6753C-2.45898 30.5835 -0.127734 35.726 11.6657 41.0742C23.459 46.4223 48.0058 51.9076 57.4679 50.9477C66.93 49.9878 69.7412 48.8221 67.8214 46.0109C65.9015 43.1997 64.7359 40.5256 68.0957 40.7999C71.4554 41.0742 82.7688 42.1027 85.7857 40.3885C88.8027 38.6744 88.3227 38.4001 83.0431 37.303C77.7635 36.206 63.0218 32.0234 57.8793 30.5835Z" fill="url(#paint0_linear_390_11463)"/>
|
||||||
|
<path d="M41.7669 25.2355C36.8301 23.4528 31.482 20.4358 29.6992 23.4527C27.9851 26.4697 36.5559 30.6522 42.1097 30.3779C47.6636 30.1037 48.8292 27.7724 41.7669 25.2355Z" fill="url(#paint1_linear_390_11463)"/>
|
||||||
|
<path d="M97.7162 28.1838C94.6307 28.0467 94.6993 35.589 100.459 36.6175C117.326 39.6344 139.542 34.629 154.146 30.1722C156.477 29.418 156.82 32.9834 152.638 36.0003C148.455 39.0173 141.599 40.7314 145.918 43.2684C150.238 45.8053 173.002 38.0573 180.064 31.3378C187.127 24.6184 180.887 23.5213 176.91 23.3156C172.933 23.1099 171.836 19.2702 178.35 15.9104C184.932 12.6193 202.074 3.36282 200.703 0.414474C199.331 -2.53387 177.527 10.9737 155.243 17.9674C123.429 28.1838 112.184 28.6638 97.7162 28.1838Z" fill="url(#paint2_linear_390_11463)"/>
|
||||||
|
<path d="M183.356 102.383C185.413 101.012 187.469 101.629 186.235 104.166C185.001 106.703 182.396 109.788 184.59 110.542C186.784 111.297 202.074 102.246 211.879 93.6065C221.684 84.9672 221.89 82.4302 226.826 84.2815C231.763 86.1328 231.215 90.8639 223.193 98.3376C215.17 105.811 196.932 116.782 189.115 118.565C181.23 120.347 178.693 120.142 179.447 117.399C180.201 114.656 180.476 112.188 177.87 113.285C175.265 114.382 166.42 118.29 163.54 117.673C160.66 117.056 160.934 116.713 164.911 114.451C168.888 112.188 179.653 104.92 183.356 102.383Z" fill="url(#paint3_linear_390_11463)"/>
|
||||||
|
<path d="M195.874 85.8122C199.371 83.0695 202.868 79.1613 205.062 81.1497C207.256 83.1381 201.497 88.7605 196.971 89.9947C192.377 91.2289 190.869 89.7205 195.874 85.8122Z" fill="#E29179"/>
|
||||||
|
<path d="M142.718 121.16C145.187 120.268 147.107 126.233 142.787 128.633C130.034 135.558 110.904 137.547 97.9446 137.821C95.8876 137.89 96.5732 140.838 100.756 142.141C104.938 143.444 110.904 142.964 108.161 146.186C105.418 149.409 85.0541 149.272 77.5804 145.775C70.1067 142.278 74.7692 139.741 77.9233 138.507C81.0773 137.273 80.9402 133.913 74.7692 132.953C68.5982 132.062 52.3481 129.25 52.6909 126.508C53.0337 123.765 74.1521 128.77 93.8992 128.428C122.08 128.085 131.268 125.411 142.718 121.16Z" fill="url(#paint4_linear_390_11463)"/>
|
||||||
|
<path d="M204.404 12.7563C206.119 12.4135 212.907 14.7448 203.102 20.7786C198.645 23.5212 193.365 27.0181 191.377 24.9611C189.388 22.9041 194.737 14.6762 204.404 12.7563Z" fill="url(#paint5_linear_390_11463)"/>
|
||||||
|
<path d="M244.173 78.7855C249.59 75.2201 255.418 79.1284 246.436 86.2593C242.322 89.4819 235.945 94.4872 233.682 92.6359C231.488 90.7846 236.014 84.2023 244.173 78.7855Z" fill="url(#paint6_linear_390_11463)"/>
|
||||||
|
<path d="M234.437 25.921C234.574 23.1098 230.666 24.7554 224.769 28.6636C218.872 32.6405 209.753 44.2967 177.595 50.1249C145.369 55.953 141.598 54.7188 140.707 61.7125C139.815 68.7063 159.768 63.221 173.55 59.0385C187.332 54.8559 196.04 54.7188 195.354 59.9984C194.668 65.278 175.538 77.9627 136.113 76.8657C96.6873 75.7686 79.5457 63.1524 70.2893 70.1462C61.0328 77.1399 84.0711 92.9102 116.023 93.4587C147.975 94.0072 168.75 90.7161 194.531 75.0144C220.312 59.3127 222.643 50.1934 219.832 48.205C217.089 46.2166 212.564 53.3475 207.216 54.1703C201.868 54.993 201.936 52.8675 205.296 50.1249C208.656 47.3822 234.231 30.9263 234.437 25.921Z" fill="url(#paint7_linear_390_11463)"/>
|
||||||
|
<path d="M34.6125 75.2548C36.3267 76.5576 36.121 80.3973 29.95 78.8889C23.7791 77.3804 9.31161 72.3751 9.58588 68.8782C9.86014 65.3813 25.0818 68.0554 34.6125 75.2548Z" fill="url(#paint8_linear_390_11463)"/>
|
||||||
|
<path d="M62.0627 12.825C56.166 14.7448 74.4046 22.4928 90.929 23.3156C106.562 24.1384 111.43 20.6415 109.716 18.9959C108.002 17.3503 99.0198 19.0645 85.9923 16.8704C72.9647 14.6762 66.3138 11.3851 62.0627 12.825Z" fill="url(#paint9_linear_390_11463)"/>
|
||||||
|
<path d="M118.15 21.3502C115.75 22.3101 116.024 25.6699 119.11 25.1899C122.195 24.71 131.452 23.2015 134.126 21.4188C136.8 19.6361 134.743 17.6476 131.109 18.1276C127.406 18.6761 121.647 19.9103 118.15 21.3502Z" fill="#E29179"/>
|
||||||
|
<g clip-path="url(#clip0_390_11463)">
|
||||||
|
<path d="M105.739 80.0822L80.8809 72.0531C84.0989 64.2564 86.5941 57.027 86.3803 51.9244L105.629 53.2441C103.035 60.2049 103.517 69.4875 105.739 80.0822Z" fill="#FBBEBE"/>
|
||||||
|
<path opacity="0.3" d="M104.118 59.6252C104.118 59.6252 97.0189 58.9151 94.1797 57.4955C91.3404 56.0759 86.1457 55.2579 86.1457 55.2579C86.949 49.5865 85.4368 50.2893 86.8656 49.6867L106.956 48.9776C120.442 49.6867 104.119 49.6866 104.118 59.6252Z" fill="#865A61"/>
|
||||||
|
<path d="M97.1064 56.2614C110.292 56.2614 120.98 45.5727 120.98 32.3874C120.98 19.2022 110.292 8.51343 97.1064 8.51343C83.9212 8.51343 73.2324 19.2022 73.2324 32.3874C73.2324 45.5727 83.9212 56.2614 97.1064 56.2614Z" fill="#FBBEBE"/>
|
||||||
|
<path d="M126.832 24.1339C124.38 25.2521 122.611 33.4063 120.683 31.5236C118.756 29.641 117.17 27.6305 114.571 26.9357C112.473 26.3722 110.215 27.0162 108.301 28.0318C107.959 28.2111 107.627 28.4059 107.304 28.5997C107.091 28.4573 106.879 28.3233 106.651 28.1996C104.939 27.2834 102.941 27.0586 101.068 27.5716C102.548 28.0673 103.835 29.0156 104.746 30.2826C104.106 30.7119 103.457 31.1423 102.793 31.5236C97.2483 34.7234 89.3584 27.7656 83.522 25.1518C87.1778 32.012 85.3777 34.8531 82.2035 41.9481L82.0939 42.3521C82.2742 40.5739 76.7717 39.2487 77.0908 41.7518C77.3173 43.5291 78.8554 47.4794 79.7168 49.0486C73.5806 41.9534 69.3872 33.2707 70.2721 24.3139C70.4647 22.4323 70.4066 20.4471 71.3771 18.814C72.3486 17.1893 74.3741 16.0492 76.1659 16.6688C76.0141 13.8123 76.6392 10.9682 77.9747 8.43858C79.3102 5.90901 81.3062 3.78861 83.7505 2.30282C86.1948 0.817019 88.9961 0.02136 91.8565 0.000424093C94.7169 -0.0205119 97.5295 0.734063 99.9953 2.18392C102.287 3.52838 104.199 5.42987 106.299 7.07006C108.399 8.71024 110.82 10.1399 113.483 10.2753C115.172 10.3568 117.011 9.94438 118.462 10.8193C120.143 11.8345 120.431 13.9601 120.683 16.0054C119.184 16.1532 117.762 16.7448 116.601 17.7044C118.152 17.5462 119.714 17.8812 121.064 18.6618C121.09 18.6734 121.114 18.6873 121.137 18.7034C122.026 22.0836 123.83 22.3374 126.832 24.1339Z" fill="#865A61"/>
|
||||||
|
<path d="M67.9131 232.111C88.2438 208.314 47.3299 141.254 46.502 140.239C45.674 139.223 48.0374 95.1006 48.0374 95.1006C48.1127 92.8864 48.7197 90.7229 49.8071 88.7926C50.8946 86.8624 52.4305 85.2222 54.2852 84.0105L75.0403 70.4513L83.1185 58.7715L105.386 60.9982L111.213 71.6918L121.013 84.0105C123.28 87.3078 125.41 90.8569 126.692 95.1006C128.174 99.1556 128.249 107.183 128.111 111.442L126.692 166.53C126.692 166.53 132.162 197.195 128.824 200.582C125.486 203.968 116.885 200.583 123.706 204.385C131.891 208.948 139.334 208.106 135.192 212.248C131.049 216.39 136.292 222.149 136.292 222.149L67.9131 232.111Z" fill="#333333"/>
|
||||||
|
<path opacity="0.6" d="M69.3359 132.027C69.3359 132.027 82.1685 158.215 82.8511 173.628L69.3359 132.027Z" fill="black"/>
|
||||||
|
<path opacity="0.6" d="M79.2734 97.9553C79.2734 97.9553 69.9095 119.93 69.3359 132.027L79.2734 97.9553Z" fill="black"/>
|
||||||
|
</g>
|
||||||
|
<path d="M4.59454 170.566C5.19856 169.537 28.2427 147.902 83.0964 147.246C115.462 146.859 159.733 147.732 187.116 150.138C190.603 150.445 190.323 153.021 186.822 153.044C171.852 153.144 152.265 154.067 137.456 157.593C109.866 164.163 91.5673 167.907 78.1688 169.582C67.6576 170.896 48.4971 172.648 43.8995 172.976C22.246 174.523 46.0644 164.939 22.0841 169.335C7.30327 172.044 3.89713 171.756 4.59454 170.566Z" fill="#866694"/>
|
||||||
|
<path d="M149.873 159.42C148.717 159.448 148.502 158.124 149.632 157.877C156.279 156.424 167.608 154.798 182.619 155.785C201.4 157.021 211.357 155.89 216.152 154.886C217.172 154.672 218.034 155.984 217.247 156.667C213.42 159.987 205.466 164.676 192.52 162.428C175.048 159.395 158.758 159.21 149.873 159.42Z" fill="#866694"/>
|
||||||
|
<path d="M18.7747 82.5914C15.2092 81.4944 10.821 88.6253 16.4434 93.0821C22.0659 97.4703 53.0578 103.984 54.5662 106.521C56.0747 109.058 55.5947 111.115 49.3552 111.664C43.1157 112.212 34.8877 109.744 37.7675 115.092C40.6473 120.44 69.1708 126.542 80.7585 123.937C92.2776 121.331 86.5181 116.326 82.4727 113.652C78.4273 110.978 79.73 106.247 88.5751 106.864C97.4887 107.481 121.075 108.578 121.487 104.67C121.898 100.761 90.7006 101.379 63.2056 94.6591C35.7105 87.9396 34.1335 87.2539 18.7747 82.5914Z" fill="url(#paint10_linear_390_11463)"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M156.818 93.706C156.818 90.6221 158.463 87.7754 161.181 86.318C167.302 83.0354 178.165 77.5491 182.385 77.5491C186.618 77.5491 197.972 83.066 204.348 86.3454C207.142 87.7829 208.85 90.6737 208.85 93.8164V110.105C208.85 115.132 204.553 119.086 199.543 118.669L164.7 115.771C160.245 115.4 156.818 111.677 156.818 107.206V93.706Z" stroke="#FFB500" stroke-width="3.82793"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M156.849 43.4376C155.053 43.5282 153.643 45.0111 153.643 46.8097V92.042C153.643 93.792 154.98 95.2519 156.723 95.4053L162.259 95.8927C161.255 94.7786 160.702 93.5628 160.702 92.2897C160.702 86.9272 170.506 82.5801 182.599 82.5801C194.692 82.5801 204.495 86.9272 204.495 92.2897C204.495 94.9246 202.128 97.3144 198.286 99.0637L208.288 99.9441C210.262 100.118 211.96 98.5624 211.96 96.5808V57.8966C211.96 56.82 211.447 55.8079 210.578 55.172L192.115 41.6597L156.849 43.4376Z" fill="url(#paint11_linear_390_11463)"/>
|
||||||
|
<path d="M183.897 61.3101C191.717 58.0005 197.205 50.2435 197.205 41.2028C197.205 29.1522 187.456 19.3834 175.43 19.3834C163.405 19.3834 153.656 29.1522 153.656 41.2028C153.656 41.2028 152.367 64.4088 175.43 79.8501C175.43 79.8501 172.727 66.6348 183.897 61.3101Z" fill="#333333"/>
|
||||||
|
<path d="M163.022 39.136H159.481V33.0009H160.628V38.1165H163.022V39.136ZM169.442 36.0502C169.442 36.9969 169.179 37.7585 168.651 38.335C168.129 38.9115 167.428 39.1997 166.548 39.1997C165.668 39.1997 164.964 38.9115 164.436 38.335C163.908 37.7585 163.644 36.9969 163.644 36.0502C163.644 35.0975 163.905 34.3329 164.427 33.7564C164.955 33.1799 165.659 32.8917 166.539 32.8917C167.431 32.8917 168.138 33.1799 168.66 33.7564C169.182 34.3268 169.442 35.0914 169.442 36.0502ZM164.873 36.0502C164.873 36.6935 165.025 37.2032 165.328 37.5795C165.632 37.9557 166.038 38.1438 166.548 38.1438C167.064 38.1438 167.47 37.9587 167.768 37.5886C168.065 37.2123 168.214 36.6995 168.214 36.0502C168.214 35.4009 168.065 34.8881 167.768 34.5119C167.47 34.1357 167.061 33.9476 166.539 33.9476C166.023 33.9476 165.616 34.1357 165.319 34.5119C165.022 34.8881 164.873 35.4009 164.873 36.0502ZM174.946 38.8447C174.57 39.0874 174.042 39.2088 173.363 39.2088C172.452 39.2088 171.7 38.9236 171.105 38.3532C170.516 37.7767 170.222 37.0151 170.222 36.0684C170.222 35.14 170.513 34.3845 171.096 33.8019C171.685 33.2133 172.44 32.919 173.363 32.919C174.036 32.919 174.561 33.0312 174.937 33.2558V34.3754C174.476 34.1084 173.966 33.9749 173.408 33.9749C172.85 33.9749 172.383 34.166 172.006 34.5483C171.636 34.9246 171.451 35.4313 171.451 36.0684C171.451 36.7056 171.636 37.2123 172.006 37.5886C172.383 37.9648 172.871 38.1529 173.472 38.1529C174.048 38.1529 174.54 38.0012 174.946 37.6978V38.8447ZM180.903 39.136H179.456L177.253 36.0957L179.374 33.0009H180.748L178.618 36.0775L180.903 39.136ZM177.162 39.136H176.015V33.0009H177.162V39.136ZM185.39 39.136H181.731V33.0009H185.353V33.9385H182.887V35.6042H185.08V36.5327H182.887V38.1984H185.39V39.136ZM189.307 39.136H188.16V36.8968L186.066 33.0009H187.404L187.814 33.8929C188.051 34.4087 188.245 34.8426 188.396 35.1946C188.548 35.5405 188.639 35.7559 188.67 35.8409L188.724 35.9774C188.779 35.7529 189.091 35.0581 189.662 33.8929L190.08 33.0009H191.419L189.307 36.8604V39.136Z" fill="#FFD300"/>
|
||||||
|
<path d="M165.636 46.7132H164.413V50.7898H163.505V46.7132H162.282V45.9694H165.636V46.7132ZM167.8 46.7132H167.213V48.2866H167.814C168.09 48.2866 168.298 48.2175 168.436 48.0792C168.574 47.9362 168.644 47.7383 168.644 47.4856C168.644 47.2376 168.57 47.0469 168.422 46.9134C168.279 46.7799 168.071 46.7132 167.8 46.7132ZM167.213 50.7898H166.312V45.9694H167.8C168.348 45.9694 168.777 46.1076 169.087 46.3842C169.402 46.6607 169.559 47.0302 169.559 47.4927C169.554 47.836 169.471 48.1269 169.309 48.3653C169.147 48.5989 168.925 48.7729 168.644 48.8874L169.881 50.7898H168.801L167.707 49.0304H167.213V50.7898ZM172.698 50.7898H171.797V49.0304L170.152 45.9694H171.203L171.525 46.6703C171.711 47.0755 171.863 47.4164 171.983 47.693C172.102 47.9648 172.173 48.134 172.197 48.2008L172.24 48.3081C172.283 48.1316 172.529 47.5857 172.977 46.6703L173.306 45.9694H174.357L172.698 49.0018V50.7898ZM177.527 50.7898H176.626L177.012 45.9694H178.042L178.7 47.7216C178.814 48.0172 178.922 48.3128 179.022 48.6084C179.122 48.8993 179.193 49.1162 179.236 49.2593L179.301 49.481C179.449 48.9851 179.654 48.3987 179.916 47.7216L180.588 45.9694H181.618L182.09 50.7898H181.189L181.017 48.9088L180.888 47.221C180.717 47.7121 180.512 48.2747 180.273 48.9088L179.601 50.7183H178.986L178.328 48.9088L177.763 47.2424C177.763 47.476 177.732 48.0315 177.67 48.9088L177.527 50.7898ZM185.88 50.7898H183.005V45.9694H185.851V46.706H183.913V48.0148H185.637V48.7443H183.913V50.0531H185.88V50.7898ZM187.677 49.1878H186.855V45.9694H187.677V49.1878ZM187.82 50.282C187.82 50.4441 187.765 50.58 187.656 50.6897C187.546 50.7946 187.413 50.847 187.255 50.847C187.093 50.847 186.957 50.7946 186.848 50.6897C186.743 50.58 186.69 50.4441 186.69 50.282C186.69 50.1247 186.743 49.9912 186.848 49.8815C186.957 49.7718 187.093 49.717 187.255 49.717C187.413 49.717 187.546 49.7718 187.656 49.8815C187.765 49.9912 187.82 50.1247 187.82 50.282Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M189.707 66.7146C189.849 66.8522 189.957 67.0079 190.032 67.1813C190.107 67.3604 190.141 67.5517 190.134 67.7558L190.084 69.1179L189.256 69.081L189.258 69.0026C189.202 69.025 189.16 69.0403 189.134 69.0479C188.947 69.1126 188.752 69.1419 188.55 69.1348C188.283 69.1255 188.033 69.0548 187.801 68.923C187.568 68.7892 187.386 68.6117 187.254 68.3908C187.12 68.1661 187.058 67.9186 187.068 67.6487C187.075 67.4446 187.122 67.2562 187.21 67.0827C187.298 66.9114 187.416 66.7637 187.564 66.6398C187.709 66.5156 187.876 66.4231 188.065 66.3612C188.254 66.2966 188.449 66.2675 188.65 66.2745C188.848 66.2814 189.04 66.3231 189.226 66.3993C189.412 66.4758 189.573 66.5807 189.707 66.7146ZM188.575 68.3789C188.765 68.3855 188.932 68.3254 189.074 68.1974C189.218 68.0684 189.293 67.9112 189.3 67.7266C189.304 67.6046 189.276 67.4911 189.215 67.3857C189.154 67.2809 189.07 67.196 188.964 67.1311C188.86 67.0683 188.746 67.0344 188.623 67.0301C188.502 67.0259 188.387 67.0518 188.277 67.1071C188.167 67.1644 188.078 67.2433 188.01 67.3436C187.941 67.4444 187.905 67.5557 187.901 67.6778C187.895 67.8624 187.959 68.0244 188.093 68.1632C188.226 68.3008 188.387 68.3723 188.575 68.3789Z" fill="#333333"/>
|
||||||
|
<path d="M192.506 65.4512C192.442 65.4104 192.369 65.3887 192.289 65.3859C192.209 65.3831 192.136 65.3997 192.07 65.436C192.004 65.472 191.949 65.5232 191.905 65.59C191.864 65.6549 191.842 65.7273 191.84 65.8075C191.837 65.8857 191.854 65.9607 191.892 66.0318C191.928 66.0994 191.978 66.1546 192.043 66.1968C192.106 66.2375 192.178 66.2592 192.258 66.262C192.338 66.2648 192.412 66.2471 192.48 66.2093C192.548 66.1715 192.602 66.1211 192.642 66.058C192.683 65.9949 192.704 65.9216 192.707 65.8378C192.71 65.7576 192.694 65.6839 192.658 65.6162C192.62 65.5467 192.57 65.4917 192.506 65.4512Z" fill="#333333"/>
|
||||||
|
<path d="M191.754 69.1731L192.588 69.2022L192.682 66.5223L191.847 66.4959L191.754 69.1731Z" fill="#333333"/>
|
||||||
|
<path d="M191.468 66.48C190.696 66.4915 190.297 66.8778 190.27 67.6396L190.219 69.1208L191.056 69.1501L191.107 67.6688C191.117 67.3813 191.229 67.2368 191.442 67.2355L191.489 67.2371C191.558 67.2432 191.614 67.2618 191.657 67.2928L191.684 66.5031C191.629 66.4927 191.573 66.4855 191.515 66.4816L191.468 66.48Z" fill="#333333"/>
|
||||||
|
<path d="M200.597 66.7988C199.825 66.8104 199.426 67.1967 199.399 67.9585L199.348 69.4397L200.184 69.4689L200.236 67.9877C200.246 67.7001 200.358 67.5556 200.571 67.5543L200.618 67.5559C200.687 67.5621 200.743 67.5806 200.786 67.6117L200.813 66.822C200.758 66.8115 200.702 66.8043 200.644 66.8005L200.597 66.7988Z" fill="#333333"/>
|
||||||
|
<path d="M206.093 66.9907C205.321 67.0023 204.922 67.3886 204.895 68.1504L204.844 69.6316L205.68 69.6608L205.732 68.1796C205.742 67.892 205.854 67.7475 206.067 67.7462L206.114 67.7478C206.183 67.754 206.239 67.7725 206.282 67.8035L206.309 67.0139C206.254 67.0034 206.198 66.9962 206.14 66.9923L206.093 66.9907Z" fill="#333333"/>
|
||||||
|
<path d="M204.63 65.8745C204.565 65.8338 204.492 65.8121 204.412 65.8093C204.332 65.8065 204.259 65.8231 204.193 65.8593C204.127 65.8953 204.072 65.9466 204.028 66.0133C203.987 66.0783 203.965 66.1506 203.963 66.2308C203.96 66.3091 203.977 66.384 204.015 66.4551C204.051 66.5228 204.101 66.5779 204.166 66.6202C204.229 66.6609 204.301 66.6825 204.381 66.6853C204.461 66.6881 204.536 66.6704 204.603 66.6326C204.671 66.5948 204.725 66.5444 204.765 66.4813C204.806 66.4182 204.828 66.3449 204.831 66.2612C204.833 66.1809 204.817 66.1072 204.781 66.0396C204.743 65.97 204.693 65.9151 204.63 65.8745Z" fill="#333333"/>
|
||||||
|
<path d="M203.638 66.9049L202.657 66.8707L201.757 67.8549L201.746 67.8545L201.818 65.8048L200.981 65.7782L200.852 69.4856L201.688 69.5148L201.734 68.2024L202.671 69.5491L203.714 69.5856L202.63 68.0193L203.638 66.9049Z" fill="#333333"/>
|
||||||
|
<path d="M203.877 69.5964L204.711 69.6256L204.805 66.9456L203.97 66.9193L203.877 69.5964Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M198.836 67.0335C198.978 67.1711 199.086 67.3268 199.16 67.5001C199.236 67.6792 199.27 67.8705 199.263 68.0747L199.213 69.4368L198.385 69.3998L198.388 69.3214C198.331 69.3438 198.289 69.3591 198.263 69.3667C198.076 69.4314 197.881 69.4607 197.679 69.4536C197.412 69.4443 197.162 69.3737 196.929 69.2419C196.697 69.108 196.515 68.9306 196.383 68.7096C196.249 68.485 196.187 68.2375 196.197 67.9676C196.204 67.7634 196.251 67.575 196.34 67.4016C196.427 67.2302 196.545 67.0826 196.692 66.9586C196.838 66.8345 197.006 66.7419 197.194 66.6801C197.383 66.6154 197.578 66.5863 197.779 66.5933C197.977 66.6003 198.169 66.6419 198.355 66.7182C198.541 66.7946 198.701 66.8995 198.836 67.0335ZM197.704 68.6977C197.894 68.7043 198.06 68.6443 198.203 68.5163C198.347 68.3872 198.422 68.2301 198.428 68.0454C198.433 67.9234 198.404 67.8099 198.343 67.7045C198.282 67.5997 198.199 67.5148 198.093 67.4499C197.989 67.3871 197.875 67.3532 197.751 67.3489C197.631 67.3447 197.516 67.3706 197.406 67.4259C197.295 67.4833 197.206 67.5622 197.138 67.6625C197.07 67.7633 197.034 67.8746 197.03 67.9966C197.023 68.1812 197.087 68.3432 197.222 68.482C197.355 68.6197 197.516 68.6911 197.704 68.6977Z" fill="#333333"/>
|
||||||
|
<path d="M186.936 68.3795C186.841 68.2204 186.783 68.0497 186.76 67.8677L186.758 67.8652C186.685 67.9501 186.608 68.0181 186.526 68.0691C186.372 68.167 186.207 68.2126 186.031 68.2064C185.855 68.2003 185.694 68.1433 185.548 68.035C185.402 67.927 185.287 67.7869 185.204 67.6147C185.121 67.4407 185.083 67.2616 185.089 67.0768C185.096 66.8921 185.146 66.7157 185.239 66.548C185.333 66.3821 185.458 66.2503 185.611 66.1526C185.768 66.0552 185.934 66.0095 186.108 66.0156C186.282 66.0217 186.444 66.0789 186.594 66.1869C186.662 66.2347 186.732 66.3043 186.804 66.3961L187.425 65.7971C187.314 65.6677 187.187 65.555 187.044 65.4593C186.771 65.2769 186.469 65.1801 186.137 65.1685C185.808 65.157 185.5 65.2326 185.214 65.3953C184.925 65.5616 184.694 65.789 184.52 66.0779C184.345 66.3684 184.252 66.6916 184.24 67.0471C184.227 67.4008 184.298 67.7289 184.451 68.0311C184.605 68.3312 184.82 68.5733 185.096 68.7576C185.371 68.9399 185.673 69.0368 186.002 69.0483C186.333 69.0598 186.641 68.9843 186.926 68.8215C187.007 68.7748 187.084 68.7221 187.158 68.6642C187.073 68.579 186.998 68.4844 186.936 68.3795Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M195.37 67.9439C194.522 68.3115 194.69 69.3036 194.69 69.3036C193.007 68.0925 193.164 66.3661 193.164 66.3661C193.195 65.468 193.949 64.7652 194.847 64.7966C195.745 64.8279 196.448 65.5816 196.417 66.4797C196.393 67.1536 195.963 67.7176 195.37 67.9439ZM194.777 67.5262C194.78 67.5262 194.783 67.5262 194.785 67.5262C195.379 67.5285 195.871 67.059 195.892 66.4614C195.914 65.8525 195.437 65.3413 194.828 65.3201C194.219 65.2988 193.708 65.7755 193.687 66.3844C193.682 66.5241 193.703 66.6586 193.746 66.7832C193.891 67.2021 194.281 67.5096 194.751 67.5259C194.76 67.5263 194.768 67.5262 194.777 67.5262Z" fill="white"/>
|
||||||
|
<path d="M194.883 65.5919C194.75 65.5852 194.614 65.6299 194.507 65.7264C194.495 65.7371 194.494 65.7555 194.505 65.7676C194.516 65.7793 194.534 65.7804 194.546 65.7696C194.641 65.6837 194.762 65.6442 194.88 65.65C195 65.656 195.116 65.7071 195.203 65.8026C195.214 65.8147 195.232 65.8155 195.244 65.8048C195.256 65.794 195.257 65.7755 195.246 65.7635C195.149 65.6562 195.017 65.5988 194.883 65.5919Z" fill="#333333"/>
|
||||||
|
<path d="M194.872 65.8532C194.807 65.8497 194.741 65.8727 194.689 65.9229C194.677 65.9343 194.676 65.9539 194.686 65.9665C194.697 65.9791 194.716 65.9802 194.727 65.9685C194.768 65.93 194.819 65.9124 194.869 65.9147C194.919 65.9175 194.967 65.9403 195.004 65.9829C195.014 65.9953 195.033 65.9962 195.045 65.9849C195.057 65.9733 195.058 65.9539 195.047 65.9411C195 65.8863 194.936 65.8564 194.872 65.8532Z" fill="#333333"/>
|
||||||
|
<path d="M194.879 65.7161C194.78 65.7109 194.678 65.7461 194.599 65.8227C194.587 65.8342 194.586 65.8537 194.597 65.8666C194.607 65.879 194.626 65.88 194.638 65.8684C194.706 65.8033 194.792 65.7735 194.876 65.7777C194.961 65.7822 195.043 65.8207 195.104 65.8926C195.115 65.905 195.133 65.906 195.145 65.8944C195.157 65.883 195.158 65.8634 195.147 65.851C195.076 65.7667 194.978 65.7211 194.879 65.7161Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M195.133 66.1818C195.171 66.2103 195.199 66.2481 195.219 66.2955C195.238 66.3428 195.246 66.4001 195.244 66.4671C195.242 66.5219 195.23 66.571 195.207 66.6137C195.185 66.6564 195.155 66.6926 195.116 66.7221C195.078 66.7522 195.033 66.7746 194.981 66.789C194.929 66.8039 194.875 66.8104 194.819 66.8084L194.724 66.8051L194.71 67.2071L194.436 67.1975L194.474 66.0831L194.807 66.0948C194.882 66.0974 194.945 66.1055 194.997 66.1189C195.05 66.1323 195.095 66.1532 195.133 66.1818ZM194.811 66.5716C194.861 66.5734 194.9 66.5642 194.928 66.5443C194.955 66.5248 194.97 66.4954 194.971 66.4562C194.972 66.4179 194.96 66.3881 194.934 66.3667C194.908 66.3455 194.869 66.3338 194.819 66.332L194.74 66.3293L194.732 66.5689L194.811 66.5716Z" fill="#333333"/>
|
||||||
|
<rect x="184.387" y="71.9102" width="22.7563" height="4.55126" rx="2.27563" transform="rotate(4 184.387 71.9102)" fill="#E5E9F2" stroke="white" stroke-width="0.987773"/>
|
||||||
|
<circle cx="185.953" cy="74.3743" r="1.62545" transform="rotate(4 185.953 74.3743)" fill="#FDD300"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M159.793 112.094C163.687 109.719 168.184 108.519 172.743 108.64L196.297 109.262C202.426 109.424 207.361 116.764 202.819 120.881C200.864 122.653 190.952 125.757 190.952 125.757L155.307 114.831L159.793 112.094Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M193.68 116.353C194.218 116.103 194.507 115.838 194.507 115.564C194.507 114.023 185.359 112.773 174.075 112.773C162.791 112.773 153.643 114.023 153.643 115.564C153.643 115.72 153.736 115.873 153.916 116.022C152.919 117.094 152.309 118.531 152.309 120.111C152.309 123.426 154.997 126.114 158.312 126.114H188.997C192.313 126.114 195.001 123.426 195.001 120.111C195.001 118.688 194.506 117.382 193.68 116.353Z" fill="#535151"/>
|
||||||
|
<circle cx="173.144" cy="119.943" r="1.50115" fill="white"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_390_11463" x1="65.0968" y1="44.3869" x2="-3.5" y2="25" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#EF709B"/>
|
||||||
|
<stop offset="0.9946" stop-color="#FBECF4"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint1_linear_390_11463" x1="45.5" y1="30" x2="29" y2="23.5" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#EF709B"/>
|
||||||
|
<stop offset="0.9946" stop-color="#FBECF4"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint2_linear_390_11463" x1="189.203" y1="7.47789" x2="120.5" y2="28" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#C660AC"/>
|
||||||
|
<stop offset="0.9946" stop-color="#DFADD5"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint3_linear_390_11463" x1="195.684" y1="119.885" x2="195.973" y2="83.5573" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#E29179"/>
|
||||||
|
<stop offset="0.9946" stop-color="#EFDCC5"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint4_linear_390_11463" x1="121" y1="132.5" x2="145" y2="121" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#EF709B"/>
|
||||||
|
<stop offset="0.9946" stop-color="#FF8FC5"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint5_linear_390_11463" x1="200.386" y1="24.4586" x2="198.72" y2="13.5968" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#F1CCDE"/>
|
||||||
|
<stop offset="0.9946" stop-color="#FBECF4"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint6_linear_390_11463" x1="243.593" y1="90.7455" x2="240.421" y2="79.3514" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#E29179"/>
|
||||||
|
<stop offset="0.9946" stop-color="#FBECF4"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint7_linear_390_11463" x1="217.301" y1="9.55232" x2="95.5" y2="67" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#FC609C"/>
|
||||||
|
<stop offset="1" stop-color="#FBECF4"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint8_linear_390_11463" x1="4" y1="67" x2="42.5" y2="81.5" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#EFDCC5"/>
|
||||||
|
<stop offset="0.9946" stop-color="#E29179"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint9_linear_390_11463" x1="142.184" y1="18.4388" x2="95.1061" y2="18.0766" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#8B1D56"/>
|
||||||
|
<stop offset="1" stop-color="#FEB28B"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint10_linear_390_11463" x1="14" y1="89" x2="63.5" y2="108.5" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#EFDCC5"/>
|
||||||
|
<stop offset="0.9946" stop-color="#E29179"/>
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient id="paint11_linear_390_11463" x1="168.222" y1="70.8085" x2="168.222" y2="99.9574" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#FFD300"/>
|
||||||
|
<stop offset="1" stop-color="#FFB500"/>
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath id="clip0_390_11463">
|
||||||
|
<rect width="171.777" height="159" fill="white" transform="translate(4.03125)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 26 KiB |
12
public/assets/images/app-store.svg
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
public/assets/images/astrapay.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
19
public/assets/images/cariparkir2.svg
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<svg width="116" height="25" viewBox="0 0 116 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.9125 11.3242C29.6695 12.0032 30.2564 12.7813 30.6715 13.6556C31.0941 14.5594 31.3055 15.5328 31.3055 16.5794L31.292 23.5632L27.0065 23.5223V23.1204C26.7183 23.2451 26.506 23.3309 26.3715 23.3747C25.4157 23.7394 24.4156 23.9242 23.3695 23.9242C21.9899 23.9242 20.6883 23.6071 19.4624 22.9737C18.2357 22.3299 17.2625 21.4537 16.542 20.3461C15.811 19.2194 15.4459 17.9632 15.4459 16.5794C15.4459 15.5328 15.6582 14.5594 16.0819 13.6556C16.5046 12.7623 17.0867 11.9851 17.8255 11.3242C18.5565 10.6623 19.4038 10.1585 20.3684 9.808C21.3319 9.44324 22.3329 9.25943 23.3695 9.25943C24.3964 9.25943 25.3974 9.43848 26.3715 9.79562C27.3447 10.1537 28.192 10.6623 28.9125 11.3242ZM23.3695 20.049C24.3522 20.049 25.1995 19.7118 25.9114 19.0309C26.6319 18.3442 26.9931 17.5261 26.9931 16.5794C26.9931 15.9537 26.8269 15.3775 26.4926 14.849C26.1592 14.3232 25.7135 13.9032 25.1534 13.5899C24.6039 13.2871 24.0093 13.1337 23.3695 13.1337C22.7479 13.1337 22.1571 13.2871 21.599 13.5899C21.0389 13.9032 20.5931 14.3232 20.2598 14.849C19.9264 15.3775 19.7593 15.9537 19.7593 16.5794C19.7593 17.5261 20.1195 18.3442 20.841 19.0309C21.5528 19.7118 22.3963 20.049 23.3695 20.049Z" fill="black"/>
|
||||||
|
<path d="M43.1376 4.35459C42.7956 4.15745 42.4161 4.05935 42.0011 4.05935C41.5871 4.05935 41.2124 4.15745 40.88 4.35459C40.5448 4.55078 40.271 4.82316 40.0548 5.17269C39.856 5.51269 39.757 5.88697 39.757 6.2984C39.757 6.69935 39.8598 7.08031 40.0692 7.43745C40.2662 7.77745 40.5361 8.05078 40.88 8.25554C41.2124 8.45269 41.5871 8.55078 42.0011 8.55078C42.4161 8.55078 42.7956 8.44697 43.1376 8.24126C43.4796 8.03554 43.7505 7.76792 43.9494 7.43745C44.1473 7.10697 44.2462 6.72792 44.2462 6.2984C44.2462 5.88697 44.1473 5.51269 43.9494 5.17269C43.7409 4.82316 43.4709 4.55078 43.1376 4.35459" fill="black"/>
|
||||||
|
<path d="M39.9198 23.5482H44.2331V9.80822L39.9198 9.82251V23.5482Z" fill="black"/>
|
||||||
|
<path d="M37.9586 9.80839C33.9747 10.0055 31.9823 12.0551 31.9823 15.9608V23.5551H36.3091V15.9608C36.3091 14.4865 36.8586 13.7265 37.9586 13.6817H38.2016C38.5619 13.7008 38.8549 13.7855 39.0797 13.937V9.88839C38.7915 9.84458 38.4994 9.81791 38.2016 9.80839H37.9586Z" fill="black"/>
|
||||||
|
<path d="M85.1732 9.80839C81.1893 10.0055 79.1969 12.0551 79.1969 15.9608V23.5551H83.5237V15.9608C83.5237 14.4865 84.0732 13.7265 85.1732 13.6817H85.4162C85.7765 13.7008 86.0695 13.7855 86.2943 13.937V9.88839C86.0061 9.84458 85.714 9.81791 85.4162 9.80839H85.1732Z" fill="black"/>
|
||||||
|
<path d="M113.594 9.80839C109.61 10.0055 107.618 12.0551 107.618 15.9608V23.5551H111.945V15.9608C111.945 14.4865 112.494 13.7265 113.594 13.6817H113.837C114.199 13.7008 114.491 13.7855 114.715 13.937V9.88839C114.428 9.84458 114.135 9.81791 113.837 9.80839H113.594Z" fill="black"/>
|
||||||
|
<path d="M105.833 4.35459C105.491 4.15745 105.112 4.05935 104.698 4.05935C104.283 4.05935 103.908 4.15745 103.576 4.35459C103.242 4.55078 102.967 4.82316 102.751 5.17269C102.552 5.51269 102.453 5.88697 102.453 6.2984C102.453 6.69935 102.556 7.08031 102.764 7.43745C102.961 7.77745 103.232 8.05078 103.576 8.25554C103.908 8.45269 104.283 8.55078 104.698 8.55078C105.112 8.55078 105.491 8.44697 105.833 8.24126C106.175 8.03554 106.446 7.76792 106.644 7.43745C106.842 7.10697 106.942 6.72792 106.942 6.2984C106.942 5.88697 106.842 5.51269 106.644 5.17269C106.437 4.82316 106.166 4.55078 105.833 4.35459" fill="black"/>
|
||||||
|
<path d="M100.898 9.8084H95.829L91.3532 15.0093H91.2985V4.50078L86.9717 4.51411V23.5217H91.2985V16.7932L96.3833 23.5217H101.778L95.8962 15.6951L100.898 9.8084Z" fill="black"/>
|
||||||
|
<path d="M102.615 23.5482H106.93V9.80822L102.615 9.82251V23.5482Z" fill="black"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.1276 11.3242C76.8846 12.0032 77.4706 12.7813 77.8856 13.6556C78.3093 14.5594 78.5206 15.5328 78.5206 16.5794L78.5072 23.5632L74.2217 23.5223V23.1204C73.9315 23.2451 73.7202 23.3309 73.5857 23.3747C72.6298 23.7394 71.6298 23.9242 70.5836 23.9242C69.2041 23.9242 67.9015 23.6071 66.6756 22.9737C65.4489 22.3299 64.4767 21.4537 63.7552 20.3461C63.0261 19.2194 62.6601 17.9632 62.6601 16.5794C62.6601 15.5328 62.8714 14.5594 63.297 13.6556C63.7187 12.7623 64.3009 11.9851 65.0396 11.3242C65.7697 10.6623 66.618 10.1585 67.5816 9.808C68.547 9.44324 69.5471 9.25943 70.5836 9.25943C71.6115 9.25943 72.6116 9.43848 73.5857 9.79562C74.5588 10.1537 75.4062 10.6623 76.1276 11.3242ZM70.5836 20.049C71.5664 20.049 72.4137 19.7118 73.1255 19.0309C73.847 18.3442 74.2072 17.5261 74.2072 16.5794C74.2072 15.9537 74.0401 15.3775 73.7058 14.849C73.3734 14.3232 72.9276 13.9032 72.3685 13.5899C71.8181 13.2871 71.2244 13.1337 70.5836 13.1337C69.9611 13.1337 69.3703 13.2871 68.8141 13.5899C68.2531 13.9032 67.8073 14.3232 67.474 14.849C67.1396 15.3775 66.9744 15.9537 66.9744 16.5794C66.9744 17.5261 67.3337 18.3442 68.0561 19.0309C68.7661 19.7118 69.6095 20.049 70.5836 20.049Z" fill="black"/>
|
||||||
|
<path d="M14.89 20.346C14.3722 19.5479 14.0427 18.6841 13.8909 17.7565L13.8794 17.7441C13.5191 18.1917 13.131 18.5536 12.716 18.8298C11.9417 19.3584 11.0992 19.6212 10.1885 19.6212C9.27779 19.6212 8.43529 19.3584 7.66004 18.8298C6.88478 18.3032 6.26707 17.606 5.80788 16.7393C5.34772 15.8632 5.11812 14.9527 5.11812 14.0051C5.11812 13.0584 5.34292 12.146 5.79347 11.2708C6.25363 10.4041 6.87133 9.70696 7.64563 9.17934C8.44009 8.65268 9.28644 8.38887 10.1885 8.38887C11.0896 8.38887 11.9369 8.65268 12.7295 9.17934C13.0907 9.41173 13.4653 9.75554 13.8525 10.2127L16.9496 7.03458C16.354 6.39173 15.6777 5.83744 14.9207 5.37268C13.4788 4.48792 11.9004 4.04601 10.1885 4.04601C8.48428 4.04601 6.90688 4.48792 5.45628 5.37268C3.99607 6.27554 2.84135 7.48125 1.99501 8.99173C1.14674 10.5108 0.723091 12.1822 0.723091 14.0051C0.723091 15.8184 1.14674 17.486 1.99501 19.006C2.84135 20.5155 3.99607 21.7165 5.45628 22.6108C6.90688 23.4955 8.48428 23.9374 10.1885 23.9374C11.9004 23.9374 13.4788 23.4955 14.9207 22.6108C15.3319 22.3574 15.72 22.0736 16.0889 21.7641C15.6326 21.3432 15.232 20.8717 14.89 20.346" fill="black"/>
|
||||||
|
<path d="M55.1112 23.6931C55.1112 23.6931 54.0679 18.6426 58.3822 16.6083C61.4026 15.3435 63.5218 12.3788 63.5218 8.92353C63.5218 4.31877 59.756 0.585437 55.1112 0.585437C50.4664 0.585437 46.7016 4.31877 46.7016 8.92353C46.7016 8.92353 46.2039 17.7921 55.1112 23.6931" fill="#FFD300"/>
|
||||||
|
<path d="M55.2899 14.574C55.2303 14.5759 55.1708 14.5788 55.1112 14.5788C52.6836 14.5788 50.6115 13.074 49.7882 10.955C49.5432 10.3245 49.4077 9.63975 49.4077 8.92356C49.4077 5.80165 51.9612 3.26927 55.1112 3.26927C58.2612 3.26927 60.8146 5.80165 60.8146 8.92356C60.8146 11.9874 58.3573 14.4797 55.2899 14.574" fill="white"/>
|
||||||
|
<path d="M55.4433 4.64935C54.7526 4.63887 54.058 4.8922 53.5229 5.40554C53.4634 5.46268 53.4624 5.55696 53.52 5.61696C53.5777 5.67506 53.6728 5.67696 53.7333 5.61982C54.2088 5.16268 54.8246 4.93887 55.4385 4.94744C56.0552 4.95697 56.6672 5.19792 57.1312 5.67125C57.1888 5.73125 57.2839 5.7322 57.3435 5.67506C57.403 5.61792 57.405 5.52268 57.3464 5.46363C56.8257 4.93125 56.1359 4.66077 55.4433 4.64935" fill="#515257"/>
|
||||||
|
<path d="M55.4259 6.03046C55.0906 6.02474 54.7525 6.14665 54.4931 6.39712C54.4335 6.45427 54.4316 6.54855 54.4893 6.6076C54.5479 6.66665 54.643 6.66855 54.7025 6.61046C54.9033 6.41808 55.1627 6.32474 55.4211 6.3276C55.6805 6.33236 55.936 6.43427 56.131 6.63331C56.1887 6.69141 56.2847 6.69236 56.3443 6.63617C56.4039 6.57808 56.4048 6.48474 56.3462 6.42474C56.0955 6.16855 55.7612 6.03522 55.4259 6.03046" fill="#515257"/>
|
||||||
|
<path d="M55.4363 5.34041C54.9233 5.33184 54.4055 5.51851 54.0087 5.90136C53.9492 5.95851 53.9473 6.05279 54.0049 6.11279C54.0625 6.17089 54.1576 6.17279 54.2172 6.1147C54.5563 5.78993 54.9944 5.63184 55.4324 5.63755C55.8695 5.64517 56.3018 5.8166 56.6313 6.15279C56.689 6.21089 56.7841 6.21279 56.8436 6.1547C56.9032 6.09755 56.9051 6.00327 56.8465 5.94517C56.4613 5.55089 55.9493 5.34803 55.4363 5.34041" fill="#515257"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.8307 7.6268C57.0305 7.76585 57.1852 7.95442 57.2937 8.19347C57.4023 8.43252 57.4561 8.72394 57.4561 9.06775C57.4561 9.34871 57.4023 9.60204 57.2937 9.8249C57.1852 10.0478 57.0353 10.2382 56.8422 10.3963C56.6472 10.5573 56.4186 10.6801 56.1563 10.763C55.8883 10.8487 55.6106 10.8916 55.3244 10.8916H54.8277V12.9525H53.4107V7.23918H55.1332C55.5175 7.23918 55.845 7.26966 56.1159 7.32871C56.3917 7.38775 56.6299 7.4868 56.8307 7.6268ZM55.2341 9.68013C55.4944 9.68013 55.6952 9.62585 55.8354 9.51918C55.9738 9.41442 56.0429 9.26109 56.0429 9.06013C56.0429 8.86394 55.9738 8.71347 55.8354 8.60871C55.6952 8.5049 55.4944 8.45156 55.2341 8.45156H54.8277V9.68013H55.2341Z" fill="#515257"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 8.5 KiB |
18
public/assets/images/cariparkir3.svg
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<svg width="157" height="33" viewBox="0 0 157 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.0121 15.2732C40.0497 16.2121 40.8542 17.2878 41.423 18.4966C42.0024 19.7461 42.2921 21.0918 42.2921 22.5389L42.2736 32.1943L36.3998 32.1377V31.5821C36.0048 31.7545 35.7138 31.873 35.5294 31.9336C34.2193 32.4379 32.8486 32.6934 31.4147 32.6934C29.5239 32.6934 27.7397 32.2549 26.0596 31.3793C24.3782 30.4892 23.0443 29.2778 22.0568 27.7465C21.0548 26.1888 20.5544 24.4521 20.5544 22.5389C20.5544 21.0918 20.8454 19.7461 21.4261 18.4966C22.0055 17.2615 22.8034 16.187 23.8159 15.2732C24.818 14.3581 25.9793 13.6616 27.3013 13.177C28.6219 12.6727 29.994 12.4186 31.4147 12.4186C32.8223 12.4186 34.1943 12.6661 35.5294 13.1599C36.8633 13.655 38.0246 14.3581 39.0121 15.2732ZM31.4147 27.3354C32.7617 27.3354 33.9231 26.8693 34.8987 25.9278C35.8863 24.9785 36.3814 23.8474 36.3814 22.5386C36.3814 21.6735 36.1536 20.8769 35.6954 20.1462C35.2385 19.4193 34.6275 18.8387 33.8599 18.4055C33.1067 17.9867 32.2917 17.7748 31.4147 17.7748C30.5628 17.7748 29.753 17.9867 28.988 18.4055C28.2204 18.8387 27.6094 19.4193 27.1525 20.1462C26.6956 20.8769 26.4665 21.6735 26.4665 22.5386C26.4665 23.8474 26.9603 24.9785 27.9491 25.9278C28.9248 26.8693 30.0809 27.3354 31.4147 27.3354Z" fill="#333333"/>
|
||||||
|
<path d="M58.5097 5.63704C58.041 5.36448 57.5209 5.22886 56.9521 5.22886C56.3846 5.22886 55.871 5.36448 55.4155 5.63704C54.9559 5.90828 54.5807 6.28486 54.2844 6.76809C54.0118 7.23816 53.8762 7.75563 53.8762 8.32445C53.8762 8.87879 54.0171 9.40547 54.3042 9.89924C54.5741 10.3693 54.9441 10.7472 55.4155 11.0303C55.871 11.3029 56.3846 11.4385 56.9521 11.4385C57.5209 11.4385 58.041 11.295 58.5097 11.0105C58.9785 10.7261 59.3498 10.3561 59.6224 9.89924C59.8936 9.44234 60.0292 8.91829 60.0292 8.32445C60.0292 7.75563 59.8936 7.23816 59.6224 6.76809C59.3366 6.28486 58.9666 5.90828 58.5097 5.63704Z" fill="#333333"/>
|
||||||
|
<path d="M54.0991 32.1738H60.0112V13.1776L54.0991 13.1974V32.1738Z" fill="#333333"/>
|
||||||
|
<path d="M51.4112 13.1772C45.9508 13.4497 43.22 16.2833 43.22 21.6831V32.1826H49.1504V21.6831C49.1504 19.6449 49.9036 18.5941 51.4112 18.5322H51.7444C52.2381 18.5586 52.6397 18.6758 52.9478 18.8851V13.2878C52.5528 13.2272 52.1526 13.1903 51.7444 13.1772H51.4112Z" fill="#333333"/>
|
||||||
|
<path d="M116.125 13.1772C110.664 13.4497 107.934 16.2833 107.934 21.6831V32.1826H113.864V21.6831C113.864 19.6449 114.617 18.5941 116.125 18.5322H116.458C116.952 18.5586 117.353 18.6758 117.661 18.8851V13.2878C117.266 13.2272 116.866 13.1903 116.458 13.1772H116.125Z" fill="#333333"/>
|
||||||
|
<path d="M155.08 13.1772C149.619 13.4497 146.888 16.2833 146.888 21.6831V32.1826H152.819V21.6831C152.819 19.6449 153.572 18.5941 155.08 18.5322H155.413C155.908 18.5586 156.308 18.6758 156.616 18.8851V13.2878C156.223 13.2272 155.821 13.1903 155.413 13.1772H155.08Z" fill="#333333"/>
|
||||||
|
<path d="M144.443 5.63704C143.973 5.36448 143.454 5.22886 142.886 5.22886C142.317 5.22886 141.804 5.36448 141.348 5.63704C140.89 5.90828 140.514 6.28486 140.217 6.76809C139.945 7.23816 139.809 7.75563 139.809 8.32445C139.809 8.87879 139.95 9.40547 140.236 9.89924C140.506 10.3693 140.877 10.7472 141.348 11.0303C141.804 11.3029 142.317 11.4385 142.886 11.4385C143.454 11.4385 143.973 11.295 144.443 11.0105C144.911 10.7261 145.283 10.3561 145.554 9.89924C145.825 9.44234 145.962 8.91829 145.962 8.32445C145.962 7.75563 145.825 7.23816 145.554 6.76809C145.269 6.28486 144.898 5.90828 144.443 5.63704Z" fill="#333333"/>
|
||||||
|
<path d="M137.678 13.1774L130.73 13.1774L124.595 20.3679H124.52V5.83932L118.59 5.85775V32.1367H124.52V22.8341L131.49 32.1367H138.884L130.822 21.316L137.678 13.1774Z" fill="#333333"/>
|
||||||
|
<path d="M140.031 32.1738H145.945V13.1776L140.031 13.1974V32.1738Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M103.727 15.2732C104.764 16.2121 105.568 17.2878 106.136 18.4966C106.717 19.7461 107.007 21.0918 107.007 22.5389L106.988 32.1943L101.114 32.1377V31.5821C100.717 31.7545 100.427 31.873 100.243 31.9336C98.9327 32.4379 97.562 32.6934 96.1281 32.6934C94.2373 32.6934 92.4518 32.2549 90.7717 31.3793C89.0902 30.4892 87.7577 29.2778 86.7689 27.7465C85.7695 26.1888 85.2678 24.4521 85.2678 22.5389C85.2678 21.0918 85.5575 19.7461 86.1408 18.4966C86.7188 17.2615 87.5168 16.187 88.5293 15.2732C89.53 14.3581 90.6927 13.6616 92.0133 13.177C93.3366 12.6727 94.7073 12.4186 96.1281 12.4186C97.537 12.4186 98.9077 12.6661 100.243 13.1599C101.577 13.655 102.738 14.3581 103.727 15.2732ZM96.128 27.3354C97.475 27.3354 98.6363 26.8693 99.612 25.9278C100.601 24.9785 101.095 23.8474 101.095 22.5386C101.095 21.6735 100.865 20.8769 100.407 20.1462C99.9517 19.4193 99.3407 18.8387 98.5744 18.4055C97.8199 17.9867 97.0062 17.7748 96.128 17.7748C95.2747 17.7748 94.465 17.9867 93.7026 18.4055C92.9336 18.8387 92.3227 19.4193 91.8658 20.1462C91.4075 20.8769 91.1811 21.6735 91.1811 22.5386C91.1811 23.8474 91.6735 24.9785 92.6637 25.9278C93.6367 26.8693 94.7928 27.3354 96.128 27.3354Z" fill="#333333"/>
|
||||||
|
<path d="M19.7926 27.7466C19.0829 26.6432 18.6312 25.4489 18.4232 24.1664L18.4074 24.1493C17.9136 24.7682 17.3817 25.2685 16.8129 25.6504C15.7516 26.3812 14.5968 26.7446 13.3486 26.7446C12.1003 26.7446 10.9456 26.3812 9.88299 25.6504C8.8204 24.9222 7.97375 23.9584 7.34436 22.7602C6.71366 21.5488 6.39896 20.29 6.39896 18.9799C6.39896 17.6711 6.70708 16.4097 7.32461 15.1996C7.95532 14.0014 8.80197 13.0376 9.86324 12.3081C10.9522 11.58 12.1122 11.2153 13.3486 11.2153C14.5837 11.2153 15.745 11.58 16.8313 12.3081C17.3264 12.6294 17.8399 13.1047 18.3705 13.7368L22.6156 9.34288C21.7992 8.4541 20.8723 7.68777 19.8347 7.04522C17.8583 5.82199 15.695 5.21104 13.3486 5.21104C11.0127 5.21104 8.85069 5.82199 6.86245 7.04522C4.86104 8.29346 3.27835 9.96042 2.11833 12.0487C0.955671 14.1489 0.375 16.4597 0.375 18.9799C0.375 21.4869 0.955671 23.7925 2.11833 25.894C3.27835 27.981 4.86104 29.6413 6.86245 30.8777C8.85069 32.101 11.0127 32.7119 13.3486 32.7119C15.695 32.7119 17.8583 32.101 19.8347 30.8777C20.3983 30.5275 20.9302 30.1351 21.4358 29.7072C20.8104 29.1252 20.2613 28.4734 19.7926 27.7466Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M79.4045 22.579C73.4911 25.3915 74.9211 32.374 74.9211 32.374C62.7125 24.2157 63.3946 11.9544 63.3946 11.9544C63.3946 5.58812 68.5548 0.426605 74.9211 0.426605C81.2874 0.426605 86.4489 5.58812 86.4489 11.9544C86.4489 16.7315 83.5443 20.8304 79.4045 22.579ZM75.1047 19.7687C75.1251 19.768 75.1455 19.7672 75.166 19.7666C79.3702 19.6362 82.7384 16.1904 82.7384 11.9545C82.7384 7.63832 79.2386 4.13718 74.921 4.13718C70.6035 4.13718 67.1037 7.63832 67.1037 11.9545C67.1037 12.9447 67.2894 13.8914 67.6251 14.7631C68.7536 17.6927 71.5937 19.7732 74.921 19.7732C74.9823 19.7732 75.0435 19.7709 75.1047 19.7687Z" fill="#FCD205"/>
|
||||||
|
<path d="M75.3762 6.04428C74.4295 6.0298 73.4775 6.38004 72.7441 7.08975C72.6625 7.16876 72.6612 7.29911 72.7402 7.38206C72.8192 7.46238 72.9495 7.46502 73.0325 7.38601C73.6842 6.75399 74.5283 6.44456 75.3696 6.45641C76.215 6.46958 77.0537 6.80271 77.6897 7.45712C77.7687 7.54007 77.899 7.54139 77.9807 7.46238C78.0623 7.38338 78.065 7.25171 77.9846 7.17007C77.271 6.43403 76.3256 6.06008 75.3762 6.04428Z" fill="#333333"/>
|
||||||
|
<path d="M75.3527 7.95489C74.8931 7.94699 74.4297 8.11553 74.0741 8.46182C73.9925 8.54082 73.9899 8.67118 74.0689 8.75281C74.1492 8.83445 74.2795 8.83708 74.3612 8.75676C74.6364 8.49079 74.9919 8.36175 75.3461 8.3657C75.7016 8.37228 76.0518 8.51317 76.3191 8.78837C76.3981 8.86869 76.5298 8.87 76.6114 8.79232C76.6931 8.712 76.6944 8.58296 76.6141 8.50001C76.2704 8.14581 75.8122 7.96147 75.3527 7.95489Z" fill="#333333"/>
|
||||||
|
<path d="M75.3667 6.99984C74.6636 6.98799 73.9539 7.24607 73.4101 7.77539C73.3284 7.85439 73.3258 7.98474 73.4048 8.0677C73.4838 8.14802 73.6142 8.15065 73.6958 8.07033C74.1606 7.62133 74.761 7.40276 75.3614 7.41066C75.9606 7.42119 76.5531 7.6582 77.0047 8.123C77.0837 8.20332 77.2141 8.20595 77.2957 8.12563C77.3773 8.04663 77.38 7.91627 77.2996 7.83595C76.7716 7.29083 76.0698 7.01037 75.3667 6.99984Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M77.2778 10.1604C77.5517 10.3526 77.7637 10.6133 77.9125 10.9438C78.0613 11.2743 78.135 11.6772 78.135 12.1526C78.135 12.541 78.0613 12.8912 77.9125 13.1994C77.7637 13.5075 77.5583 13.7708 77.2936 13.9894C77.0263 14.2119 76.713 14.3818 76.3535 14.4963C75.9861 14.6148 75.6056 14.6741 75.2132 14.6741H74.5325V17.5234H72.5903V9.62447H74.9512C75.4779 9.62447 75.9269 9.66661 76.2982 9.74824C76.6761 9.82988 77.0026 9.96682 77.2778 10.1604ZM75.0895 12.9997C75.4463 12.9997 75.7215 12.9247 75.9138 12.7772C76.1034 12.6324 76.1982 12.4204 76.1982 12.1425C76.1982 11.8713 76.1034 11.6633 75.9138 11.5184C75.7215 11.3749 75.4463 11.3012 75.0895 11.3012H74.5325V12.9997H75.0895Z" fill="#333333"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 8.6 KiB |
57
public/assets/images/confirmation.svg
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
<svg width="212" height="157" viewBox="0 0 212 157" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M169.273 111.397C169.273 111.397 154.221 109.442 165.447 133.804C165.447 133.804 175.677 129.42 176.084 119.532C176.256 115.549 173.421 112.067 169.486 111.427L169.273 111.397Z" fill="#333333"/>
|
||||||
|
<path d="M169.494 111.36C169.494 111.36 172.902 124.944 165.458 133.806" stroke="#535461" stroke-width="0.586712"/>
|
||||||
|
<path d="M165.255 135.062C165.255 135.062 170.675 121.705 180.795 116.75C185.057 114.699 188.538 111.32 190.714 107.121C191.731 105.121 192.563 103.033 193.199 100.881" stroke="#535461" stroke-width="1.17342"/>
|
||||||
|
<path d="M199.558 97.7227C198.503 99.0488 193.043 100.99 193.043 100.99C193.043 100.99 193.7 95.2242 194.755 93.9077C195.411 92.9713 196.532 92.476 197.666 92.6219C198.8 92.7677 199.76 93.5306 200.157 94.6026C200.555 95.6746 200.325 96.8785 199.56 97.7285L199.558 97.7227Z" fill="#333333"/>
|
||||||
|
<path d="M197.684 108.226C196.077 108.766 190.442 107.423 190.442 107.423C190.442 107.423 194.123 102.949 195.73 102.408C196.79 101.974 198.004 102.165 198.88 102.905C199.756 103.644 200.147 104.81 199.896 105.928C199.644 107.046 198.792 107.932 197.684 108.226Z" fill="#333333"/>
|
||||||
|
<path d="M187.525 120.643C185.867 120.299 181.679 116.294 181.679 116.294C181.679 116.294 187.114 114.289 188.774 114.633C190.334 115.068 191.289 116.637 190.959 118.222C190.63 119.806 189.128 120.864 187.525 120.641V120.643Z" fill="#333333"/>
|
||||||
|
<path d="M177.724 128.308C176.03 128.248 171.226 125.01 171.226 125.01C171.226 125.01 176.246 122.111 177.939 122.173C179.55 122.337 180.757 123.722 180.701 125.34C180.644 126.958 179.342 128.255 177.724 128.306V128.308Z" fill="#333333"/>
|
||||||
|
<path d="M185.196 103.661C185.413 105.343 189.082 109.825 189.082 109.825C189.082 109.825 191.498 104.559 191.283 102.877C191.211 101.733 190.508 100.724 189.46 100.259C188.412 99.7943 187.192 99.9514 186.296 100.667C185.4 101.382 184.976 102.536 185.196 103.661Z" fill="#333333"/>
|
||||||
|
<path d="M173.845 112.779C174.554 114.316 179.397 117.497 179.397 117.497C179.397 117.497 180.127 111.749 179.418 110.211C179.006 109.142 178.034 108.39 176.896 108.261C175.757 108.132 174.641 108.646 174 109.596C173.359 110.546 173.299 111.773 173.845 112.781V112.779Z" fill="#333333"/>
|
||||||
|
<path d="M164.029 123.146C164.467 124.783 168.705 128.735 168.705 128.735C168.705 128.735 170.396 123.194 169.956 121.556C169.733 120.431 168.902 119.523 167.8 119.202C166.699 118.881 165.51 119.2 164.717 120.029C163.924 120.858 163.659 122.06 164.029 123.146Z" fill="#333333"/>
|
||||||
|
<path opacity="0.25" d="M199.558 97.7227C198.503 99.0488 193.043 100.99 193.043 100.99C193.043 100.99 193.7 95.2242 194.755 93.9077C195.411 92.9713 196.532 92.476 197.666 92.6219C198.8 92.7677 199.76 93.5306 200.157 94.6026C200.555 95.6746 200.325 96.8785 199.56 97.7285L199.558 97.7227Z" fill="black"/>
|
||||||
|
<path opacity="0.25" d="M197.684 108.226C196.077 108.766 190.442 107.423 190.442 107.423C190.442 107.423 194.123 102.949 195.73 102.408C196.79 101.974 198.004 102.165 198.88 102.905C199.756 103.644 200.147 104.81 199.896 105.928C199.644 107.046 198.792 107.932 197.684 108.226Z" fill="black"/>
|
||||||
|
<path opacity="0.25" d="M187.525 120.643C185.867 120.299 181.679 116.294 181.679 116.294C181.679 116.294 187.114 114.289 188.774 114.633C190.334 115.068 191.289 116.637 190.959 118.222C190.63 119.806 189.128 120.864 187.525 120.641V120.643Z" fill="black"/>
|
||||||
|
<path opacity="0.25" d="M177.724 128.308C176.03 128.248 171.226 125.01 171.226 125.01C171.226 125.01 176.246 122.111 177.939 122.173C179.55 122.337 180.757 123.722 180.701 125.34C180.644 126.958 179.342 128.255 177.724 128.306V128.308Z" fill="black"/>
|
||||||
|
<path opacity="0.25" d="M185.196 103.661C185.413 105.343 189.082 109.825 189.082 109.825C189.082 109.825 191.498 104.559 191.283 102.877C191.211 101.733 190.508 100.724 189.46 100.259C188.412 99.7943 187.192 99.9514 186.296 100.667C185.4 101.382 184.976 102.536 185.196 103.661Z" fill="black"/>
|
||||||
|
<path opacity="0.25" d="M173.845 112.779C174.554 114.316 179.397 117.497 179.397 117.497C179.397 117.497 180.127 111.749 179.418 110.211C179.006 109.142 178.034 108.39 176.896 108.261C175.757 108.132 174.641 108.646 174 109.596C173.359 110.546 173.299 111.773 173.845 112.781V112.779Z" fill="black"/>
|
||||||
|
<path opacity="0.25" d="M164.029 123.146C164.467 124.783 168.705 128.735 168.705 128.735C168.705 128.735 170.396 123.194 169.956 121.556C169.733 120.431 168.902 119.523 167.8 119.202C166.699 118.881 165.51 119.2 164.717 120.029C163.924 120.858 163.659 122.06 164.029 123.146Z" fill="black"/>
|
||||||
|
<path d="M172.473 141.138C172.473 141.138 177.892 127.781 188.013 122.826C192.273 120.773 195.751 117.394 197.926 113.195C198.943 111.196 199.775 109.107 200.411 106.955" stroke="#535461" stroke-width="1.17342"/>
|
||||||
|
<path d="M206.767 103.796C205.712 105.122 200.252 107.063 200.252 107.063C200.252 107.063 200.909 101.298 201.964 99.9813C203.052 98.7727 204.892 98.6193 206.164 99.6312C207.437 100.643 207.702 102.47 206.769 103.802L206.767 103.796Z" fill="#333333"/>
|
||||||
|
<path d="M204.897 114.299C203.29 114.839 197.655 113.496 197.655 113.496C197.655 113.496 201.336 109.021 202.942 108.481C204.509 108.066 206.13 108.938 206.646 110.474C207.162 112.011 206.397 113.684 204.897 114.299Z" fill="#333333"/>
|
||||||
|
<path d="M194.738 126.724C193.079 126.38 188.892 122.375 188.892 122.375C188.892 122.375 194.327 120.37 195.987 120.715C197.546 121.149 198.502 122.718 198.172 124.303C197.843 125.887 196.341 126.945 194.738 126.722V126.724Z" fill="#333333"/>
|
||||||
|
<path d="M184.934 134.379C183.241 134.319 178.437 131.081 178.437 131.081C178.437 131.081 183.457 128.186 185.15 128.246C186.761 128.41 187.968 129.795 187.912 131.413C187.855 133.031 186.553 134.328 184.934 134.379Z" fill="#333333"/>
|
||||||
|
<path d="M192.407 109.742C192.624 111.424 196.293 115.906 196.293 115.906C196.293 115.906 198.709 110.64 198.494 108.958C198.422 107.814 197.719 106.805 196.671 106.34C195.623 105.875 194.403 106.032 193.507 106.748C192.611 107.463 192.187 108.617 192.407 109.742Z" fill="#333333"/>
|
||||||
|
<path d="M181.059 118.845C181.768 120.382 186.611 123.563 186.611 123.563C186.611 123.563 187.341 117.815 186.632 116.277C185.86 114.851 184.113 114.27 182.641 114.949C181.168 115.628 180.476 117.333 181.059 118.847V118.845Z" fill="#333333"/>
|
||||||
|
<path d="M171.241 129.222C171.679 130.86 175.917 134.811 175.917 134.811C175.917 134.811 177.608 129.27 177.168 127.633C176.646 126.1 175.025 125.235 173.461 125.654C171.897 126.074 170.926 127.634 171.241 129.222Z" fill="#333333"/>
|
||||||
|
</g>
|
||||||
|
<path opacity="0.1" d="M2.71973 83.4951C6.05613 97.7556 13.1191 110.083 24.2815 116.058C47.4787 128.475 99.7946 122.071 138.84 114.712C158.568 111.008 176.476 100.772 189.68 85.6534L2.71973 83.4951Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M207.468 16.3709H186.045C185.022 16.3709 184.193 15.5418 184.193 14.5191C184.193 13.4964 185.022 12.6674 186.045 12.6674H189.749C188.726 12.6674 187.897 11.8383 187.897 10.8156C187.897 9.79293 188.726 8.96388 189.749 8.96388H187.104C186.081 8.96388 185.252 8.13482 185.252 7.11213C185.252 6.08944 186.081 5.26039 187.104 5.26039H198.286C195.804 4.10725 192.904 3.2866 189.564 2.8561C159.075 -1.06072 148.19 1.52999 144.35 4.20142C139.612 7.48786 134.327 9.90561 128.678 11.0703C109.865 14.9467 74.6848 19.6169 42.7987 9.5712C26.9507 4.57427 15.1714 13.0152 8.1123 27.1142H211.187C210.922 23.0168 210.128 19.2345 208.672 15.9211C208.338 16.2106 207.91 16.3702 207.468 16.3709Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M1.73374 78.6113C0.358914 70.3908 0.0790866 62.0244 0.901559 53.7305L202.895 65.5597C199.458 72.7625 195.062 79.4668 189.826 85.4898L1.73374 78.6113ZM73.4425 73.3309C73.4425 72.3082 72.6134 71.4792 71.5908 71.4792H75.2942C76.3169 71.4792 77.146 70.6501 77.146 69.6274C77.146 68.6047 76.3169 67.7757 75.2942 67.7757H72.6497C73.6724 67.7757 74.5015 66.9466 74.5015 65.9239C74.5015 64.9012 73.6724 64.0722 72.6497 64.0722H51.2264C50.2037 64.0722 49.3746 64.9012 49.3746 65.9239C49.3746 66.9466 50.2037 67.7757 51.2264 67.7757H53.8709C52.8482 67.7757 52.0191 68.6047 52.0191 69.6274C52.0191 70.6501 52.8482 71.4792 53.8709 71.4792H50.1674C49.1447 71.4792 48.3157 72.3082 48.3157 73.3309C48.3157 74.3536 49.1447 75.1827 50.1674 75.1827H71.5908C72.6134 75.1827 73.4425 74.3536 73.4425 73.3309Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M5.84449 32.2401L211.197 27.2432C211.445 31.2273 211.199 35.5054 210.584 39.9277C209.947 44.5048 208.949 49.0244 207.599 53.4443H0.932129C1.70089 45.9201 3.34795 38.6611 5.84449 32.2401ZM40.7701 45.4637C40.7701 44.441 39.9411 43.6119 38.9184 43.6119H42.6219C43.6446 43.6119 44.4736 42.7829 44.4736 41.7602C44.4736 40.7375 43.6446 39.9084 42.6219 39.9084H39.9773C41 39.9084 41.8291 39.0794 41.8291 38.0567C41.8291 37.034 41 36.205 39.9773 36.205H18.554C17.5313 36.205 16.7022 37.034 16.7022 38.0567C16.7022 39.0794 17.5313 39.9084 18.554 39.9084H21.1985C20.1758 39.9084 19.3468 40.7375 19.3468 41.7602C19.3468 42.7829 20.1758 43.6119 21.1985 43.6119H17.495C16.4723 43.6119 15.6433 44.441 15.6433 45.4637C15.6433 46.4864 16.4723 47.3154 17.495 47.3154H38.9184C39.9411 47.3154 40.7701 46.4864 40.7701 45.4637Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M180.846 156.783C180.846 156.783 172.282 109.812 155.952 102.189C142.114 95.7262 127.151 91.3692 122.896 90.1873C122.26 89.1638 121.526 88.2053 120.703 87.3256C114.887 81.2543 111.393 81.3677 110.828 81.4426C110.56 80.2387 110.367 79.0191 110.251 77.791L110.236 77.6245C110.224 77.4928 110.212 77.3642 110.201 77.2299L110.251 77.2049C110.217 76.8416 110.186 76.4669 110.159 76.0806C112.533 74.8135 114.719 73.2216 116.653 71.3508C116.664 71.3858 116.674 71.4208 116.684 71.456C116.697 71.5038 116.711 71.5519 116.726 71.6006C120.917 68.0579 125.022 64.4191 129.04 60.6843C130.193 59.6061 131.404 58.4356 131.796 56.9154C131.921 56.3923 131.97 55.8536 131.94 55.3164C131.97 54.6385 131.889 53.952 131.807 53.2639C131.749 52.7815 131.692 52.2983 131.673 51.8166C131.673 51.6245 131.694 51.4457 131.719 51.2631C131.943 49.6718 132.901 48.3174 133.846 46.9828C134.036 46.7136 134.226 46.4452 134.41 46.1759C137.137 42.1204 138.56 37.3287 138.49 32.442C138.52 30.1005 138.196 27.7679 137.529 25.5232C136.677 22.675 134.905 19.6826 131.955 19.0599C131.231 18.9075 130.489 18.9121 129.746 18.9167C129.318 18.9193 128.889 18.922 128.463 18.8946C124.665 18.6524 121.619 16.1682 118.617 13.72L118.617 13.7199C117.808 13.0602 117.003 12.4031 116.186 11.7932C111.493 8.30344 105.942 6.14907 100.123 5.55857C98.3068 5.36638 96.431 5.35293 94.7033 5.9295C92.6425 6.61541 91.0115 8.06188 89.3752 9.51316C87.9304 10.7945 86.4814 12.0796 84.7286 12.8483C83.1786 13.5317 81.4933 13.7695 79.8033 14.008C78.48 14.1948 77.1539 14.3819 75.8879 14.7837C71.5963 16.1482 67.9543 20.5493 67.8582 25.0716V25.5732V25.6577C67.8327 26.8739 68.0521 28.102 68.2728 29.3375L68.2728 29.3376C68.4668 30.4235 68.6618 31.5151 68.6923 32.6092C68.6923 32.8206 68.6955 33.0327 68.7019 33.2454C68.6808 35.7708 68.3791 38.3038 67.4585 40.6773C67.4154 40.7884 67.3712 40.901 67.3266 41.0148L67.3266 41.0148C66.8573 42.2111 66.3336 43.5463 66.4283 44.7133C66.3707 45.4955 66.5225 46.2297 67.0664 46.8274L67.9947 46.0087C67.6834 47.6936 67.527 49.4036 67.5277 51.1171C67.5277 59.7541 71.456 67.4878 77.6522 72.6923C77.6881 73.2675 77.7227 73.8838 77.756 74.5411C77.9021 77.3894 78.0174 80.9622 77.9847 84.8559L68.921 93.1873L45.62 103.758C45.62 103.758 24.31 108.259 28.8995 138.196L31.0905 156.785H50.5458L50.5016 156.883H79.3781L79.3954 156.785H148.099L148.086 156.883H150.776V156.785L180.846 156.783ZM110.999 81.9193C111.588 83.1376 112.052 84.4126 112.383 85.7246C111.703 84.462 111.2 83.1117 110.889 81.7117L110.918 81.7636L110.999 81.9193ZM77.9578 86.872C77.9706 86.4992 77.977 86.1295 77.977 85.7631V85.7535C77.9304 86.1463 77.9086 86.5417 77.9117 86.9373L77.9578 86.872Z" fill="url(#paint0_linear_1_19952)"/>
|
||||||
|
<path d="M118.6 90.4774L114.756 127.186L94.1919 133.72C94.1919 133.72 67.4775 128.723 74.3963 114.309C79.3183 104.056 79.1819 85.7323 78.6937 76.0075C78.5015 72.0599 78.2401 69.5288 78.2401 69.5288C78.2401 69.5288 113.219 38.9707 110.336 66.4537C109.778 71.7755 109.746 75.9364 110.055 79.1882C111.352 92.726 118.6 90.4774 118.6 90.4774Z" fill="#FDC2CC"/>
|
||||||
|
<path opacity="0.03" d="M118.6 90.4774L114.756 127.186L94.1919 133.72C94.1919 133.72 67.4775 128.723 74.3963 114.309C79.3183 104.056 79.1819 85.7323 78.6937 76.0075C78.5015 72.0599 78.2401 69.5288 78.2401 69.5288C78.2401 69.5288 113.219 38.9707 110.336 66.4537C109.778 71.7755 109.746 75.9364 110.055 79.1882C111.352 92.726 118.6 90.4774 118.6 90.4774Z" fill="#FBBEBE"/>
|
||||||
|
<path opacity="0.1" d="M110.336 65.8766C109.779 71.1983 109.746 75.3592 110.055 78.6111C99.9477 84.1292 87.4876 82.8655 78.6938 75.4303C78.5016 71.4828 78.2402 68.9516 78.2402 68.9516C78.2402 68.9516 113.219 38.3935 110.336 65.8766Z" fill="black"/>
|
||||||
|
<circle cx="96.6907" cy="53.0022" r="27.8675" fill="#FDC2CC"/>
|
||||||
|
<circle opacity="0.03" cx="96.6907" cy="53.0022" r="27.8675" fill="#FBBEBE"/>
|
||||||
|
<path d="M178.179 156.782H33.6528L31.5387 138.524C27.1183 109.119 47.6826 104.699 47.6826 104.699L70.1687 94.3206L79.1056 85.9604C76.2227 96.9152 98.0362 119.69 98.0362 119.69C98.1764 119.559 98.3092 119.421 98.434 119.276C99.0221 118.635 100.427 117.028 103.717 113.042C104.894 111.614 106.314 109.882 108.024 107.78C116.25 97.6705 112.03 85.7259 110.769 83.2563L110.69 83.1025C110.642 83.0141 110.605 82.943 110.577 82.8931C110.569 82.8749 110.559 82.8575 110.548 82.8412C110.54 82.8289 110.533 82.816 110.527 82.8027L121.097 91.0669C121.097 91.0669 121.503 91.1745 122.25 91.3859C126.363 92.5391 140.812 96.8268 154.154 103.175C169.915 110.657 178.179 156.782 178.179 156.782Z" fill="#333333"/>
|
||||||
|
<path d="M128.978 112.771C127.249 111.042 115.525 108.928 115.525 108.928C115.909 113.54 101.687 120.651 101.687 120.651L102.744 156.783H95.9256L94.7725 124.303L98.0397 119.69L98.4375 119.277C100.331 117.315 102.096 115.232 103.721 113.042C104.897 111.614 106.317 109.883 108.028 107.78C116.253 97.6711 112.033 85.7265 110.772 83.2568L110.693 83.1031C110.647 83.0128 110.611 82.9436 110.58 82.8936C110.572 82.8754 110.562 82.8581 110.551 82.8417C110.543 82.8294 110.536 82.8166 110.53 82.8033C110.53 82.8033 113.989 82.0345 120.14 88.569C120.935 89.4368 121.643 90.3805 122.254 91.3865C127.251 99.4046 130.502 114.295 128.978 112.771Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M128.978 112.771C127.249 111.042 115.525 108.928 115.525 108.928C115.909 113.54 101.687 120.651 101.687 120.651L102.744 156.783H95.9256L94.7725 124.303L98.0397 119.69L98.4375 119.277C100.331 117.315 102.096 115.232 103.721 113.042C104.897 111.614 106.317 109.883 108.028 107.78C116.253 97.6711 112.033 85.7265 110.772 83.2568L110.693 83.1031C110.647 83.0128 110.611 82.9436 110.58 82.8936C110.572 82.8754 110.562 82.8581 110.551 82.8417C110.543 82.8294 110.536 82.8166 110.53 82.8033C110.53 82.8033 113.989 82.0345 120.14 88.569C120.935 89.4368 121.643 90.3805 122.254 91.3865C127.251 99.4046 130.502 114.295 128.978 112.771Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M50.7578 127.569C50.7578 127.569 59.7907 146.02 60.2712 156.878L50.7578 127.569Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M149.158 138.142L146.563 156.88H149.158V138.142Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M52.7754 156.879L67.0935 124.302C67.0935 124.302 71.1295 116.615 72.0904 108.927C73.0514 101.24 78.2405 89.1318 78.2405 89.1318C78.2405 89.1318 91.1172 72.7957 97.0751 75.102C103.033 77.4083 91.8859 86.0568 91.8859 86.0568C91.8859 86.0568 108.222 92.399 97.0751 111.234C85.9281 130.068 85.7359 126.609 85.7359 126.609L80.2585 156.879H52.7754Z" fill="black"/>
|
||||||
|
<path d="M52.3906 156.879L66.7087 124.303C66.7087 124.303 70.7447 116.615 71.7057 108.927C72.3168 104.04 74.6366 97.3653 76.2452 93.1506C77.2952 90.3952 78.8402 87.8549 80.8039 85.6552C84.9667 80.9966 92.5275 73.4839 96.6903 75.0983C102.648 77.4045 91.5012 86.0531 91.5012 86.0531C91.5012 86.0531 107.837 92.3953 96.6903 111.23C85.5433 130.064 85.3511 126.605 85.3511 126.605L79.8737 156.875L52.3906 156.879Z" fill="#FBBEBE"/>
|
||||||
|
<circle opacity="0.15" cx="105.244" cy="37.3383" r="0.576568" fill="white"/>
|
||||||
|
<circle opacity="0.15" cx="102.552" cy="38.4916" r="0.576568" fill="white"/>
|
||||||
|
<path opacity="0.1" d="M76.8931 17.8831C79.6741 16.9836 82.7606 17.1778 85.4282 15.9823C89.0356 14.3641 91.3092 10.4473 95.0531 9.17883C96.7213 8.6138 98.5317 8.63494 100.283 8.8156C105.913 9.40155 111.274 11.52 115.785 14.9407C119.496 17.7639 122.978 21.6135 127.631 21.9152C128.755 21.9883 129.899 21.8403 131 22.0767C133.852 22.6878 135.561 25.6264 136.381 28.4189C138.303 35.1161 137.203 42.3184 133.372 48.1376C132.319 49.7135 131.035 51.2568 130.775 53.1345C130.522 54.9757 131.306 56.8841 130.848 58.6868C130.464 60.1801 129.311 61.3294 128.188 62.3884C124.313 66.0541 120.352 69.6256 116.305 73.103C114.203 66.4225 117.287 59.2288 116.807 52.2427C116.615 49.5213 115.654 46.5501 113.253 45.2662C111.007 44.067 108.135 44.6897 105.862 43.5365C103.325 42.2585 102.283 39.2315 100.365 37.1366C97.098 33.5619 91.4265 33.1007 86.8581 34.715C82.2898 36.3294 78.5555 39.6505 74.9424 42.8889L68.3753 48.7795C67.0933 47.3342 68.0658 45.1163 68.7596 43.3098C69.7936 40.6018 70.0204 37.6824 69.9512 34.8073C69.8955 32.501 69.0998 30.2236 69.1459 27.9788C69.2382 23.5508 72.7514 19.2227 76.8931 17.8831Z" fill="black"/>
|
||||||
|
<path d="M76.8931 17.3069C79.6741 16.4075 82.7606 16.6016 85.4282 15.4062C89.0356 13.7879 91.3092 9.87111 95.0531 8.60266C96.7213 8.03762 98.5317 8.05877 100.283 8.23942C105.913 8.82538 111.274 10.9439 115.785 14.3645C119.496 17.1878 122.978 21.0373 127.631 21.3391C128.755 21.4121 129.899 21.2641 131 21.5005C133.852 22.1117 135.561 25.0502 136.381 27.8427C138.303 34.54 137.203 41.7422 133.372 47.5614C132.319 49.1373 131.035 50.6806 130.775 52.5583C130.522 54.3995 131.306 56.3079 130.848 58.1107C130.464 59.604 129.311 60.7533 128.188 61.8122C124.313 65.4779 120.352 69.0494 116.305 72.5268C114.203 65.8463 117.287 58.6526 116.807 51.6665C116.615 48.9451 115.654 45.9739 113.253 44.6901C111.007 43.4908 108.135 44.1135 105.862 42.9604C103.325 41.6823 102.283 38.6553 100.365 36.5605C97.098 32.9857 91.4265 32.5245 86.8581 34.1389C82.2898 35.7533 78.5555 39.0743 74.9424 42.3127L68.3753 48.2033C67.0933 46.758 68.0658 44.5402 68.7596 42.7336C69.7936 40.0256 70.0204 37.1063 69.9512 34.2311C69.8955 31.9248 69.0998 29.6474 69.1459 27.4026C69.2382 22.9746 72.7514 18.6465 76.8931 17.3069Z" fill="#865A61"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_1_19952" x1="180.847" y1="156.879" x2="180.847" y2="5.4298" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#808080" stop-opacity="0.25"/>
|
||||||
|
<stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
|
||||||
|
<stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
BIN
public/assets/images/flash-screeen.png
Normal file
After Width: | Height: | Size: 28 KiB |
240
public/assets/images/flash-screen.svg
Normal file
|
@ -0,0 +1,240 @@
|
||||||
|
<svg width="375" height="374" viewBox="0 0 375 374" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<mask id="mask0_334_1042" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="375" height="374">
|
||||||
|
<rect y="0.858398" width="375" height="372.917" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_334_1042)">
|
||||||
|
<path d="M418.665 246.993C406.805 271.469 382.708 287.836 357.745 298.629C324.132 313.165 287.116 318.93 250.609 316.492C244.208 316.069 237.829 315.389 231.473 314.451C209.387 311.223 187.855 304.947 167.494 295.802C161.629 293.153 155.868 290.271 150.211 287.157C140.793 281.937 131.77 276.035 123.212 269.5C121.06 267.856 118.937 266.171 116.844 264.444C115.393 263.248 113.955 262.024 112.494 260.836C109.413 258.331 106.242 255.951 102.706 254.169C101.638 253.631 100.544 253.148 99.4278 252.722C88.2279 248.462 75.3132 250.069 63.6533 253.392C54.7934 255.897 46.1613 259.358 37.288 261.827C33.3471 262.959 29.3315 263.813 25.2709 264.382C16.2019 265.537 6.99059 264.735 -1.74197 262.028L-2.48774 261.796C-3.73812 261.403 -4.9781 260.973 -6.20764 260.506L-6.95341 260.22C-8.14426 259.761 -9.3098 259.269 -10.45 258.742L-11.1958 258.402C-12.3866 257.849 -13.5522 257.264 -14.6924 256.647C-15.1033 256.433 -15.5096 256.201 -15.9115 255.982C-22.399 252.359 -28.296 247.767 -33.3991 242.366C-33.5465 242.219 -33.6849 242.067 -33.8457 241.92C-34.5557 241.151 -35.2524 240.37 -35.9267 239.571C-36.1768 239.276 -36.4268 238.981 -36.6725 238.677C-37.4733 237.698 -38.2459 236.699 -38.9901 235.681C-39.1018 235.534 -39.209 235.382 -39.3161 235.234C-42.3674 231.015 -44.8969 226.441 -46.8497 221.614C-46.9122 221.467 -46.9703 221.315 -47.0239 221.168C-47.6193 219.634 -48.1626 218.076 -48.6539 216.492C-48.8548 215.831 -49.0468 215.152 -49.2165 214.491C-49.2746 214.295 -49.3282 214.094 -49.3773 213.897C-51.82 204.198 -52.0835 194.11 -52.0835 184.08C-52.0835 182.91 -52.0835 181.742 -52.0835 180.575C-52.012 164.351 -51.762 147.85 -49.3684 131.85C-49.3684 131.738 -49.3371 131.626 -49.3192 131.519C-48.5181 126.133 -47.4284 120.793 -46.0548 115.523C-44.6173 109.994 -42.78 104.576 -40.5576 99.3127C-35.0514 86.3623 -27.0445 74.5773 -18.1533 63.6543C4.2197 36.186 33.5904 13.094 67.9672 4.47968C105.01 -4.82232 146.179 4.09116 176.059 27.8798C185.169 35.1321 193.354 43.7195 203.585 49.2793C212.517 54.1201 222.971 56.1252 232.536 52.316C240.44 49.19 245.585 47.6047 254.463 48.0825C272.841 49.1194 290.96 52.9114 308.211 59.3315C308.908 59.5861 309.605 59.8496 310.297 60.113C355.271 77.3282 393.939 111.513 414.026 155.442C414.558 156.603 415.075 157.773 415.575 158.952C427.556 186.916 431.879 219.725 418.665 246.993Z" fill="#F9FAFC"/>
|
||||||
|
<path opacity="0.1" d="M37.288 92.9795V262.3C33.3471 263.432 29.3315 264.285 25.2709 264.854C16.2019 266.01 6.99059 265.207 -1.74197 262.501L-2.48774 262.269C-3.73812 261.876 -4.9781 261.446 -6.20764 260.978L-6.95341 260.692C-8.14426 260.234 -9.3098 259.741 -10.45 259.214L-11.1958 258.875C-12.3866 258.321 -13.5522 257.736 -14.6924 257.12C-15.1033 256.905 -15.5096 256.673 -15.9115 256.454C-22.399 252.831 -28.296 248.24 -33.3991 242.839C-33.5465 242.691 -33.6849 242.539 -33.8457 242.392C-34.5557 241.624 -35.2524 240.842 -35.9267 240.043C-36.1768 239.748 -36.4268 239.454 -36.6725 239.15C-37.4733 238.17 -38.2459 237.172 -38.9901 236.153C-39.1018 236.006 -39.209 235.854 -39.3161 235.707C-42.3674 231.487 -44.8969 226.914 -46.8497 222.087C-46.9122 221.939 -46.9703 221.787 -47.0239 221.64C-47.6193 220.107 -48.1626 218.548 -48.6539 216.964C-48.8548 216.304 -49.0468 215.625 -49.2165 214.964C-49.2746 214.767 -49.3282 214.566 -49.3773 214.37C-51.82 204.67 -52.0835 194.583 -52.0835 184.553C-52.0835 183.383 -52.0835 182.214 -52.0835 181.047C-52.012 164.823 -51.762 148.323 -49.3684 132.322C-49.3684 132.21 -49.3371 132.099 -49.3192 131.992C-48.5181 126.605 -47.4284 121.265 -46.0548 115.996H-0.464787V92.9795H8.64965V74.4961H28.2182V92.9795H37.288Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M418.666 246.993C406.805 271.469 382.708 287.836 357.745 298.629C324.132 313.165 287.116 318.93 250.609 316.492C244.208 316.069 237.83 315.389 231.473 314.451C209.387 311.224 187.855 304.948 167.494 295.803C161.629 293.153 155.868 290.271 150.212 287.157C140.794 281.937 131.77 276.036 123.212 269.5C121.06 267.857 118.937 266.171 116.844 264.445C115.393 263.248 113.955 262.024 112.495 260.836C109.413 258.331 106.243 255.951 102.706 254.169C101.639 253.631 100.545 253.148 99.428 252.722V183.433H182.306V198.853H218.679V86.059H261.492V131.162H282.668V104.458H300.164V75.9308H308.203V59.3096C308.899 59.5641 309.596 59.8276 310.288 60.0911V75.9308H318.121V104.475H335.613V131.18H361.393V232.922H402.37V158.93H415.575C427.557 186.916 431.879 219.725 418.666 246.993Z" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="231.473" y="103.028" width="19.1354" height="19.1354" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="231.473" y="142.697" width="19.1354" height="19.1354" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="231.473" y="182.36" width="19.1354" height="19.1354" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="282.57" y="154.843" width="12.4548" height="12.4548" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="12.843" y="92.8057" width="12.4548" height="12.4548" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="12.843" y="121.742" width="12.4548" height="12.4548" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="12.843" y="150.681" width="12.4548" height="12.4548" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="330.129" y="154.843" width="12.4548" height="12.4548" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="282.57" y="185.572" width="12.4548" height="12.4548" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="330.129" y="185.572" width="12.4548" height="12.4548" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="282.57" y="216.295" width="12.4548" height="12.4548" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="330.129" y="216.295" width="12.4548" height="12.4548" fill="#333333"/>
|
||||||
|
<ellipse opacity="0.1" cx="307.28" cy="284.886" rx="46.8636" ry="2.12538" fill="#333333"/>
|
||||||
|
<path d="M302.506 221.342C302.506 221.342 305.493 226.995 305.725 227.801C305.849 228.261 306.257 228.587 306.732 228.606C306.732 228.606 309.709 229.318 310.42 229.413C311.131 229.508 317.297 230.029 317.297 230.029C317.297 230.029 318.862 230.077 319.051 229.508C319.224 228.988 322.247 226.252 323.997 228.639C324.324 229.087 324.418 229.664 324.25 230.193C323.929 231.217 323.269 232.843 322.56 231.831C321.565 230.409 320.407 230.809 320.407 231.567C320.407 232.325 318.813 232.043 318.293 232.15C318.008 232.208 317.029 232.469 316.183 232.696C315.2 232.962 314.194 233.129 313.178 233.196C311.498 233.305 309.021 233.396 308.144 233.065C307.084 232.662 305.236 232.57 304.445 232.548C304.183 232.542 303.93 232.451 303.724 232.289C302.626 231.43 301.697 230.374 300.985 229.175C299.752 227.041 297.215 222.623 297.386 221.342C297.557 220.062 302.506 221.342 302.506 221.342Z" fill="#EFB7B9"/>
|
||||||
|
<path opacity="0.05" d="M302.506 221.342C302.506 221.342 305.493 226.995 305.725 227.801C305.849 228.261 306.257 228.587 306.732 228.606C306.732 228.606 309.709 229.318 310.42 229.413C311.131 229.508 317.297 230.029 317.297 230.029C317.297 230.029 318.862 230.077 319.051 229.508C319.224 228.988 322.247 226.252 323.997 228.639C324.324 229.087 324.418 229.664 324.25 230.193C323.929 231.217 323.269 232.843 322.56 231.831C321.565 230.409 320.407 230.809 320.407 231.567C320.407 232.325 318.813 232.043 318.293 232.15C318.008 232.208 317.029 232.469 316.183 232.696C315.2 232.962 314.194 233.129 313.178 233.196C311.498 233.305 309.021 233.396 308.144 233.065C307.084 232.662 305.236 232.57 304.445 232.548C304.183 232.542 303.93 232.451 303.724 232.289C302.626 231.43 301.697 230.374 300.985 229.175C299.752 227.041 297.215 222.623 297.386 221.342C297.557 220.062 302.506 221.342 302.506 221.342Z" fill="black"/>
|
||||||
|
<path d="M348.416 274.286C348.405 280.566 343.453 285.724 337.178 285.991C330.904 286.258 325.531 281.538 324.987 275.281C324.97 275.091 324.958 274.9 324.952 274.712V274.702C324.946 274.561 324.943 274.419 324.943 274.276C324.943 267.794 330.198 262.539 336.68 262.539C343.162 262.539 348.416 267.794 348.416 274.276V274.286Z" fill="#65617D"/>
|
||||||
|
<circle cx="336.68" cy="274.279" r="6.40174" fill="#DCE0ED"/>
|
||||||
|
<circle cx="336.68" cy="274.279" r="3.84105" fill="#65617D"/>
|
||||||
|
<path d="M305.858 251.991L277.596 252.56V248.394C277.849 245.041 281.295 243.865 284.424 243.496C286.871 243.218 289.349 243.404 291.727 244.044C297.723 245.632 301.543 245.939 303.425 245.969C304.277 245.981 305.002 246.591 305.16 247.428C305.25 247.905 305.338 248.424 305.421 248.936C305.483 249.337 305.543 249.733 305.597 250.101C305.754 251.163 305.858 251.991 305.858 251.991Z" fill="#65617D"/>
|
||||||
|
<path d="M328.405 275.036H269.695C268.768 275.046 267.926 274.501 267.554 273.652C267.111 272.595 267.73 271.921 268.39 271.525C269.741 270.725 270.765 269.472 271.281 267.989C271.907 266.139 272.519 263.246 272.759 258.725C273.007 254.049 274.7 251.737 276.529 250.616C278.892 249.17 281.483 249.712 281.483 249.712L305.287 249.903C305.711 250.095 306.103 250.351 306.449 250.661C308.571 252.636 305.478 255.214 305.478 255.214C298.838 262.231 303.865 269.345 303.865 269.345H316.045C318.321 269.356 320.546 268.675 322.425 267.391C324.071 266.253 324.702 265.153 324.955 264.488C325.143 263.978 325.333 263.471 325.561 262.978C328.756 256.049 324.902 244.776 323.239 240.561C322.827 239.512 322.549 238.901 322.549 238.901L326.369 238.616L328.787 238.433H328.811C334.135 247.614 336.114 257.049 336.778 264.04C336.841 264.698 336.892 265.337 336.933 265.95C337.085 268.307 336.255 270.621 334.639 272.342C333.023 274.064 330.766 275.039 328.405 275.036Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M305.599 250.101H277.596V248.936H305.422C305.485 249.33 305.545 249.725 305.599 250.101Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M306.451 250.671H276.755C276.678 250.671 276.601 250.655 276.53 250.625C278.893 249.18 281.484 249.722 281.484 249.722L305.288 249.912C305.712 250.104 306.104 250.36 306.451 250.671Z" fill="black"/>
|
||||||
|
<rect x="265.782" y="249.214" width="41.4975" height="1.16512" rx="0.558574" fill="#DCE0ED"/>
|
||||||
|
<path opacity="0.1" d="M336.778 264.043C335.425 265.514 334.429 266.093 334.476 264.54C334.618 259.846 326.367 238.62 326.367 238.62L328.807 238.436C334.132 247.61 336.112 257.045 336.778 264.043Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M348.345 272.993C346.944 273.329 345.216 273.67 343.082 273.989C342.288 274.105 341.434 274.217 340.521 274.325C338.34 274.583 335.818 274.81 332.904 274.983C332.079 275.033 331.222 275.078 330.334 275.118C328.669 275.194 326.888 275.252 324.989 275.292L324.953 274.723V274.713C327.607 273.642 331.782 270.784 332.453 263.339C335.852 262.03 339.665 262.371 342.777 264.263C345.889 266.156 347.946 269.385 348.347 273.004L348.345 272.993Z" fill="black"/>
|
||||||
|
<path d="M322.74 275.037C322.74 275.037 336.212 273.575 331.571 253.048C331.571 253.048 338.227 259.151 342.369 262.542C346.51 265.934 353.892 270.61 353.892 270.61C353.892 270.61 349.485 274.728 322.74 275.037Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M322.74 275.037C322.74 275.037 336.212 273.575 331.571 253.048C331.571 253.048 338.227 259.151 342.369 262.542C346.51 265.934 353.892 270.61 353.892 270.61C353.892 270.61 349.485 274.728 322.74 275.037Z" fill="white"/>
|
||||||
|
<circle cx="286.748" cy="274.28" r="11.7365" fill="#65617D"/>
|
||||||
|
<circle cx="286.747" cy="274.279" r="6.40174" fill="#DCE0ED"/>
|
||||||
|
<circle cx="286.748" cy="274.279" r="3.84105" fill="#65617D"/>
|
||||||
|
<path opacity="0.1" d="M299.907 270.754C299.907 263.176 293.888 257.031 286.463 257.031C279.039 257.031 273.02 263.176 273.02 270.754C273.02 271.074 273.03 271.392 273.052 271.705H299.874C299.896 271.392 299.907 271.074 299.907 270.754Z" fill="black"/>
|
||||||
|
<path d="M299.409 270.517C299.409 263.219 293.613 257.303 286.463 257.303C279.313 257.303 273.517 263.219 273.517 270.517C273.517 270.826 273.528 271.131 273.548 271.434H299.377C299.397 271.131 299.409 270.826 299.409 270.517Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M299.409 270.517C299.409 270.729 299.409 270.944 299.393 271.149C299.393 271.244 299.383 271.338 299.377 271.434H273.548C273.548 271.338 273.537 271.244 273.533 271.149C273.523 270.94 273.517 270.722 273.517 270.517C273.517 263.219 279.313 257.303 286.463 257.303C293.613 257.303 299.409 263.219 299.409 270.517Z" fill="white"/>
|
||||||
|
<path opacity="0.1" d="M299.393 271.155C299.393 271.251 299.383 271.344 299.378 271.44H273.549C273.549 271.344 273.537 271.251 273.533 271.155H299.393Z" fill="black"/>
|
||||||
|
<rect opacity="0.1" x="267.854" y="271.718" width="34.78" height="3.03443" rx="1.45653" fill="black"/>
|
||||||
|
<rect x="267.854" y="271.434" width="34.78" height="3.03443" rx="1.45653" fill="#DCE0ED"/>
|
||||||
|
<ellipse opacity="0.1" cx="332.695" cy="247.734" rx="1.70429" ry="4.29059" transform="rotate(-24.33 332.695 247.734)" fill="black"/>
|
||||||
|
<ellipse cx="332.837" cy="247.59" rx="1.70429" ry="4.29059" transform="rotate(-24.33 332.837 247.59)" fill="#F0F0F4"/>
|
||||||
|
<path opacity="0.1" d="M328.786 238.436V240.665H324.447C324.043 240.665 323.639 240.633 323.24 240.568C322.828 239.52 322.55 238.908 322.55 238.908L326.37 238.623L328.786 238.436Z" fill="black"/>
|
||||||
|
<path d="M328.786 240.375H324.447C320.636 240.375 317.547 237.53 317.547 234.006V233.415C317.547 229.899 320.636 227.048 324.447 227.048L328.786 227.442V240.375Z" fill="#333333"/>
|
||||||
|
<path d="M321.637 230.818C321.637 230.818 324.233 232.205 322.74 234.552C322.74 234.552 320.907 237.557 318.026 237.272L316.978 230.818C316.978 230.818 320.428 230.498 321.637 230.818Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M320.64 230.693C321.476 230.724 322.252 231.134 322.751 231.805C323.213 232.445 323.489 233.379 322.743 234.552C322.743 234.552 320.91 237.557 318.029 237.272L316.981 230.818C316.981 230.818 319.139 230.612 320.64 230.693Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M328.643 227.442H329.48C330.943 227.442 332.129 228.628 332.129 230.091V237.728C332.129 238.43 331.85 239.104 331.353 239.601C330.856 240.098 330.182 240.377 329.48 240.377H328.643V227.442Z" fill="black"/>
|
||||||
|
<path d="M328.786 227.442H329.622C331.085 227.442 332.271 228.628 332.271 230.091V237.728C332.271 238.43 331.992 239.104 331.495 239.601C330.999 240.098 330.325 240.377 329.622 240.377H328.786V227.442V227.442Z" fill="#F0F0F4"/>
|
||||||
|
<path d="M297.98 244.052C297.98 244.052 298.651 244.297 299.545 244.639C300.968 245.186 302.974 245.986 303.671 246.424C304.368 246.862 306.967 247.582 308.913 248.088C310.356 248.462 311.842 248.645 313.332 248.633C314.846 248.619 316.679 248.605 317.186 248.605C317.274 248.604 317.363 248.611 317.45 248.625C317.982 248.713 317.961 249.07 317.948 249.155V249.174C314.818 251.07 311.024 259.559 310.788 260.982C310.61 262.048 309.047 265.006 308.276 266.42C308.017 266.894 307.849 267.194 307.849 267.194L308.798 268.284L311.548 269.517L314.156 270.655C314.156 270.655 316.907 270.798 316.954 270.655C317.001 270.513 317.001 269.043 317.001 269.043C316.666 268.827 316.348 268.586 316.05 268.321C315.42 267.771 314.833 267.172 314.298 266.53C312.781 264.727 315.816 261.266 315.816 261.266L321.648 253.679C321.648 253.679 322.122 252.826 324.398 249.411C326.675 245.997 324.398 244.148 324.398 244.148L320.392 242.485C313.444 239.884 305.064 237.8 305.064 237.8L304.944 237.784L303.167 237.562L297.98 244.052Z" fill="#EFB7B9"/>
|
||||||
|
<path d="M315.881 269.517C315.881 269.517 316.379 270.105 316.006 270.157C315.634 270.21 314.655 269.998 314.655 269.998L308.448 266.726C308.448 266.726 307.772 266.245 307.613 267.188C307.454 268.132 307.345 268.042 307.345 268.042C307.345 268.042 306.527 269.802 307.345 270.166C308.163 270.53 313.077 271.971 313.077 271.971C313.077 271.971 320.209 273.59 320.884 271.722C321.56 269.854 319.675 270.176 319.675 270.176C319.675 270.176 317.328 269.607 316.527 268.469C316.521 268.469 315.366 268.789 315.881 269.517Z" fill="#444053"/>
|
||||||
|
<path opacity="0.05" d="M324.393 244.148L320.387 242.485C313.439 239.884 305.058 237.8 305.058 237.8L304.938 237.784L303.162 237.562L297.98 244.052C297.98 244.052 298.651 244.297 299.545 244.639C300.968 245.186 302.974 245.986 303.671 246.424C304.368 246.862 306.967 247.582 308.913 248.088C310.356 248.462 311.842 248.645 313.332 248.633C314.846 248.619 316.679 248.605 317.186 248.605C317.274 248.604 317.363 248.611 317.45 248.625C317.982 248.713 317.961 249.07 317.948 249.155V249.174C314.818 251.07 311.024 259.559 310.788 260.982C310.61 262.048 309.047 265.006 308.276 266.42L308.172 266.611C307.966 266.577 307.708 266.651 307.617 267.188C307.456 268.13 307.35 268.042 307.35 268.042C307.35 268.042 306.532 269.802 307.35 270.166C308.168 270.53 313.077 271.971 313.077 271.971C313.077 271.971 320.209 273.59 320.884 271.722C321.56 269.854 319.675 270.176 319.675 270.176C319.675 270.176 317.328 269.607 316.527 268.469C316.456 268.489 316.387 268.515 316.319 268.546C316.235 268.477 316.146 268.403 316.05 268.321C315.42 267.771 314.833 267.172 314.298 266.53C312.781 264.727 315.816 261.266 315.816 261.266L321.648 253.679C321.648 253.679 322.122 252.826 324.398 249.411C326.675 245.997 324.393 244.148 324.393 244.148Z" fill="black"/>
|
||||||
|
<path d="M293.203 212.326L293.42 212.599L293.541 212.752L294.295 213.7C294.295 213.7 296.094 214.278 297.672 214.652C299.315 215.041 300.716 215.21 299.602 214.281C298.911 213.705 298.865 212.74 299.117 211.706C299.329 210.91 299.633 210.142 300.022 209.416C300.078 209.307 300.133 209.202 300.188 209.1C300.542 208.446 300.933 207.814 301.361 207.206C300.349 206.506 299.3 205.861 298.218 205.276C296.915 204.601 295.845 204.307 296.524 205.641C296.959 206.495 296.817 207.454 296.41 208.371C296.379 208.444 296.344 208.514 296.309 208.589C295.944 209.3 295.493 209.964 294.966 210.565C294.426 211.198 293.837 211.787 293.203 212.326Z" fill="#EFB7B9"/>
|
||||||
|
<path d="M302.214 233.996L303.179 234.877L304.111 238.462H302.556L300.839 236.228L302.214 233.996Z" fill="#444053"/>
|
||||||
|
<path opacity="0.1" d="M300.839 236.228L301.877 237.578L302.556 238.462H304.111L303.951 237.849L303.273 235.237L303.179 234.877L302.214 233.996L300.897 236.133L300.839 236.228Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M300.839 236.228L301.877 237.578L302.556 238.462H304.111L303.951 237.849L303.273 235.237L303.179 234.877L302.214 233.996L300.897 236.133L300.839 236.228Z" fill="black"/>
|
||||||
|
<path d="M295.67 245.661C295.67 245.661 296.34 245.905 297.235 246.247C298.658 246.794 300.664 247.594 301.361 248.032C302.058 248.47 304.657 249.19 306.603 249.697C308.046 250.071 309.531 250.254 311.022 250.243C312.535 250.229 314.369 250.214 314.875 250.214C314.964 250.214 315.053 250.22 315.14 250.234C315.672 250.323 315.651 250.68 315.638 250.765V250.783C312.508 252.68 308.714 261.168 308.478 262.591C308.3 263.658 306.737 266.616 305.966 268.03C305.707 268.503 305.539 268.804 305.539 268.804L306.488 269.893L309.236 271.125L311.844 272.263C311.844 272.263 314.595 272.406 314.642 272.263C314.689 272.121 314.689 270.652 314.689 270.652C314.354 270.435 314.036 270.194 313.739 269.929C313.108 269.379 312.522 268.781 311.986 268.138C310.47 266.335 313.504 262.874 313.504 262.874L319.337 255.287C319.337 255.287 319.81 254.434 322.087 251.02C324.363 247.605 322.087 245.756 322.087 245.756L318.436 243.669C312.746 240.208 304.731 238.216 304.731 238.216L304.611 238.2L302.834 237.979L295.67 245.661Z" fill="#EFB7B9"/>
|
||||||
|
<path opacity="0.1" d="M305.538 268.803L306.486 269.893L309.236 271.126L311.844 272.264C311.844 272.264 314.595 272.407 314.642 272.264C314.689 272.122 314.689 270.653 314.689 270.653C314.354 270.436 314.037 270.195 313.739 269.93C313.444 270.088 313.11 270.384 313.433 270.842C313.433 270.842 313.931 271.428 313.558 271.482C313.186 271.536 312.207 271.323 312.207 271.323L306 268.051L305.964 268.026C305.703 268.503 305.538 268.803 305.538 268.803Z" fill="black"/>
|
||||||
|
<path d="M313.571 271.127C313.571 271.127 314.069 271.713 313.695 271.767C313.32 271.821 312.343 271.606 312.343 271.606L306.138 268.334C306.138 268.334 305.462 267.855 305.301 268.796C305.14 269.738 305.035 269.65 305.035 269.65C305.035 269.65 304.217 271.411 305.035 271.775C305.853 272.139 310.761 273.575 310.761 273.575C310.761 273.575 317.891 275.192 318.567 273.326C319.243 271.459 317.358 271.778 317.358 271.778C317.358 271.778 315.011 271.209 314.211 270.071C314.215 270.077 313.054 270.397 313.571 271.127Z" fill="#444053"/>
|
||||||
|
<path opacity="0.1" d="M296.049 208.009C296.871 208.578 298.126 209.478 299.197 209.478C299.473 209.478 299.749 209.457 300.022 209.413C300.418 208.647 300.865 207.909 301.361 207.204C301.361 207.204 295.101 202.841 296.524 205.639C296.993 206.569 296.531 207.026 296.049 208.009Z" fill="black"/>
|
||||||
|
<path d="M294.075 204.073C294.074 205.809 294.953 207.426 296.41 208.369C296.571 208.474 296.738 208.569 296.911 208.654C298.959 209.676 301.437 209.214 302.98 207.524C304.523 205.833 304.756 203.324 303.552 201.377C302.348 199.43 299.999 198.519 297.797 199.145C295.595 199.77 294.076 201.781 294.075 204.07V204.073Z" fill="#EFB7B9"/>
|
||||||
|
<path opacity="0.1" d="M295.67 245.661C295.67 245.661 296.34 245.905 297.235 246.247C297.797 245.752 298.373 245.274 298.614 245.187C299.136 244.996 300.843 244 300.796 243.716C300.749 243.431 301.507 242.342 302.17 242.151C302.833 241.96 302.455 240.966 302.455 240.966C302.455 240.966 303.735 240.492 304.054 239.828C304.372 239.164 305.348 238.31 305.015 238.358C304.871 238.335 304.733 238.281 304.611 238.2L302.834 237.979L295.67 245.661Z" fill="black"/>
|
||||||
|
<path d="M291.781 243.955C291.781 243.955 293.963 245.757 294.064 246.563C294.165 247.368 295.622 247.322 295.622 247.322C295.622 247.322 297.804 245.235 298.325 245.046C298.845 244.857 300.554 243.86 300.507 243.575C300.46 243.291 301.218 242.201 301.881 242.01C302.544 241.82 302.166 240.825 302.166 240.825C302.166 240.825 303.446 240.351 303.765 239.687C304.083 239.023 305.059 238.169 304.726 238.218C304.632 238.23 304.332 238.075 303.951 237.849C303.483 237.565 302.89 237.179 302.406 236.853C301.894 236.506 301.503 236.23 301.503 236.23C301.503 236.23 301.279 236.19 300.897 236.135C298.832 235.836 292.109 235.074 290.549 237.557C290.341 237.886 290.185 238.244 290.086 238.62C289.388 241.266 291.781 243.955 291.781 243.955Z" fill="#444053"/>
|
||||||
|
<path opacity="0.1" d="M294.063 238.204C294.063 238.204 291.835 239.462 291.004 239.462C290.173 239.462 294.063 238.204 294.063 238.204Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M295.551 239.164C295.551 239.164 292.233 240.28 292.233 241.156C292.233 242.032 291.923 238.809 295.551 239.164Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M303.493 234.142L303.446 234.206C303.468 234.189 303.484 234.167 303.493 234.142Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M293.203 212.325L293.42 212.598L293.541 212.75L294.295 213.699C294.295 213.699 296.094 214.277 297.672 214.651C299.315 215.039 300.716 215.209 299.602 214.28C298.911 213.704 298.865 212.739 299.117 211.705L299.067 211.641C299.067 211.641 299.117 212.6 298.55 212.618C297.784 212.642 297.774 212.385 297.069 212.088C296.16 211.703 295.228 211.062 294.966 210.562C294.426 211.196 293.837 211.786 293.203 212.325Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M290.086 238.615C290.475 238.781 290.912 238.791 291.307 238.644C292.777 238.169 295.101 237.025 296.191 237.526C297.064 237.927 300.582 237.915 301.881 237.578C302.204 237.494 302.389 237.39 302.361 237.268C302.342 237.127 302.359 236.984 302.41 236.851C302.561 236.369 302.971 235.699 303.277 235.237L303.183 234.877L302.218 233.996L300.901 236.13C298.837 235.831 292.114 235.069 290.553 237.553C290.344 237.881 290.186 238.239 290.086 238.615Z" fill="black"/>
|
||||||
|
<path d="M289.126 237.506C289.126 237.506 289.695 238.833 291.165 238.359C292.634 237.885 294.959 236.74 296.049 237.241C297.138 237.742 302.356 237.6 302.214 236.984C302.072 236.368 303.495 234.423 303.495 234.423C303.495 234.423 302.718 234.281 302.237 231.744C302.166 231.374 302.102 230.953 302.048 230.475C301.93 229.496 301.903 228.509 301.965 227.525C302.157 224.779 303.119 223.658 303.119 223.658C303.119 223.658 304.446 222.141 303.308 220.054C302.712 218.96 300.306 215.929 300.274 214.577C300.244 213.351 299.072 211.926 299.072 211.926C299.072 211.926 299.121 212.884 298.554 212.903C297.788 212.927 297.778 212.67 297.073 212.372C296.036 211.934 294.97 211.162 294.901 210.645C294.901 210.645 290.553 210.428 289.604 214.838C288.655 219.248 288.988 221.666 289.13 222.188C289.273 222.71 290.505 229.444 289.509 232.289C288.513 235.134 289.126 237.506 289.126 237.506Z" fill="#A36468"/>
|
||||||
|
<path opacity="0.1" d="M296.215 229.758C296.999 231.081 298.048 232.227 299.296 233.125C300.129 233.132 300.96 233.188 301.786 233.292C301.715 232.922 301.644 232.501 301.597 232.023C301.479 231.044 301.451 230.056 301.514 229.072C301.238 228.934 301.035 228.683 300.956 228.384C300.719 227.577 298.603 223.736 298.603 223.736C298.603 223.736 293.654 222.456 293.482 223.736C293.31 225.016 294.981 227.624 296.215 229.758Z" fill="black"/>
|
||||||
|
<path d="M297.855 221.342C297.855 221.342 300.843 226.995 301.075 227.801C301.199 228.261 301.606 228.587 302.082 228.606C302.082 228.606 305.058 229.318 305.769 229.413C306.481 229.508 312.651 230.029 312.651 230.029C312.651 230.029 314.215 230.077 314.405 229.508C314.578 228.988 317.601 226.252 319.351 228.639C319.678 229.087 319.772 229.664 319.604 230.193C319.283 231.217 318.623 232.843 317.914 231.831C316.918 230.409 315.76 230.809 315.76 231.567C315.76 232.325 314.167 232.043 313.646 232.15C313.362 232.208 312.383 232.469 311.537 232.696C310.552 232.962 309.543 233.13 308.525 233.196C306.845 233.305 304.368 233.396 303.49 233.065C302.432 232.662 300.584 232.57 299.792 232.548C299.53 232.542 299.277 232.451 299.07 232.289C297.973 231.43 297.045 230.374 296.333 229.175C295.1 227.041 292.563 222.623 292.734 221.342C292.905 220.062 297.855 221.342 297.855 221.342Z" fill="#EFB7B9"/>
|
||||||
|
<path opacity="0.1" d="M296.86 213.511C296.86 213.511 298.46 216.167 299.201 218.063C299.942 219.959 300.843 223.28 300.843 223.28L296.384 222.758L296.006 222.142C296.006 222.142 292.822 224.133 293.202 224.987C293.582 225.841 292.349 223.707 292.444 221.288C292.539 218.87 292.101 214.554 292.444 213.511C292.787 212.468 295.811 212.704 296.86 213.511Z" fill="black"/>
|
||||||
|
<path d="M292.449 221.003C292.354 223.421 293.588 225.555 293.208 224.702C292.828 223.848 296.012 221.856 296.012 221.856L296.386 222.472L300.843 222.995C300.843 222.995 299.942 219.674 299.201 217.778C298.756 216.705 298.247 215.66 297.676 214.648C297.219 213.819 296.86 213.225 296.86 213.225C296.246 212.752 294.945 212.474 293.906 212.54C293.744 212.549 293.583 212.568 293.424 212.598C292.997 212.682 292.653 212.844 292.501 213.1C292.477 213.14 292.458 213.182 292.444 213.225C292.102 214.268 292.541 218.584 292.449 221.003Z" fill="#A36468"/>
|
||||||
|
<path opacity="0.1" d="M290.458 227.624C290.458 227.624 292.343 230.22 292.912 230.291C292.907 230.297 290.489 229.758 290.458 227.624Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M290.458 231.323C290.458 231.323 294.014 234.915 295.152 234.951C296.29 234.986 290.458 231.323 290.458 231.323Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M290.458 232.822C290.458 232.822 292.734 235.49 292.876 235.49C293.018 235.49 290.418 234.565 290.458 232.822Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M292.496 213.1C292.862 213.045 293.216 212.927 293.541 212.75C293.663 212.686 293.784 212.615 293.902 212.539C294.368 212.227 294.803 211.87 295.199 211.472C295.854 210.837 296.507 210.142 296.777 209.27C296.838 209.069 296.882 208.864 296.911 208.656C297.073 207.562 296.936 206.354 297.719 205.61C297.866 205.471 298.034 205.357 298.218 205.273C299.328 204.745 300.937 205.086 301.765 204.135C302.291 203.531 302.278 202.694 302.682 202.038C302.859 201.753 303.183 201.507 303.47 201.245C302.325 199.502 300.237 198.627 298.191 199.034C296.146 199.441 294.551 201.047 294.159 203.096C293.768 205.145 294.658 207.226 296.41 208.358C296.379 208.431 296.344 208.501 296.309 208.576C295.332 210.568 293.203 212.315 293.203 212.315L293.42 212.588C292.989 212.686 292.649 212.844 292.496 213.1Z" fill="black"/>
|
||||||
|
<path d="M297.371 202.057C297.845 203.443 296.276 204.874 296.622 206.298C296.925 207.547 298.449 208 299.322 208.942C299.942 209.613 300.216 210.524 300.44 211.41C300.767 212.699 300.973 214.226 300.091 215.221C299.568 215.811 298.689 216.178 298.546 216.958C298.477 217.346 298.622 217.737 298.728 218.119C299.089 219.415 299.025 220.793 298.547 222.05C298.467 222.307 298.319 222.538 298.118 222.718C297.779 222.982 297.294 222.95 296.912 223.148C296.162 223.537 296.11 224.561 296.093 225.404C295.963 230.152 293.797 234.615 290.148 237.656L290.23 236.375C289.676 236.337 289.25 236.855 288.723 237.037C287.637 237.412 286.589 236.217 286.45 235.078C286.312 233.938 287.15 231.848 286.323 231.239C285.055 230.307 285.076 228.346 285.766 226.932C286.456 225.519 287.641 224.41 288.451 223.062C288.744 222.574 288.994 222.03 288.983 221.46C288.969 220.665 288.464 219.978 288.083 219.28C287.409 218.038 287.093 216.633 287.171 215.221C287.26 213.63 287.847 212.109 288.072 210.531C288.302 208.919 288.159 207.25 288.615 205.688C289.27 203.417 287.724 200.73 289.828 199.657C290.841 199.139 294.086 197.492 295.176 198.145C295.821 198.535 295.685 199.588 296.011 200.206C296.379 200.891 297.112 201.299 297.371 202.057Z" fill="#965D7B"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path d="M288.507 237.209C289.034 237.028 289.459 236.51 290.015 236.546L289.986 237C289.738 237.173 289.472 237.32 289.194 237.441C288.797 237.573 288.36 237.51 288.015 237.273C288.182 237.285 288.349 237.263 288.507 237.209Z" fill="black"/>
|
||||||
|
<path d="M296.698 223.32C297.08 223.123 297.565 223.154 297.904 222.89C298.104 222.71 298.252 222.48 298.332 222.223C298.811 220.965 298.875 219.588 298.514 218.291C298.406 217.91 298.262 217.519 298.332 217.13C298.473 216.353 299.352 215.987 299.877 215.393C300.759 214.398 300.552 212.872 300.226 211.582C300.003 210.697 299.727 209.786 299.107 209.115C298.235 208.171 296.71 207.718 296.408 206.47C296.063 205.044 297.63 203.616 297.157 202.228C296.897 201.472 296.165 201.063 295.799 200.385C295.491 199.813 295.593 198.85 295.078 198.408C295.278 198.411 295.474 198.461 295.65 198.556C296.295 198.946 296.158 199.999 296.485 200.617C296.851 201.295 297.583 201.704 297.843 202.46C298.316 203.847 296.748 205.278 297.094 206.701C297.396 207.95 298.92 208.403 299.793 209.347C300.413 210.017 300.687 210.928 300.912 211.813C301.238 213.104 301.445 214.629 300.563 215.625C300.039 216.216 299.161 216.583 299.018 217.361C298.948 217.751 299.093 218.142 299.2 218.523C299.56 219.819 299.497 221.197 299.018 222.455C298.938 222.712 298.79 222.942 298.59 223.121C298.251 223.385 297.766 223.355 297.384 223.552C296.634 223.94 296.582 224.965 296.565 225.807C296.435 230.556 294.269 235.019 290.62 238.059L290.676 237.174C293.884 234.153 295.756 229.98 295.879 225.576C295.896 224.733 295.949 223.707 296.698 223.32Z" fill="black"/>
|
||||||
|
</g>
|
||||||
|
<path opacity="0.1" d="M315.638 250.764L316.834 250.185V249.959C316.834 249.872 315.88 250.064 315.14 250.228C315.672 250.322 315.651 250.679 315.638 250.764Z" fill="black"/>
|
||||||
|
<ellipse cx="316.678" cy="234.176" rx="2.88221" ry="3.50673" fill="#333333"/>
|
||||||
|
<ellipse opacity="0.1" cx="183.314" cy="367.397" rx="56.3954" ry="6.23789" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="203.122" y="268.899" width="14.1575" height="14.1575" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="203.122" y="298.248" width="14.1575" height="14.1575" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M217.279 327.594V338.774C212.543 338.462 207.824 337.958 203.122 337.264V327.594H217.279Z" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="110.095" y="258.641" width="49.5562" height="6.413" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="110.095" y="278.113" width="49.5562" height="6.413" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M159.651 297.591V304.001H123.03C121.438 302.785 119.867 301.538 118.319 300.26C117.245 299.375 116.181 298.47 115.101 297.591L159.651 297.591Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M159.651 317.085V323.498H155.786C151.446 321.527 147.184 319.389 142.999 317.085H159.651Z" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="41.3662" y="240.473" width="9.21476" height="9.21476" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="41.3662" y="261.881" width="9.21476" height="9.21476" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="41.3662" y="283.291" width="9.21476" height="9.21476" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="240.926" y="264.656" width="9.21476" height="9.21476" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="240.926" y="287.391" width="9.21476" height="9.21476" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="276.113" y="287.391" width="9.21476" height="9.21476" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="240.926" y="310.126" width="9.21476" height="9.21476" fill="#333333"/>
|
||||||
|
<rect opacity="0.1" x="276.113" y="310.126" width="9.21476" height="9.21476" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M240.926 338.801V332.857H250.141V337.955L240.926 338.801Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M20.0918 294.02C20.3892 294.188 20.6898 294.35 20.9938 294.512V294.35H23.5808V295.81L24.1325 296.061V294.35H26.7196V297.155L27.2713 297.366V294.35H30.0235V298.315L30.5753 298.486V294.02H20.0918Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M85.6656 237.393C85.6656 237.393 82.9762 244.811 88.5302 245.485C89.053 245.743 89.6829 245.635 90.0896 245.217C90.0896 245.217 89.6998 245.088 90.0599 244.368C90.1855 244.11 90.2798 243.838 90.3407 243.558C90.4256 243.18 90.385 242.785 90.2251 242.432C90.2251 242.432 89.9773 240.05 86.7526 238.196C86.7526 238.196 86.1745 237.363 85.9729 237.327L86.1414 238.764C86.1414 238.764 87.1888 238.602 87.8529 239.171C87.8529 239.171 86.2009 238.721 86.1546 238.979C86.1546 239.032 86.2769 239.736 86.2769 239.736C86.2769 239.736 88.1007 239.462 89.0985 240.37C89.0985 240.37 87.1888 239.571 86.3231 240.003L86.5841 241.054C86.5841 241.054 88.4971 240.671 89.67 241.662C89.67 241.662 87.6447 240.899 86.6535 241.282L87.0467 242.273C87.0467 242.273 88.92 241.943 89.8914 242.765C89.8914 242.765 87.463 242.105 87.1524 242.495C87.3216 242.881 87.538 243.245 87.7967 243.578C87.7967 243.578 89.1447 243.363 89.6667 243.909C89.6667 243.909 87.9982 243.648 87.9388 243.819C87.9388 243.819 88.7912 244.844 89.4982 245.141C88.8355 244.906 88.2456 244.501 87.7868 243.968C87.743 244.4 87.8256 244.835 88.0247 245.22C88.0247 245.22 87.3077 244.89 87.5819 243.717C87.5819 243.717 86.9476 242.894 86.9443 242.726C86.9443 242.726 86.5115 243.843 86.6139 244.626C86.6139 244.626 86.0852 243.806 86.8319 242.465L86.4156 241.474C86.4156 241.474 85.7548 242.917 85.8011 243.625C85.8011 243.625 85.3914 242.703 86.3297 241.216L86.0654 240.185C85.7197 240.809 85.4564 241.476 85.2824 242.167C85.2824 242.167 85.0874 241.232 86.0026 239.875L85.9068 239.167C85.9068 239.167 85.441 240.053 85.3319 240.321C85.2229 240.588 85.1403 240.578 85.1403 240.578C85.2185 239.953 85.4678 239.362 85.8606 238.87C85.8606 238.87 85.7582 237.393 85.6656 237.393Z" fill="#333333"/>
|
||||||
|
<path d="M290.009 327.283L293.336 330.796L298.613 321.498L298.137 320.454L290.009 327.283Z" fill="#333333"/>
|
||||||
|
<path opacity="0.2" d="M290.009 327.283L293.336 330.796L298.613 321.498L298.137 320.454L290.009 327.283Z" fill="black"/>
|
||||||
|
<path d="M56.1216 319.325C56.1216 336.968 44.039 340.711 31.93 340.711C19.821 340.711 13.0049 325.843 13.0049 308.193C13.0049 290.544 22.821 276.244 34.93 276.244C47.039 276.244 56.1216 301.681 56.1216 319.325Z" fill="#636780"/>
|
||||||
|
<path opacity="0.2" d="M56.1216 319.325C56.1216 336.968 44.039 340.711 31.93 340.711C19.821 340.711 13.0049 325.843 13.0049 308.193C13.0049 290.544 22.821 276.244 34.93 276.244C47.039 276.244 56.1216 301.681 56.1216 319.325Z" fill="black"/>
|
||||||
|
<path d="M47.7494 308.761C47.7494 326.405 39.9718 340.711 30.3771 340.711C20.7824 340.711 12.6249 326.405 12.6249 308.761C12.6249 306.323 12.2483 303.951 12.5291 301.671C14.2835 287.441 22.1106 276.815 30.3705 276.815C39.9718 276.815 47.7494 291.118 47.7494 308.761Z" fill="#636780"/>
|
||||||
|
<path d="M46.0183 230.992C46.0183 230.992 30.7904 248.067 25.9534 262.297L157.451 276.815L227.892 262.297C227.892 262.297 199.993 228.868 192.453 227.576C184.914 226.284 46.0183 230.992 46.0183 230.992Z" fill="#333333"/>
|
||||||
|
<path opacity="0.4" d="M46.0183 230.992C46.0183 230.992 30.7904 248.067 25.9534 262.297L157.451 276.815L227.892 262.297C227.892 262.297 199.993 228.868 192.453 227.576C184.914 226.284 46.0183 230.992 46.0183 230.992Z" fill="black"/>
|
||||||
|
<path d="M142.507 274.43L163.613 333.644V318.657L169.487 301.879L185.763 294.673L206.399 304.037L213.78 306.343L214.424 292.684L189.889 280.589L178.467 275.107L152.323 272.828L145.111 271.539L142.507 274.43Z" fill="#333333"/>
|
||||||
|
<path d="M151.92 280.588L171.123 282.792C170.251 275.124 175.943 275.124 175.943 275.124L156.734 271.8H147.767" fill="#333333"/>
|
||||||
|
<path d="M163.613 342.749H177.225L216.645 341.427C216.645 341.427 217.497 348.944 227.878 347.176C227.878 347.176 233.594 347.543 234.209 344.437C234.823 341.332 221.191 312.63 221.191 312.63L202.606 298.753L185.756 294.663L173.66 298.221L165.975 310.446L161.138 327.181L163.613 342.749Z" fill="#636780"/>
|
||||||
|
<path opacity="0.2" d="M163.613 342.749H177.225L216.645 341.427C216.645 341.427 217.497 348.944 227.878 347.176C227.878 347.176 233.594 347.543 234.209 344.437C234.823 341.332 221.191 312.63 221.191 312.63L202.606 298.753L185.756 294.663L173.66 298.221L165.975 310.446L161.138 327.181L163.613 342.749Z" fill="black"/>
|
||||||
|
<path d="M48.6677 235.08C46.7184 236.673 40.5598 242.385 35.4287 254.465C35.068 255.307 35.123 256.269 35.5775 257.064C36.0319 257.859 36.833 258.395 37.7415 258.512L68.66 262.52C71.0207 262.827 73.235 261.31 73.801 258.998L79.236 236.825C79.4005 236.157 79.2449 235.45 78.8151 234.913C78.3853 234.376 77.7301 234.069 77.0422 234.082L50.0257 234.585C49.53 234.591 49.0513 234.766 48.6677 235.08Z" fill="#333333"/>
|
||||||
|
<path opacity="0.2" d="M48.6677 235.08C46.7184 236.673 40.5598 242.385 35.4287 254.465C35.068 255.307 35.123 256.269 35.5775 257.064C36.0319 257.859 36.833 258.395 37.7415 258.512L68.66 262.52C71.0207 262.827 73.235 261.31 73.801 258.998L79.236 236.825C79.4005 236.157 79.2449 235.45 78.8151 234.913C78.3853 234.376 77.7301 234.069 77.0422 234.082L50.0257 234.585C49.53 234.591 49.0513 234.766 48.6677 235.08Z" fill="white"/>
|
||||||
|
<path d="M93.5983 234.032L128.415 233.701C130.923 233.678 133.17 235.353 134.016 237.911L144.872 262.568C145.834 265.456 143.756 268.462 140.908 268.297L90.0861 264.95C85.8703 264.706 82.8868 260.407 83.8615 255.977L87.5454 239.236C88.2095 236.209 90.7073 234.058 93.5983 234.032Z" fill="#333333"/>
|
||||||
|
<mask id="mask1_334_1042" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="83" y="233" width="63" height="36">
|
||||||
|
<path d="M93.5983 234.032L128.415 233.701C130.923 233.678 133.17 235.353 134.016 237.911L144.872 262.568C145.834 265.456 143.756 268.462 140.908 268.297L90.0861 264.95C85.8703 264.706 82.8868 260.407 83.8615 255.977L87.5454 239.236C88.2095 236.209 90.7073 234.058 93.5983 234.032Z" fill="white"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask1_334_1042)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.5761 263.856C91.5761 263.856 86.3657 269.598 88.9791 278.337C88.9791 278.337 91.0639 296.655 95.2302 303.444C95.905 304.544 96.527 305.6 97.1198 306.608C100.187 311.819 102.477 315.71 107.29 317.41C107.29 317.41 111.218 318.695 113.567 317.849L114.036 319.307C114.036 319.307 129.357 316.905 134.828 311.916L135.416 313.805L140.019 312.566C140.019 312.566 137.749 293.526 135.463 290.823C133.988 289.08 133.601 287.362 132.67 283.235C132.157 280.962 131.479 277.958 130.365 273.818C128.101 265.462 125.25 262.211 123.806 261.041L123.77 261.015C123.502 260.786 123.206 260.594 122.888 260.443C120.79 259.122 115.579 256.135 113.191 257.215C113.204 257.316 113.204 257.418 113.191 257.519C113.149 256.35 113.229 255.18 113.428 254.027C113.465 253.809 113.504 253.601 113.547 253.396C116.116 251.778 117.754 249.027 117.952 245.998L118.018 245.945L117.895 242.744L117.839 242.701V242.503L117.743 242.433C117.631 242.353 117.514 242.281 117.393 242.215C117.128 241.502 116.775 240.825 116.343 240.2C116.366 240.163 116.389 240.127 116.409 240.087C116.541 239.854 116.598 239.585 116.574 239.318C116.555 239.188 116.512 239.062 116.448 238.947C116.45 238.912 116.45 238.877 116.448 238.842C116.395 238.436 116.107 238.135 115.816 237.83C115.674 237.681 115.531 237.531 115.414 237.368C115.28 237.174 115.176 236.962 115.104 236.737C115.023 236.267 114.918 235.802 114.79 235.343C114.737 235.074 114.655 234.811 114.545 234.56C114.262 234.007 113.851 233.529 113.346 233.166C111.247 231.566 108.514 231.053 105.978 231.785C104.949 232.119 103.962 232.569 103.034 233.126C100.381 234.626 97.7644 236.466 96.3106 239.109C96.0193 239.594 95.8325 240.134 95.7622 240.695C95.7399 241.199 95.8139 241.703 95.9802 242.179C96.04 242.435 96.1128 242.687 96.1983 242.935C96.716 244.471 97.4371 245.93 98.3426 247.273C98.5805 248.658 99.2082 250.046 100.616 250.908C101.183 251.711 101.875 252.419 102.664 253.006C102.656 253.042 102.648 253.077 102.64 253.112C102.623 253.189 102.606 253.263 102.588 253.336C102.166 255.015 101.362 256.573 100.239 257.889C100.229 257.87 100.22 257.85 100.213 257.83L91.5761 263.856ZM101.534 280.571L112.14 313.469C109.365 309.091 105.426 302.367 105.192 298.984C105.037 296.819 104.226 294.181 103.394 291.471C102.204 287.598 100.969 283.576 101.534 280.571Z" fill="url(#paint0_linear_334_1042)"/>
|
||||||
|
<path d="M98.8713 243.723C98.8713 243.723 97.0244 250.757 102.506 251.983C107.987 253.208 104.376 248.821 104.376 248.821L99.0894 243.67L98.8713 243.723Z" fill="#472727"/>
|
||||||
|
<path d="M121.788 260.486C121.788 260.486 125.865 262.138 128.862 273.266C131.858 284.394 131.561 286.905 133.718 289.492C135.876 292.079 138.086 310.231 138.086 310.231L133.771 311.394L130.015 299.262L119.683 267.213L121.788 260.486Z" fill="#DDE0E4"/>
|
||||||
|
<path opacity="0.05" d="M121.788 260.486C121.788 260.486 125.865 262.138 128.862 273.266C131.858 284.394 131.561 286.905 133.718 289.492C135.876 292.079 138.086 310.231 138.086 310.231L133.771 311.394L130.015 299.262L119.683 267.213L121.788 260.486Z" fill="black"/>
|
||||||
|
<path d="M99.1489 259.231C99.1489 259.231 116.217 267.907 113.719 262.248C112.484 259.453 112.53 256.555 112.89 254.318C113.096 253.001 113.456 251.712 113.964 250.479C113.964 250.479 102.36 241.301 103.041 248.794C103.204 250.407 103.092 252.036 102.711 253.611C101.706 257.586 99.1489 259.231 99.1489 259.231Z" fill="#DB8B8B"/>
|
||||||
|
<path opacity="0.1" d="M102.711 253.624C104.937 255.412 107.885 256.026 110.64 255.276C111.434 255.062 112.196 254.741 112.903 254.321C113.109 253.004 113.469 251.715 113.977 250.482C113.977 250.482 102.374 241.304 103.054 248.797C103.214 250.414 103.098 252.046 102.711 253.624Z" fill="black"/>
|
||||||
|
<circle r="8.93392" transform="matrix(-0.259999 -0.965609 -0.965609 0.259999 108.181 246.206)" fill="#DB8B8B"/>
|
||||||
|
<path opacity="0.1" d="M112.669 241.849C113.164 242.151 113.761 242.239 114.322 242.091C114.883 241.943 115.36 241.573 115.642 241.066C115.765 240.842 115.818 240.586 115.794 240.332C115.718 239.757 115.15 239.4 114.803 238.925C114.264 238.155 114.367 237.101 113.977 236.245C113.709 235.722 113.322 235.27 112.847 234.923C110.888 233.392 108.315 232.891 105.925 233.575C104.961 233.89 104.036 234.315 103.17 234.841C100.685 236.258 98.2369 237.993 96.8921 240.514C96.6197 240.976 96.4464 241.491 96.3833 242.024C96.3684 242.6 96.4696 243.173 96.6807 243.709C97.1776 245.189 97.8699 246.597 98.7391 247.895C99.0298 247.534 99.3949 247.24 99.8095 247.033C100.239 246.83 100.75 246.924 101.078 247.267C101.366 247.634 101.541 248.334 101.977 248.169C102.261 248.063 102.258 247.67 102.245 247.366C102.185 246.045 102.905 244.799 103.873 243.907C104.841 243.015 106.041 242.427 107.224 241.849C108.073 241.432 109.206 240.477 110.138 240.309C111.294 240.094 111.839 241.336 112.669 241.849Z" fill="black"/>
|
||||||
|
<path d="M112.546 241.395C113.041 241.698 113.639 241.786 114.2 241.638C114.761 241.49 115.238 241.12 115.52 240.612C115.642 240.389 115.695 240.133 115.672 239.879C115.596 239.304 115.028 238.947 114.681 238.471C114.142 237.702 114.244 236.648 113.855 235.792C113.586 235.269 113.199 234.817 112.725 234.47C110.766 232.939 108.193 232.438 105.803 233.122C104.839 233.437 103.914 233.861 103.047 234.388C100.563 235.805 98.1145 237.54 96.7698 240.061C96.4974 240.523 96.3241 241.037 96.261 241.571C96.2461 242.147 96.3472 242.72 96.5584 243.256C97.0553 244.736 97.7475 246.144 98.6167 247.442C98.9074 247.081 99.2726 246.787 99.6872 246.579C100.117 246.376 100.628 246.471 100.956 246.814C101.243 247.181 101.418 247.881 101.855 247.716C102.139 247.61 102.135 247.217 102.122 246.913C102.063 245.591 102.783 244.346 103.751 243.454C104.719 242.562 105.919 241.974 107.101 241.395C107.95 240.979 109.084 240.024 110.015 239.856C111.172 239.638 111.717 240.883 112.546 241.395Z" fill="#472727"/>
|
||||||
|
<path d="M107.868 260.414C107.868 260.414 100.801 259.029 100.494 257.896L92.4121 263.602C92.4121 263.602 87.5487 269.05 90.0365 277.389C90.0365 277.389 92.0619 294.864 96.0002 301.35C99.9385 307.835 102.202 316.237 107.597 318.2C107.597 318.2 112.784 314.856 114.496 314.896C114.496 314.896 105.711 302.166 105.334 297.154C104.957 292.142 100.943 284.457 101.822 279.593L113.716 316.565C113.716 316.565 132.879 313.591 134.822 307.231C134.822 307.231 133.17 304.75 133.477 302.235C133.784 299.721 126.248 280.806 126.248 280.806L122.64 261.081C122.64 261.081 115.503 256.095 112.662 257.391C112.675 257.371 113.191 259.832 107.868 260.414Z" fill="#DDE0E4"/>
|
||||||
|
<g opacity="0.1">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M110.911 244.991C110.366 244.651 107.039 242.698 105.294 245.077L105.255 245.183L106.048 248.133L106.16 248.176C106.168 248.178 106.192 248.186 106.231 248.198C106.629 248.329 108.538 248.954 109.883 248.193C110.506 247.824 110.939 247.205 111.073 246.494L111.403 246.557L111.849 246.528C112.188 247.196 112.807 247.681 113.538 247.849C114.025 247.941 114.528 247.916 115.005 247.776C115.757 247.553 116.462 247.192 117.083 246.713L117.175 246.64L117.046 243.59L116.954 243.521C114.803 241.932 112.513 244.092 111.767 244.905L110.911 244.991ZM109.626 247.76C108.512 248.397 106.854 247.908 106.414 247.76L105.74 245.272C105.812 245.181 105.89 245.096 105.975 245.017C107.642 243.437 110.538 245.317 110.705 245.426C110.709 245.428 110.712 245.43 110.713 245.43L110.785 245.48L111.991 245.361L112.054 245.292C112.649 244.624 114.71 242.582 116.581 243.841L116.69 246.418C116.313 246.692 114.872 247.657 113.627 247.39C112.981 247.231 112.445 246.782 112.176 246.174L112.107 246.035L111.38 246.061L110.657 245.913L110.617 246.154C110.554 246.814 110.188 247.407 109.626 247.76Z" fill="black"/>
|
||||||
|
<path d="M99.8823 246.61L105.499 246.144L105.962 246.055L105.753 245.275C105.825 245.184 105.903 245.099 105.988 245.021L105.307 245.087L100.712 245.536L99.8823 246.61Z" fill="black"/>
|
||||||
|
</g>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M110.851 244.779C110.306 244.439 106.979 242.486 105.235 244.865L105.195 244.971L105.988 247.921L106.1 247.964C106.108 247.966 106.133 247.974 106.172 247.987C106.569 248.117 108.479 248.742 109.824 247.981C110.446 247.612 110.88 246.993 111.013 246.283L111.344 246.345L111.79 246.316C112.129 246.985 112.747 247.469 113.478 247.637C113.966 247.729 114.469 247.705 114.945 247.565C115.697 247.341 116.402 246.98 117.023 246.501L117.116 246.428L116.987 243.378L116.894 243.309C114.743 241.72 112.454 243.881 111.707 244.693L110.851 244.779ZM109.566 247.548C108.453 248.186 106.794 247.697 106.355 247.548L105.664 245.054C105.736 244.963 105.814 244.878 105.899 244.799C107.566 243.219 110.462 245.098 110.629 245.207C110.633 245.21 110.636 245.212 110.637 245.212L110.709 245.262L111.915 245.143L111.978 245.073C112.573 244.406 114.634 242.364 116.504 243.623L116.614 246.2C116.237 246.474 114.796 247.439 113.551 247.171C112.905 247.008 112.371 246.554 112.107 245.942L112.038 245.804L111.321 245.85L110.597 245.701L110.557 245.942C110.494 246.602 110.128 247.196 109.566 247.548Z" fill="#472727"/>
|
||||||
|
<path d="M99.8294 246.398L105.426 245.932L105.889 245.843L105.681 245.063C105.752 244.972 105.831 244.887 105.915 244.809L105.235 244.875L100.639 245.324L99.8294 246.398Z" fill="#472727"/>
|
||||||
|
</g>
|
||||||
|
<path d="M147.721 233.637C157.24 233.465 182.465 232.744 195.014 229.854C195.014 229.854 216.549 246.076 223.002 258.314C223.002 258.314 189.434 266.485 166.25 267.591C162.735 267.754 159.463 265.804 157.934 262.635L145.606 237.089C145.246 236.352 145.287 235.482 145.715 234.782C146.144 234.082 146.901 233.65 147.721 233.637Z" fill="#333333"/>
|
||||||
|
<path opacity="0.2" d="M147.721 233.637C157.24 233.465 182.465 232.744 195.014 229.854C195.014 229.854 216.549 246.076 223.002 258.314C223.002 258.314 189.434 266.485 166.25 267.591C162.735 267.754 159.463 265.804 157.934 262.635L145.606 237.089C145.246 236.352 145.287 235.482 145.715 234.782C146.144 234.082 146.901 233.65 147.721 233.637Z" fill="white"/>
|
||||||
|
<path opacity="0.1" d="M159.79 237.333C163.755 237.263 171.489 237.059 179.042 236.494C190.317 235.634 201.346 240.094 208.854 248.55L209.098 248.827C210.19 250.085 210.535 251.825 210.007 253.404C209.479 254.982 208.156 256.165 206.528 256.512C198.195 258.3 184.001 261.029 173.046 261.557C170.524 261.685 168.172 260.289 167.075 258.016L158.28 239.788C158.027 239.262 158.058 238.644 158.364 238.147C158.669 237.65 159.207 237.344 159.79 237.333Z" fill="white"/>
|
||||||
|
<path d="M163.613 333.643V342.749L62.9542 327.382C58.0214 325.674 55.0775 326.722 55.0775 326.722C51.4432 324.947 48.8 318.026 48.724 317.801L50.6238 312.3L35.1943 286.78L14.6667 287.632C17.8947 261.825 27.1888 260.593 27.1888 260.593L147.783 271.787L163.613 333.643Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M141.919 279.29C141.129 280.156 139.686 280.942 137.023 280.869C132.942 280.77 132.169 277.288 132.067 275.21C132.041 274.701 132.055 274.19 132.11 273.683L137.455 272.048L138.549 273.069L141.777 276.092C142.689 276.941 142.752 278.364 141.919 279.29Z" fill="black"/>
|
||||||
|
<path d="M141.919 279.006C141.129 279.872 139.686 280.658 137.023 280.585C132.942 280.486 132.169 277.004 132.067 274.926C132.041 274.416 132.055 273.906 132.11 273.399L137.455 271.764L138.549 272.785L141.777 275.808C142.689 276.656 142.752 278.08 141.919 279.006Z" fill="#DCE0ED"/>
|
||||||
|
<path opacity="0.1" d="M138.552 272.785C137.868 274.526 135.846 274.998 135.846 274.998L132.07 274.926C132.044 274.416 132.059 273.906 132.113 273.399L137.459 271.764L138.552 272.785Z" fill="black"/>
|
||||||
|
<path d="M124.927 259.453C124.927 259.453 116.389 260.596 118.666 268.314C120.39 274.162 124.24 274.555 126.004 274.407C127.031 274.315 128.062 274.277 129.093 274.294L135.843 274.43C135.843 274.43 139.656 273.541 138.589 269.699C137.521 265.856 132.612 258.812 124.927 259.453Z" fill="#F0F0F4"/>
|
||||||
|
<ellipse opacity="0.2" cx="78.7008" cy="277.667" rx="3.93833" ry="5.12445" fill="black"/>
|
||||||
|
<rect opacity="0.1" x="72.5454" y="275.36" width="14.7423" height="3.47247" rx="1.6652" transform="rotate(6.09 72.5454 275.36)" fill="black"/>
|
||||||
|
<rect x="72.5459" y="275.074" width="14.7423" height="3.47247" rx="1.6652" transform="rotate(6.09 72.5459 275.074)" fill="#F0F0F4"/>
|
||||||
|
<path opacity="0.1" d="M13.4312 311.111C13.4312 311.111 6.364 304.136 14.9477 287.348C14.9477 287.348 25.9532 270.696 43.0314 288.915C43.0314 288.915 52.8508 299.87 55.6955 317.375L49.0083 317.517C49.0083 317.517 42.6019 286.493 23.8188 288.059C23.8188 288.055 10.1569 290.474 13.4312 311.111Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M13.1536 311.963C13.1536 311.963 6.08309 304.992 14.6701 288.198C14.6701 288.198 25.6756 271.549 42.7538 289.764C42.7538 289.764 52.5732 300.723 55.4212 318.224L48.7307 318.366C48.7307 318.366 42.3177 287.348 23.5346 288.911C23.5346 288.911 9.87274 291.33 13.1536 311.963Z" fill="black"/>
|
||||||
|
<path d="M13.1536 311.395C13.1536 311.395 6.08309 304.42 14.6701 287.629C14.6701 287.629 25.6756 270.981 42.7538 289.195C42.7538 289.195 52.5732 300.151 55.4212 317.656L48.7307 317.798C48.7307 317.798 42.3177 286.777 23.5346 288.34C23.5346 288.34 9.87274 290.761 13.1536 311.395Z" fill="#333333"/>
|
||||||
|
<path opacity="0.2" d="M13.1536 311.395C13.1536 311.395 6.08309 304.42 14.6701 287.629C14.6701 287.629 25.6756 270.981 42.7538 289.195C42.7538 289.195 52.5732 300.151 55.4212 317.656L48.7307 317.798C48.7307 317.798 42.3177 286.777 23.5346 288.34C23.5346 288.34 9.87274 290.761 13.1536 311.395Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M163.613 333.359V342.465L62.9541 327.095C58.0212 325.39 55.0774 326.434 55.0774 326.434C51.443 324.66 48.7999 317.738 48.7239 317.513L55.4144 317.371L74.769 320.074L145.114 330.177C145.114 330.177 157.59 331.601 158.3 332.16C159.01 332.718 163.613 333.359 163.613 333.359Z" fill="black"/>
|
||||||
|
<path d="M163.613 333.644V342.749L62.9541 327.383C58.0212 325.675 55.0774 326.722 55.0774 326.722C51.443 324.948 48.7999 318.026 48.7239 317.801L55.4144 317.659L74.769 320.362L145.114 330.465C145.114 330.465 157.59 331.889 158.3 332.448C159.01 333.006 163.613 333.644 163.613 333.644Z" fill="#333333"/>
|
||||||
|
<path opacity="0.2" d="M163.613 333.644V342.749L62.9541 327.383C58.0212 325.675 55.0774 326.722 55.0774 326.722C51.443 324.948 48.7999 318.026 48.7239 317.801L55.4144 317.659L74.769 320.362L145.114 330.465C145.114 330.465 157.59 331.889 158.3 332.448C159.01 333.006 163.613 333.644 163.613 333.644Z" fill="black"/>
|
||||||
|
<path opacity="0.2" d="M74.6271 320.388C68.3727 300.306 68.7064 286.301 70.0874 278.097C71.5874 269.176 74.6204 264.97 74.6502 264.931L74.8782 265.099C74.8484 265.139 71.8517 269.315 70.3649 278.17C68.9905 286.357 68.6601 300.29 74.9013 320.318L74.6271 320.388Z" fill="black"/>
|
||||||
|
<path d="M300.414 311.589C300.665 312.524 301.25 315.108 300.321 315.805C299.968 316.069 299.66 316.72 299.422 317.493C299.05 318.805 298.781 320.144 298.616 321.498L288.936 332.312L272.571 338.718L233.436 341.421L209.812 302.999L156.734 271.783L171.225 270.98C185.72 270.174 226.864 261.068 226.864 261.068L273.407 271.35C280.935 273.001 287.585 277.381 292.074 283.644C297.741 291.574 300.334 300.164 300.334 300.164C301.035 301.003 301.306 302.378 301.345 303.884C301.398 306.339 300.837 309.134 300.529 310.469C300.414 310.968 300.334 311.265 300.334 311.265C300.334 311.265 300.361 311.378 300.414 311.589Z" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M158.297 331.886C158.297 331.886 155.452 301.446 176.799 293.186C176.799 293.186 206.825 280.512 224.472 314.953L233.435 334.595C233.435 334.595 235.996 339.432 242.971 339.29C242.971 339.29 275.842 338.299 293.191 327.194L298.599 320.916C298.599 320.916 295.897 329.738 293.191 331.73C293.191 331.73 282.519 344.252 243.668 346.532C243.668 346.532 227.779 348.237 222.988 333.154C222.988 333.154 216.489 299.001 183.473 299.285C183.473 299.285 164.075 299.665 163.599 333.059L158.297 331.886Z" fill="black"/>
|
||||||
|
<path d="M158.297 332.455C158.297 332.455 155.452 302.019 176.799 293.756C176.799 293.756 206.825 281.085 224.472 315.522L233.435 335.161C233.435 335.161 235.996 339.998 242.971 339.856C242.971 339.856 275.842 338.865 293.191 327.76L298.616 321.499C298.616 321.499 295.913 330.321 293.207 332.313C293.207 332.313 282.536 344.838 243.684 347.115C243.684 347.115 227.796 348.823 223.005 333.737C223.005 333.737 216.506 299.584 183.489 299.868C183.489 299.868 164.092 300.251 163.616 333.644L158.297 332.455Z" fill="#333333"/>
|
||||||
|
<path opacity="0.2" d="M158.297 332.455C158.297 332.455 155.452 302.019 176.799 293.756C176.799 293.756 206.825 281.085 224.472 315.522L233.435 335.161C233.435 335.161 235.996 339.998 242.971 339.856C242.971 339.856 275.842 338.865 293.191 327.76L298.616 321.499C298.616 321.499 295.913 330.321 293.207 332.313C293.207 332.313 282.536 344.838 243.684 347.115C243.684 347.115 227.796 348.823 223.005 333.737C223.005 333.737 216.506 299.584 183.489 299.868C183.489 299.868 164.092 300.251 163.616 333.644L158.297 332.455Z" fill="black"/>
|
||||||
|
<path opacity="0.2" d="M153.367 331.536L152.082 289.189C152.255 286.322 152.144 283.445 151.751 280.599C151.712 280.421 150.691 276.053 149.326 273.572C148.451 272.293 147.707 271.903 147.674 271.897L146.918 271.692L147.764 271.629C148.348 271.741 148.903 272.349 149.416 273.198C150.347 274.477 151.444 276.724 152.022 280.553C152.417 283.408 152.528 286.296 152.353 289.173L153.638 331.51L153.367 331.536Z" fill="black"/>
|
||||||
|
<path opacity="0.2" d="M179.498 300.128L179.221 300.174C179.221 300.141 178.629 296.629 176.68 293.837C172.593 287.986 171.258 284.018 171.106 281.368C171.032 280.449 171.144 279.526 171.437 278.652C172.074 276.864 173.782 275.543 176.102 274.889L176.597 274.971C174.367 275.599 172.302 277.053 171.691 278.748C171.399 279.609 171.287 280.521 171.361 281.427C171.526 284.021 172.864 287.913 176.885 293.678C178.9 296.52 179.495 300.091 179.498 300.128Z" fill="black"/>
|
||||||
|
<path opacity="0.2" d="M270.648 286.327C252.516 275.507 214.13 265.443 213.744 265.344L213.817 265.066C214.203 265.169 252.628 275.243 270.793 286.083L270.648 286.327Z" fill="black"/>
|
||||||
|
<path opacity="0.2" d="M297.01 301.324C290.164 289.281 271.732 279.353 257.472 273.141C247.826 268.969 237.933 265.394 227.848 262.436L227.924 262.162C238.022 265.123 247.927 268.702 257.584 272.88C271.884 279.108 290.373 289.07 297.258 301.182L297.01 301.324Z" fill="black"/>
|
||||||
|
<ellipse opacity="0.1" cx="289.063" cy="286.764" rx="3.27753" ry="13.9229" transform="rotate(-37 289.063 286.764)" fill="black"/>
|
||||||
|
<ellipse cx="289.065" cy="286.195" rx="3.27753" ry="13.9229" transform="rotate(-37 289.065 286.195)" fill="#DCE0ED"/>
|
||||||
|
<ellipse opacity="0.1" cx="289.442" cy="286.224" rx="2.12775" ry="11.4978" transform="rotate(-37 289.442 286.224)" fill="black"/>
|
||||||
|
<ellipse cx="289.443" cy="285.941" rx="2.12775" ry="11.4978" transform="rotate(-37 289.443 285.941)" fill="#F0F0F4"/>
|
||||||
|
<path opacity="0.1" d="M254.852 308.051C254.852 308.051 255.777 301.076 261.258 299.51C261.258 299.51 279.899 294.118 283.956 294.039C283.956 294.039 288.152 292.754 290.928 295.882L293.772 299.725C293.772 299.725 295.755 302.857 291.354 303.425C291.354 303.425 268.824 311.685 259.054 312.544C258.499 312.594 257.947 312.678 257.402 312.795C255.975 313.093 252.978 313.179 254.852 308.051Z" fill="black"/>
|
||||||
|
<path d="M255.139 307.767C255.139 307.767 256.064 300.792 261.542 299.226C261.542 299.226 280.183 293.834 284.241 293.755C284.241 293.755 288.437 292.466 291.212 295.598L294.06 299.441C294.06 299.441 296.042 302.57 291.638 303.141C291.638 303.141 269.112 311.401 259.342 312.26C258.787 312.31 258.235 312.394 257.69 312.511C256.259 312.809 253.263 312.895 255.139 307.767Z" fill="#F0F0F4"/>
|
||||||
|
<path opacity="0.1" d="M257.102 307.172C257.102 307.172 257.964 301.209 263.049 299.871C263.049 299.871 280.382 295.245 284.151 295.189C284.151 295.189 288.053 294.089 290.634 296.765L293.277 300.052C293.277 300.052 295.127 302.732 291.027 303.217C291.027 303.217 270.083 310.288 261.001 311.018C260.489 311.062 259.981 311.133 259.477 311.233C258.146 311.467 255.361 311.553 257.102 307.172Z" fill="black"/>
|
||||||
|
<path d="M257.389 306.881C257.389 306.881 258.248 300.934 263.337 299.58C263.337 299.58 280.669 294.954 284.439 294.898C284.439 294.898 288.341 293.794 290.921 296.474L293.565 299.778C293.565 299.778 295.415 302.454 291.315 302.943C291.315 302.943 270.367 310.014 261.285 310.744C260.776 310.787 260.269 310.859 259.768 310.959C258.43 311.196 255.645 311.269 257.389 306.881Z" fill="#636780"/>
|
||||||
|
<path d="M258.853 303.207L258.817 302.923C259.071 302.893 284.386 299.748 289.834 295.542L290.009 295.767C284.498 300.012 259.897 303.072 258.853 303.207Z" fill="#F0F0F4"/>
|
||||||
|
<path d="M257.521 306.486L257.472 306.205C257.749 306.155 285.599 300.998 291.605 297.284L291.757 297.525C285.704 301.269 257.802 306.433 257.521 306.486Z" fill="#F0F0F4"/>
|
||||||
|
<path d="M256.864 309.184L256.811 308.907C257.141 308.844 289.19 302.794 293.155 299.249L293.343 299.46C289.335 303.058 258.185 308.936 256.864 309.184Z" fill="#F0F0F4"/>
|
||||||
|
<path opacity="0.1" d="M290.218 309.33C290.218 309.33 278.138 314.368 265.438 316.628C264.314 316.831 263.203 317.082 262.104 317.381C260.816 317.732 258.985 318.128 257.991 317.87C256.355 317.441 255.45 319.433 257.218 320.999L257.33 321.098C258.621 322.234 260.318 322.795 262.031 322.651L264.751 322.423C264.751 322.423 286.811 317.586 292.963 313.813C292.963 313.813 295.772 311.887 295.986 309.719C296.201 307.552 296.455 305.844 294.229 307.126C292.002 308.408 290.218 309.33 290.218 309.33Z" fill="black"/>
|
||||||
|
<path d="M290.488 309.052C290.039 309.237 278.181 314.127 265.709 316.344C264.585 316.545 263.474 316.796 262.375 317.098C261.09 317.448 259.256 317.844 258.262 317.587C256.61 317.157 255.721 319.149 257.488 320.715L257.541 320.762C258.869 321.937 260.621 322.519 262.388 322.371L265.005 322.153H265.048C265.805 321.987 287.184 317.259 293.231 313.562H293.254C293.442 313.427 296.059 311.563 296.264 309.475C296.479 307.308 296.736 305.6 294.506 306.882C292.388 308.098 290.673 308.996 290.515 309.079L290.488 309.052Z" fill="#F0F0F4"/>
|
||||||
|
<path opacity="0.1" d="M288.876 310.645C288.876 310.645 278.964 314.768 268.322 317.111C267.265 317.342 266.218 317.613 265.177 317.914C264.136 318.214 262.649 318.574 261.823 318.469C260.409 318.28 259.735 319.691 261.321 320.639L261.371 320.669C262.571 321.386 263.981 321.67 265.365 321.475L267.817 321.145C267.817 321.145 286.382 316.473 291.437 313.526C291.437 313.526 293.749 312.042 293.809 310.552C293.868 309.062 294.014 307.909 292.18 308.9C290.346 309.891 288.876 310.645 288.876 310.645Z" fill="black"/>
|
||||||
|
<path d="M289.157 310.36C288.946 310.449 279.133 314.507 268.61 316.826C267.552 317.057 266.502 317.328 265.461 317.629C264.42 317.93 262.937 318.29 262.107 318.184C260.693 317.996 260.019 319.403 261.609 320.355C262.839 321.091 264.285 321.384 265.706 321.184L268.091 320.854C268.474 320.758 286.692 316.155 291.701 313.255C291.78 313.202 294.014 311.745 294.07 310.281C294.126 308.817 294.275 307.621 292.441 308.629C290.607 309.637 289.22 310.334 289.137 310.373L289.157 310.36Z" fill="#636780"/>
|
||||||
|
<ellipse opacity="0.1" cx="245.976" cy="322.44" rx="3.74145" ry="2.76887" transform="rotate(-87.1376 245.976 322.44)" fill="black"/>
|
||||||
|
<ellipse cx="245.899" cy="322.422" rx="3.73678" ry="2.76542" transform="rotate(-87.15 245.899 322.422)" fill="#F0F0F4"/>
|
||||||
|
<path opacity="0.1" d="M262.226 325.268C262.226 325.268 247.738 327.475 243.896 327.69C240.053 327.905 239.475 330.036 239.475 330.036C239.475 330.036 238.55 335.445 243.886 333.879L262.811 331.744C262.811 331.744 265.375 331.817 265.375 328.328V327.545C265.383 327.107 265.427 326.67 265.507 326.24C265.61 325.695 265.329 324.809 262.226 325.268Z" fill="black"/>
|
||||||
|
<path d="M262.51 324.984C262.51 324.984 248.022 327.191 244.18 327.403C240.337 327.614 239.769 329.752 239.769 329.752C239.769 329.752 238.844 335.16 244.18 333.594L263.108 331.46C263.108 331.46 265.669 331.533 265.669 328.044V327.261C265.677 326.823 265.721 326.386 265.801 325.956C265.907 325.41 265.613 324.525 262.51 324.984Z" fill="#F0F0F4"/>
|
||||||
|
<path d="M300.321 315.806C299.967 316.07 299.66 316.721 299.422 317.494L294.731 320.818C294.614 320.9 294.461 320.911 294.334 320.846C294.207 320.781 294.127 320.65 294.126 320.507V317.018C294.125 316.001 294.658 315.058 295.53 314.534L300.413 311.59C300.665 312.525 301.259 315.102 300.321 315.806Z" fill="#F0F0F4"/>
|
||||||
|
<path d="M267.116 325.451L266.898 328.979C266.842 329.691 267.112 330.39 267.632 330.88C268.153 331.369 268.867 331.596 269.574 331.497C277.564 330.222 285.245 327.463 292.22 323.362L292.838 316.153C292.874 315.795 292.718 315.445 292.428 315.232C292.138 315.02 291.757 314.977 291.427 315.119C287.462 316.887 276.833 321.416 270.086 322.282C268.468 322.496 267.225 323.822 267.116 325.451Z" fill="#636780"/>
|
||||||
|
<path d="M269.297 323.633V329.368C269.297 329.368 286.943 325.199 290.855 322.387V316.945C283.983 320.084 276.738 322.331 269.297 323.633Z" fill="#333333"/>
|
||||||
|
<path d="M300.232 310.744C299.336 310.681 298.619 309.145 298.619 307.265C298.619 305.385 299.366 303.782 300.271 303.782C300.565 303.795 300.839 303.931 301.028 304.156C301.101 306.61 300.539 309.406 300.232 310.744Z" fill="#333333"/>
|
||||||
|
<path d="M300.516 310.457C299.62 310.397 298.907 308.861 298.907 306.981C298.907 305.101 299.65 303.495 300.559 303.495C300.853 303.51 301.128 303.647 301.319 303.872C301.385 306.327 300.823 309.122 300.516 310.457Z" fill="#F0F0F4"/>
|
||||||
|
<path d="M219.347 334.767C219.347 366.039 206.132 366.716 188.895 366.716C175.124 366.716 169.487 352.414 169.487 334.767C169.487 317.121 173.911 302.857 187.679 302.857C201.447 302.857 219.347 317.124 219.347 334.767Z" fill="#636780"/>
|
||||||
|
<path opacity="0.2" d="M219.347 334.767C219.347 366.039 206.132 366.716 188.895 366.716C175.124 366.716 169.487 352.414 169.487 334.767C169.487 317.121 173.911 302.857 187.679 302.857C201.447 302.857 219.347 317.124 219.347 334.767Z" fill="black"/>
|
||||||
|
<ellipse cx="186.86" cy="334.767" rx="17.3722" ry="31.9493" fill="#636780"/>
|
||||||
|
<path d="M38.0026 315.805C38.0026 325.387 35.2273 333.072 29.4618 333.072C23.6964 333.072 16.844 325.298 16.844 315.71C16.844 306.122 19.2394 297.687 25.0048 297.687C30.7702 297.687 38.0026 306.217 38.0026 315.805Z" fill="#F0F0F4"/>
|
||||||
|
<path d="M37.9994 315.432C37.9994 316.159 37.9796 316.873 37.9399 317.573C37.8576 319.415 37.5875 321.244 37.1337 323.031C36.1987 326.56 34.4906 329.011 31.9994 329.477C31.7062 329.531 31.4087 329.557 31.1106 329.556C29.7933 329.514 28.5149 329.099 27.4234 328.36C25.0478 326.847 22.8573 324.022 21.7439 320.49C21.3275 319.193 21.0712 317.849 20.9807 316.489C20.9542 316.119 20.941 315.743 20.941 315.366C20.9112 312.756 21.1717 310.151 21.7174 307.598C22.0284 306.044 22.5956 304.552 23.3959 303.184C24.4135 301.582 25.7648 300.627 27.4961 300.627C28.7916 300.68 30.0447 301.103 31.1073 301.846C32.6949 302.928 34.0442 304.323 35.0721 305.946C36.9405 308.761 37.957 312.054 37.9994 315.432Z" fill="#636780"/>
|
||||||
|
<path d="M37.9333 317.586C37.8523 319.424 37.5844 321.248 37.1337 323.031C37.0148 322.896 33.7505 319.123 31.2989 321.544C29.4983 323.319 31.0148 327.359 31.9994 329.474C31.7062 329.527 31.4086 329.554 31.1106 329.553C29.7933 329.511 28.5149 329.096 27.4234 328.357V328.086C27.4234 328.086 28.8738 323.566 25.0049 320.781C25.0049 320.781 23.1249 320.034 21.7273 320.484C21.3109 319.186 21.0546 317.842 20.9641 316.483C21.2945 316.222 23.5577 314.282 22.6326 310.628C22.3828 309.598 22.0716 308.584 21.7009 307.592C22.0177 306.039 22.5905 304.549 23.3958 303.184C23.3958 303.184 24.1392 307.218 26.9839 307.46C29.8286 307.701 31.0709 302.001 31.1073 301.843C32.6949 302.925 34.0442 304.32 35.072 305.943C35.072 305.943 30.5291 307.833 31.854 312.861C32.8253 316.423 36.1161 317.352 37.9333 317.586Z" fill="#F0F0F4"/>
|
||||||
|
<ellipse cx="28.2781" cy="314.638" rx="2.13404" ry="3.69989" transform="rotate(-8.04906 28.2781 314.638)" fill="#636780"/>
|
||||||
|
<path d="M189.889 336.102C189.889 347.59 187.441 356.792 182.356 356.792C177.271 356.792 171.225 347.478 171.225 335.977C171.225 324.475 173.34 314.382 178.424 314.382C183.509 314.382 189.889 324.614 189.889 336.102Z" fill="#F0F0F4"/>
|
||||||
|
<path d="M189.889 335.669C189.889 336.55 189.872 337.406 189.836 338.236C189.763 340.427 189.525 342.609 189.123 344.765C188.3 348.994 186.81 351.928 184.593 352.489C184.337 352.551 184.074 352.582 183.81 352.582C182.746 352.582 181.629 352.073 180.559 351.148C178.451 349.334 176.528 345.931 175.534 341.715C175.169 340.14 174.948 338.536 174.873 336.921C174.85 336.478 174.836 336.029 174.836 335.573C174.809 332.458 175.039 329.346 175.524 326.269C175.792 324.448 176.298 322.671 177.03 320.983C177.929 319.063 179.122 317.92 180.648 317.92C181.676 317.92 182.769 318.445 183.833 319.38C185.105 320.5 186.331 322.202 187.342 324.293C189.021 327.85 189.891 331.735 189.889 335.669Z" fill="#636780"/>
|
||||||
|
<path d="M189.836 338.229C189.763 340.42 189.524 342.603 189.123 344.758C189.02 344.593 186.149 340.073 183.975 342.974C182.389 345.101 183.724 349.942 184.593 352.482C184.336 352.544 184.074 352.575 183.81 352.575C182.746 352.575 181.629 352.066 180.559 351.141V350.811C180.559 350.811 181.837 345.395 178.424 342.058C178.424 342.058 176.772 341.163 175.533 341.702C175.169 340.127 174.948 338.522 174.873 336.908C175.163 336.594 177.159 334.264 176.343 329.893C176.032 328.241 175.755 327.062 175.523 326.259C175.792 324.438 176.298 322.661 177.03 320.973C177.03 320.973 177.691 325.81 180.195 326.094C182.7 326.378 183.8 319.558 183.83 319.37C185.102 320.49 186.327 322.192 187.338 324.283C187.338 324.283 183.331 326.55 184.5 332.573C185.323 336.858 188.227 337.955 189.836 338.229Z" fill="#F0F0F4"/>
|
||||||
|
<ellipse cx="180.47" cy="335.195" rx="1.88987" ry="4.4174" transform="rotate(-4.68 180.47 335.195)" fill="#636780"/>
|
||||||
|
<path opacity="0.2" d="M228.45 286.077L228.334 286.338C228.222 286.285 218.383 282.043 181.897 275.851C180.192 275.562 178.43 275.268 176.611 274.969C176.442 274.946 176.28 274.916 176.105 274.89C170.267 273.938 163.821 272.95 156.711 271.916L156.751 271.632C166.382 273.02 174.79 274.341 182.125 275.597C218.518 281.782 228.334 286.027 228.45 286.077Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M43.5039 232.011C43.5039 232.011 46.8079 226.394 58.114 225.895C58.114 225.895 140.746 215.101 192.916 226.318C192.916 226.318 197.37 228.3 192.536 229.463C187.702 230.626 76.6129 234.647 43.5039 232.011Z" fill="black"/>
|
||||||
|
<path d="M43.5039 231.442C43.5039 231.442 46.8079 225.826 58.114 225.323C58.114 225.323 140.746 214.533 192.916 225.75C192.916 225.75 197.37 227.732 192.536 228.895C187.702 230.058 76.6129 234.079 43.5039 231.442Z" fill="#636780"/>
|
||||||
|
<path opacity="0.1" d="M35.7694 255.036C40.9004 242.957 47.059 237.244 49.0083 235.649C49.3916 235.336 49.8687 235.162 50.363 235.153L77.396 234.651C78.1384 234.634 78.8386 234.995 79.2561 235.609C78.9553 234.684 78.0847 234.064 77.1119 234.082L50.0788 234.585C49.5841 234.591 49.1065 234.766 48.7242 235.08C46.7749 236.673 40.6163 242.385 35.4852 254.465C35.1014 255.358 35.1894 256.385 35.7198 257.2C35.4572 256.499 35.4749 255.724 35.7694 255.036Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M84.43 256.383L88.1139 239.642C88.7747 236.613 91.2791 234.465 94.1668 234.439L128.984 234.108C130.311 234.099 131.599 234.56 132.618 235.41C131.541 234.239 130.021 233.573 128.429 233.576L93.6117 233.907C90.7208 233.936 88.223 236.084 87.5589 239.114L83.8584 255.852C83.2252 258.603 84.1692 261.478 86.31 263.318C84.57 261.463 83.8655 258.864 84.43 256.383Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M159.711 263.435L147.387 237.889C147.033 237.153 147.077 236.287 147.505 235.591C147.933 234.895 148.685 234.465 149.502 234.449C158.888 234.278 183.559 233.574 196.273 230.782C195.473 230.157 195.014 229.811 195.014 229.811C182.459 232.702 157.24 233.422 147.721 233.594C146.904 233.609 146.152 234.04 145.724 234.736C145.296 235.431 145.252 236.297 145.606 237.033L157.934 262.569C158.949 264.678 160.764 266.296 162.975 267.063C161.566 266.186 160.434 264.928 159.711 263.435Z" fill="black"/>
|
||||||
|
<rect x="158.3" y="332.454" width="5.31278" height="1.63546" fill="#333333"/>
|
||||||
|
<rect opacity="0.2" x="158.3" y="332.454" width="5.31278" height="1.63546" fill="black"/>
|
||||||
|
<path d="M55.1669 316.268L48.635 317.394C48.6752 317.62 48.7383 317.842 48.8233 318.055C48.9522 318.385 56.0921 317.801 56.0921 317.801L55.4048 317.659L55.1669 316.268Z" fill="#333333"/>
|
||||||
|
<path opacity="0.2" d="M55.1669 316.268L48.635 317.394C48.6752 317.62 48.7383 317.842 48.8233 318.055C48.9522 318.385 56.0921 317.801 56.0921 317.801L55.4048 317.659L55.1669 316.268Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M30.5224 332.283C24.7603 332.283 17.9046 324.509 17.9046 314.921C17.9046 308.349 19.0312 302.316 21.5951 299.174C18.2911 301.84 16.844 308.564 16.844 315.981C16.844 325.563 23.6997 333.343 29.4618 333.343C31.4112 333.343 33.0136 332.465 34.2889 330.932C33.2327 331.813 31.8982 332.292 30.5224 332.283Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M183.486 355.515C178.325 355.515 172.187 346.182 172.187 334.667C172.187 326.774 173.178 319.532 175.49 315.759C172.517 318.96 171.238 327.035 171.238 335.943C171.238 347.457 177.377 356.791 182.538 356.791C184.282 356.791 185.72 355.733 186.859 353.896C185.901 354.941 184.778 355.515 183.486 355.515Z" fill="black"/>
|
||||||
|
<ellipse opacity="0.1" cx="233.116" cy="299.048" rx="8.50441" ry="16.6024" transform="rotate(-45 233.116 299.048)" fill="black"/>
|
||||||
|
<ellipse cx="233.4" cy="298.766" rx="8.50441" ry="16.6024" transform="rotate(-45 233.4 298.766)" fill="#DCE0ED"/>
|
||||||
|
<ellipse opacity="0.1" cx="234.215" cy="298.519" rx="6.23458" ry="14.0881" transform="rotate(-45 234.215 298.519)" fill="black"/>
|
||||||
|
<ellipse cx="234.215" cy="298.232" rx="6.23458" ry="14.0881" transform="rotate(-45 234.215 298.232)" fill="#F0F0F4"/>
|
||||||
|
<path d="M332.802 353.47C332.802 353.47 318.833 352.628 320.478 362.417C320.478 362.417 320.148 364.145 321.721 364.932C321.721 364.932 321.744 364.208 323.155 364.453C323.655 364.537 324.165 364.562 324.671 364.525C325.356 364.479 326.007 364.21 326.525 363.759C326.525 363.759 330.453 362.137 331.98 355.72C331.98 355.72 333.11 354.319 333.063 353.959L330.708 354.95C330.708 354.95 331.514 356.652 330.879 358.066C330.879 358.066 330.803 355.013 330.351 355.093C330.258 355.093 329.125 355.681 329.125 355.681C329.125 355.681 330.513 358.654 329.455 360.795C329.455 360.795 329.852 357.161 328.682 355.895L327.03 356.863C327.03 356.863 328.649 359.923 327.552 362.421C327.552 362.421 327.833 358.591 326.68 357.098L325.177 358.271C325.177 358.271 326.7 361.287 325.771 363.359C325.771 363.359 325.649 358.902 324.85 358.565C324.85 358.565 323.528 359.725 323.336 360.2C323.336 360.2 324.377 362.388 323.73 363.544C323.73 363.544 323.333 360.571 323.009 360.571C323.009 360.571 321.688 362.553 321.562 363.875C321.562 363.875 321.618 361.869 322.692 360.369C321.936 360.512 321.239 360.874 320.687 361.41C320.687 361.41 320.888 360.019 322.999 359.897C322.999 359.897 324.083 358.403 324.371 358.314C324.371 358.314 322.256 358.136 320.974 358.704C320.974 358.704 322.104 357.382 324.76 357.987L326.244 356.778C326.244 356.778 323.459 356.394 322.279 356.817C322.279 356.817 323.637 355.654 326.644 356.487L328.259 355.522C328.259 355.522 325.887 355.01 324.473 355.192C324.473 355.192 325.963 354.386 328.735 355.258L329.888 354.739C329.888 354.739 328.15 354.409 327.641 354.346C327.133 354.283 327.103 354.151 327.103 354.151C328.205 353.967 329.336 354.093 330.371 354.514C330.371 354.514 332.842 353.626 332.802 353.47Z" fill="#333333"/>
|
||||||
|
<ellipse opacity="0.1" cx="323.181" cy="365.785" rx="9.88546" ry="1.67181" fill="#333333"/>
|
||||||
|
<path d="M313.114 332.467C313.114 332.467 303.605 331.896 304.725 338.557C304.607 339.251 304.948 339.943 305.571 340.271C305.571 340.271 305.587 339.776 306.562 339.941C306.904 339.999 307.251 340.015 307.596 339.99C308.062 339.958 308.505 339.775 308.858 339.468C308.858 339.468 311.531 338.365 312.572 333.997C312.572 333.997 313.338 333.042 313.309 332.798L311.706 333.482C311.706 333.482 312.251 334.641 311.822 335.603C311.822 335.603 311.769 333.525 311.462 333.574C311.399 333.574 310.629 333.974 310.629 333.974C310.629 333.974 311.571 335.993 310.86 337.456C310.86 337.456 311.128 334.972 310.332 334.123L309.205 334.783C309.205 334.783 310.305 336.868 309.559 338.566C309.559 338.566 309.75 335.96 308.967 334.932L307.943 335.728C307.943 335.728 308.977 337.783 308.346 339.191C308.346 339.191 308.264 336.158 307.722 335.927C307.722 335.927 306.826 336.716 306.688 337.043C306.688 337.043 307.398 338.533 306.958 339.32C306.958 339.32 306.688 337.298 306.466 337.288C306.466 337.288 305.574 338.609 305.475 339.544C305.52 338.696 305.785 337.874 306.245 337.159C305.73 337.257 305.255 337.503 304.877 337.866C304.877 337.866 305.016 336.921 306.463 336.838C306.463 336.838 307.203 335.821 307.398 335.758C307.398 335.758 305.961 335.639 305.085 336.026C305.085 336.026 305.855 335.134 307.662 335.54L308.673 334.714C308.673 334.714 306.777 334.453 305.974 334.74C305.974 334.74 306.899 333.951 308.947 334.526L310.048 333.865C310.048 333.865 308.432 333.518 307.471 333.644C307.471 333.644 308.485 333.095 310.371 333.69L311.158 333.336C311.158 333.336 309.975 333.102 309.628 333.065C309.281 333.029 309.261 332.933 309.261 332.933C310.011 332.808 310.781 332.894 311.485 333.181C311.485 333.181 313.153 332.573 313.114 332.467Z" fill="#333333"/>
|
||||||
|
<ellipse opacity="0.1" cx="306.565" cy="340.849" rx="6.73018" ry="1.13656" fill="#333333"/>
|
||||||
|
<path opacity="0.1" d="M128.793 358.43L128.462 358.354L128.793 358.43Z" fill="black"/>
|
||||||
|
<path opacity="0.1" d="M129.004 358.472L128.826 358.436L129.004 358.472Z" fill="black"/>
|
||||||
|
<path opacity="0.3" d="M174.225 343.311C174.261 343.698 174.278 344.078 174.291 344.408C174.3 344.832 174.459 345.238 174.741 345.555L174.76 345.574C174.867 344.794 174.916 344.007 174.906 343.219C174.836 343.321 174.539 343.331 174.225 343.311Z" fill="white"/>
|
||||||
|
<circle cx="69.7852" cy="33.1443" r="14.5769" fill="#FF338D"/>
|
||||||
|
<path d="M87.0213 42.636L86.9596 42.6696C85.6061 43.4099 83.97 43.4156 82.6113 42.6849C82.5728 42.6641 82.5344 42.6436 82.4963 42.6233C81.138 41.8982 79.5063 41.9039 78.1529 42.6383L78.0954 42.6696C76.7419 43.4099 75.1058 43.4156 73.7471 42.6849C73.7071 42.6633 73.6673 42.642 73.6278 42.621C72.2856 41.8994 70.6715 41.8965 69.3268 42.6134C67.3043 43.7026 64.57 45.5648 64.5821 47.668C64.5825 47.7512 64.5873 47.8343 64.5962 47.9169C64.8314 50.1011 71.9553 50.6576 75.8687 49.6283C78.786 50.2939 81.8157 50.2939 84.7329 49.6283C88.6297 50.6741 95.8984 50.0749 96.1109 47.8657C96.1189 47.783 96.1227 47.6999 96.1222 47.6167C96.1102 45.5124 93.3518 43.6697 91.3166 42.5958C89.9681 41.8903 88.3563 41.9054 87.0213 42.636Z" fill="#D7D7D7"/>
|
||||||
|
<path d="M197.118 72.1395L197.069 72.1663C195.986 72.7586 194.677 72.7632 193.59 72.1786C193.559 72.1619 193.528 72.1455 193.498 72.1293C192.411 71.5493 191.106 71.5538 190.023 72.1413L189.977 72.1664C188.894 72.7586 187.586 72.7632 186.499 72.1786C186.467 72.1613 186.435 72.1443 186.403 72.1274C185.329 71.5501 184.038 71.5479 182.962 72.1214C181.344 72.9927 179.157 74.4825 179.167 76.1651C179.167 76.2316 179.171 76.2981 179.178 76.3642C179.366 78.1115 185.065 78.5567 188.196 77.7333C190.53 78.2658 192.953 78.2658 195.287 77.7333C198.405 78.5699 204.22 78.0906 204.39 76.3233C204.396 76.2571 204.399 76.1906 204.399 76.124C204.389 74.4406 202.182 72.9664 200.554 72.1073C199.475 71.5429 198.186 71.555 197.118 72.1395Z" fill="#D7D7D7"/>
|
||||||
|
<path d="M126.285 88.8065L126.235 88.8333C125.152 89.4256 123.844 89.4302 122.757 88.8456C122.726 88.8289 122.695 88.8125 122.665 88.7963C121.578 88.2163 120.273 88.2208 119.19 88.8083L119.144 88.8334C118.061 89.4256 116.752 89.4302 115.665 88.8456C115.633 88.8283 115.601 88.8113 115.57 88.7944C114.496 88.2171 113.205 88.2148 112.129 88.7883C110.511 89.6597 108.324 91.1495 108.333 92.832C108.334 92.8986 108.337 92.9651 108.345 93.0312C108.533 94.7785 114.232 95.2237 117.363 94.4003C119.696 94.9328 122.12 94.9328 124.454 94.4003C127.571 95.2369 133.386 94.7576 133.556 92.9903C133.563 92.924 133.566 92.8575 133.565 92.791C133.556 91.1076 131.349 89.6334 129.721 88.7743C128.642 88.2099 127.353 88.222 126.285 88.8065Z" fill="#D7D7D7"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M304.044 198.493C303.999 198.435 303.954 198.38 303.908 198.323C304.015 198.295 304.126 198.293 304.196 198.388C306.183 201.09 307.62 204.946 307.966 208.277C307.993 208.535 308.05 208.64 307.799 208.622L300.817 208.12C299.943 206.334 298.972 204.533 298.185 202.759C297.781 201.85 298.43 201.16 299.251 200.854L303.919 199.11C304.295 198.97 304.231 198.738 304.044 198.493ZM285.707 201.696C284.463 206.498 287.293 212.219 292.667 212.305C295.403 212.35 296.824 212.292 298.137 211.845L301.49 210.703C301.839 210.584 301.708 210.039 301.58 209.751C301.395 209.332 301.199 208.913 300.996 208.492L307.774 208.979C308.285 209.015 308.37 208.714 308.321 208.241C307.968 204.845 306.51 200.932 304.484 198.178C304.231 197.833 303.9 197.933 303.664 198.032C298.638 192.27 287.706 193.978 285.707 201.696Z" fill="#333333"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_334_1042" x1="95.9548" y1="337.139" x2="46.7759" y2="273.701" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#808080" stop-opacity="0.25"/>
|
||||||
|
<stop offset="0.54" stop-color="#808080" stop-opacity="0.12"/>
|
||||||
|
<stop offset="1" stop-color="#808080" stop-opacity="0.1"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 78 KiB |
BIN
public/assets/images/flash-screen2.png
Normal file
After Width: | Height: | Size: 34 KiB |
9
public/assets/images/gopay.svg
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<svg width="73" height="15" viewBox="0 0 73 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M7.87963 0C12.2306 0 15.7583 3.25 15.7583 7.25852C15.7583 11.267 12.2306 14.517 7.87963 14.517C3.52763 14.517 0 11.267 0 7.25852C0 3.25 3.52763 0 7.87963 0Z" fill="#00AED6"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4763 7.03646C12.4158 6.11222 11.5626 5.40388 10.5587 5.44555H5.58173C5.40019 5.44555 5.25337 5.31013 5.25337 5.14252C5.25337 4.97585 5.40019 4.84044 5.58173 4.84044H10.6242C10.5954 4.21449 10.1311 3.67661 9.47542 3.50994C8.00524 3.26752 6.50035 3.26752 5.03017 3.50994C4.19489 3.69934 3.56991 4.33949 3.45484 5.12453C3.22469 6.54877 3.22469 7.99574 3.45484 9.41903C3.63043 10.2505 4.34667 10.8935 5.25337 11.0346C7.07572 11.2457 8.91989 11.2457 10.7422 11.0346C11.5547 10.883 12.1688 10.2685 12.266 9.50994C12.4326 8.6946 12.5031 7.86506 12.4763 7.03646ZM10.835 8.05238V8.31848C10.835 8.48514 10.6882 8.62056 10.5066 8.62056C10.3251 8.62056 10.1783 8.48514 10.1783 8.31848V8.05238C10.0721 7.96715 10.0126 7.8431 10.0146 7.71336C10.0146 7.46242 10.2348 7.25977 10.5066 7.25977C10.7785 7.25977 10.9987 7.46242 10.9987 7.71336C10.9977 7.84215 10.9382 7.96526 10.835 8.05238Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.719 2.17773C32.8431 2.17773 30.7688 4.02243 30.7688 6.44194C30.7688 8.85482 32.8233 10.7118 35.719 10.7118C38.6147 10.7118 40.6702 8.84914 40.6702 6.44194C40.6702 4.03379 38.5949 2.17773 35.719 2.17773ZM35.7189 4.11921C37.1008 4.12962 38.2119 5.1694 38.201 6.44212H38.2208C38.2238 6.51409 38.2238 6.58701 38.2198 6.65898C38.1494 7.86636 37.0294 8.79345 35.7189 8.72811H35.6802C34.2983 8.71864 33.1873 7.67792 33.1982 6.40519C33.2091 5.13246 34.337 4.10974 35.7189 4.11921Z" fill="black"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.927 3.12782V2.17232H29.2711V10.4839C29.2711 12.7879 27.3545 14.518 24.557 14.518C22.8815 14.5719 21.2556 13.9905 20.0592 12.9091L21.6553 11.4933C22.4212 12.1496 23.4489 12.482 24.4915 12.4129C25.8576 12.4129 26.8942 11.6022 26.8942 10.4952V9.67895C26.1472 10.3589 25.1264 10.7206 24.0779 10.6771C21.5304 10.6988 19.4461 8.81342 19.4223 6.46683C19.3995 4.12024 21.445 2.19979 23.9926 2.17895C25.0699 2.1174 26.1284 2.45926 26.927 3.12782ZM24.3273 8.69981C25.725 8.69981 26.8281 7.88352 26.8281 6.88542V5.9536C26.8281 5.0161 25.7389 4.1875 24.4255 4.1875C22.8105 4.1875 21.7599 5.0947 21.7599 6.41383C21.751 6.53409 21.753 6.65436 21.7659 6.77367C21.8958 7.95739 23.0426 8.82008 24.3273 8.69981Z" fill="black"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M44.4658 2.41924H42.1157L42.1356 13.9117H44.5839V9.87095C45.3626 10.4439 46.3338 10.745 47.3288 10.7242C49.7523 10.6399 51.6957 8.85011 51.7869 6.61716C51.8832 4.2611 49.8872 2.27814 47.3288 2.18913C46.2872 2.14651 45.2694 2.48553 44.4986 3.13326H44.4658V2.41924ZM44.5652 5.94117C44.5652 5.02734 45.6346 4.18643 46.9481 4.18643H46.961C47.0463 4.18265 47.1316 4.18265 47.2159 4.18643C48.5819 4.25178 49.6315 5.32375 49.5611 6.58132C49.4906 7.8389 48.327 8.80575 46.961 8.74136C45.6218 8.74136 44.5652 7.93643 44.5652 6.96295V5.94117Z" fill="black"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M58.5755 4.8389C58.5755 5.24988 58.0964 5.462 56.4873 5.66181C53.7295 6.01219 52.6264 6.84079 52.6264 8.28681C52.6264 9.73189 53.9726 10.7063 55.91 10.7063C57.031 10.7783 58.1252 10.3673 58.8712 9.59363H58.9039V10.4885H61.1032V5.3531C61.1032 3.39287 59.515 2.18359 56.9536 2.18359C54.6888 2.18359 52.8506 3.35689 52.5222 5.00178L54.8326 5.44401C55.0727 4.52829 56.0002 3.90897 57.0191 3.98568C57.9654 3.98568 58.5755 4.3067 58.5755 4.8389ZM58.7401 6.51367H58.7728L58.753 7.47579C58.753 8.24379 57.6628 8.8489 56.2511 8.8489C55.3256 8.8489 54.899 8.61879 54.899 8.14719C54.899 7.6756 55.4307 7.41519 56.8681 7.16708C58.0834 6.9739 58.5228 6.80439 58.7401 6.51367Z" fill="black"/>
|
||||||
|
<path d="M65.5341 10.0355L61.4827 2.41992H64.182L66.8406 7.69454H66.8803L69.5061 2.41992H72.2183L66.1511 13.9123H63.4528L65.5341 10.0355Z" fill="black"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.9 KiB |
BIN
public/assets/images/hand-tree.png
Normal file
After Width: | Height: | Size: 43 KiB |
40
public/assets/images/location.svg
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
<svg width="51" height="50" viewBox="0 0 51 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_1_19304)">
|
||||||
|
<circle cx="25.334" cy="24.999" r="25" fill="#231F20"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5898 33.4282C15.5898 32.2765 16.2179 31.2178 17.2446 30.696C19.5992 29.4993 23.8118 27.4814 25.4449 27.4814C27.083 27.4814 31.4891 29.512 33.9407 30.7072C34.9947 31.2211 35.6457 32.2952 35.6457 33.4678V38.0574C35.6457 39.7901 34.2411 41.1947 32.5085 41.1947H18.7271C16.9944 41.1947 15.5898 39.7901 15.5898 38.0574V33.4282Z" stroke="#FFB500" stroke-width="1.39735"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.9893 39.2223C33.1896 39.1097 33.2971 38.9906 33.2971 38.8673C33.2971 38.1726 29.8839 37.6094 25.6735 37.6094C21.4631 37.6094 18.0499 38.1726 18.0499 38.8673C18.0499 38.9906 18.1574 39.1098 18.3579 39.2224C18.0261 39.6827 17.8306 40.2479 17.8306 40.8587C17.8306 42.4057 19.0847 43.6598 20.6317 43.6598H30.7156C32.2626 43.6598 33.5167 42.4057 33.5167 40.8587C33.5167 40.2478 33.3212 39.6826 32.9893 39.2223Z" fill="#515257"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.0879 15.0299C15.4322 15.063 14.9175 15.6043 14.9175 16.2608V32.6687C14.9175 33.3494 15.4693 33.9012 16.15 33.9012H17.8431C17.6164 33.5728 17.4945 33.2241 17.4945 32.8628C17.4945 30.9052 21.0731 29.3184 25.4876 29.3184C29.9021 29.3184 33.4807 30.9052 33.4807 32.8628C33.4807 33.2241 33.3588 33.5728 33.1321 33.9012H35.1779C35.8662 33.9012 36.4211 33.3375 36.4102 32.6493L36.2155 20.2958C36.2094 19.9096 36.0227 19.5487 35.7111 19.3206L28.9613 14.3809L16.0879 15.0299Z" fill="url(#paint0_linear_1_19304)"/>
|
||||||
|
<path d="M25.9617 21.5544C28.816 20.3463 30.8194 17.5147 30.8194 14.2144C30.8194 9.81547 27.2608 6.24948 22.8708 6.24948C18.481 6.24948 14.9222 9.81547 14.9222 14.2144C14.9222 14.2144 14.4517 22.6856 22.8708 28.3223C22.8708 28.3223 21.8841 23.4981 25.9617 21.5544Z" fill="#515257"/>
|
||||||
|
<circle cx="25.4445" cy="41.0089" r="0.54798" fill="white"/>
|
||||||
|
<path d="M18.3411 13.8096H17.0485V11.57H17.4672V13.4374H18.3411V13.8096ZM20.6849 12.6831C20.6849 13.0287 20.5885 13.3067 20.3958 13.5172C20.2053 13.7276 19.9494 13.8328 19.6282 13.8328C19.307 13.8328 19.0501 13.7276 18.8574 13.5172C18.6646 13.3067 18.5683 13.0287 18.5683 12.6831C18.5683 12.3354 18.6635 12.0562 18.854 11.8458C19.0468 11.6354 19.3037 11.5301 19.6249 11.5301C19.9506 11.5301 20.2086 11.6354 20.3991 11.8458C20.5896 12.054 20.6849 12.3331 20.6849 12.6831ZM19.0168 12.6831C19.0168 12.918 19.0722 13.104 19.183 13.2414C19.2937 13.3787 19.4422 13.4474 19.6282 13.4474C19.8165 13.4474 19.9649 13.3798 20.0735 13.2447C20.182 13.1074 20.2363 12.9202 20.2363 12.6831C20.2363 12.4461 20.182 12.2589 20.0735 12.1216C19.9649 11.9843 19.8154 11.9156 19.6249 11.9156C19.4366 11.9156 19.2882 11.9843 19.1797 12.1216C19.0711 12.2589 19.0168 12.4461 19.0168 12.6831ZM22.694 13.7032C22.5567 13.7918 22.364 13.8362 22.1159 13.8362C21.7836 13.8362 21.5089 13.732 21.2918 13.5238C21.0769 13.3134 20.9695 13.0354 20.9695 12.6898C20.9695 12.3509 21.0758 12.0751 21.2885 11.8624C21.5034 11.6475 21.7792 11.5401 22.1159 11.5401C22.3617 11.5401 22.5534 11.5811 22.6907 11.6631V12.0718C22.5224 11.9743 22.3363 11.9256 22.1325 11.9256C21.9287 11.9256 21.7581 11.9953 21.6208 12.1349C21.4856 12.2722 21.4181 12.4572 21.4181 12.6898C21.4181 12.9224 21.4856 13.1074 21.6208 13.2447C21.7581 13.382 21.9364 13.4507 22.1557 13.4507C22.3662 13.4507 22.5456 13.3953 22.694 13.2846V13.7032ZM24.8684 13.8096H24.3401L23.5359 12.6998L24.3101 11.57H24.8119L24.0344 12.6931L24.8684 13.8096ZM23.5027 13.8096H23.084V11.57H23.5027V13.8096ZM26.5063 13.8096H25.1705V11.57H26.493V11.9123H25.5925V12.5203H26.3933V12.8593H25.5925V13.4673H26.5063V13.8096ZM27.9361 13.8096H27.5175V12.9922L26.7532 11.57H27.2417L27.3912 11.8956C27.4776 12.0839 27.5485 12.2423 27.6039 12.3708C27.6592 12.4971 27.6925 12.5757 27.7035 12.6067L27.7235 12.6566C27.7434 12.5746 27.8575 12.321 28.0657 11.8956L28.2186 11.57H28.707L27.9361 12.9789V13.8096Z" fill="#FFD300"/>
|
||||||
|
<path d="M19.2953 16.3048H18.8488V17.793H18.5172V16.3048H18.0708V16.0333H19.2953V16.3048ZM20.0851 16.3048H19.871V16.8792H20.0903C20.1913 16.8792 20.267 16.854 20.3174 16.8035C20.3679 16.7513 20.3932 16.679 20.3932 16.5868C20.3932 16.4963 20.3662 16.4267 20.3122 16.3779C20.26 16.3292 20.1843 16.3048 20.0851 16.3048ZM19.871 17.793H19.5421V16.0333H20.0851C20.2853 16.0333 20.4419 16.0838 20.555 16.1847C20.6699 16.2857 20.7273 16.4206 20.7273 16.5894C20.7256 16.7147 20.6951 16.8209 20.636 16.9079C20.5768 16.9932 20.4959 17.0567 20.3932 17.0985L20.8448 17.793H20.4506L20.0512 17.1507H19.871V17.793ZM21.8731 17.793H21.5442V17.1507L20.9437 16.0333H21.3275L21.445 16.2892C21.5128 16.4371 21.5685 16.5616 21.612 16.6625C21.6556 16.7617 21.6817 16.8235 21.6904 16.8479L21.706 16.887C21.7217 16.8226 21.8113 16.6233 21.9749 16.2892L22.095 16.0333H22.4788L21.8731 17.1403V17.793ZM23.636 17.793H23.307L23.448 16.0333H23.824L24.0642 16.673C24.1059 16.7809 24.1451 16.8888 24.1816 16.9967C24.2182 17.1029 24.2443 17.1821 24.26 17.2343L24.2835 17.3152C24.3374 17.1342 24.4123 16.9201 24.508 16.673L24.7534 16.0333H25.1293L25.3017 17.793H24.9727L24.91 17.1063L24.863 16.4902C24.8004 16.6695 24.7255 16.8749 24.6385 17.1063L24.3931 17.7669H24.1686L23.9284 17.1063L23.7221 16.498C23.7221 16.5833 23.7108 16.7861 23.6882 17.1063L23.636 17.793ZM26.6851 17.793H25.6355V16.0333H26.6746V16.3022H25.9671V16.78H26.5963V17.0463H25.9671V17.5241H26.6851V17.793ZM27.3412 17.2082H27.041V16.0333H27.3412V17.2082ZM27.3934 17.6076C27.3934 17.6668 27.3734 17.7164 27.3334 17.7564C27.2933 17.7947 27.2446 17.8139 27.1872 17.8139C27.128 17.8139 27.0784 17.7947 27.0383 17.7564C27 17.7164 26.9809 17.6668 26.9809 17.6076C26.9809 17.5502 27 17.5014 27.0383 17.4614C27.0784 17.4214 27.128 17.4014 27.1872 17.4014C27.2446 17.4014 27.2933 17.4214 27.3334 17.4614C27.3734 17.5014 27.3934 17.5502 27.3934 17.6076Z" fill="white"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.0908 23.6014C28.1442 23.6497 28.1857 23.7052 28.215 23.7675C28.2449 23.8318 28.2597 23.9012 28.2597 23.9758L28.2588 24.4733L27.9562 24.4704V24.4418C27.9358 24.4506 27.9208 24.4568 27.9113 24.4599C27.8438 24.4859 27.7732 24.499 27.6993 24.499C27.6018 24.499 27.5098 24.4764 27.4233 24.4313C27.3367 24.3854 27.268 24.323 27.2171 24.2441C27.1654 24.1638 27.1396 24.0743 27.1396 23.9758C27.1396 23.9012 27.1546 23.8318 27.1846 23.7675C27.2144 23.7038 27.2555 23.6484 27.3077 23.6014C27.3593 23.5542 27.4191 23.5183 27.4872 23.4933C27.5554 23.4674 27.626 23.4543 27.6993 23.4543C27.7718 23.4543 27.8424 23.467 27.9113 23.4925C27.98 23.518 28.0399 23.5542 28.0908 23.6014ZM27.6993 24.2227C27.7687 24.2227 27.8286 24.1986 27.8789 24.1501C27.9297 24.1012 27.9553 24.0429 27.9553 23.9755C27.9553 23.9309 27.9435 23.8898 27.9199 23.8522C27.8964 23.8147 27.8648 23.7848 27.8253 23.7625C27.7865 23.7409 27.7445 23.73 27.6993 23.73C27.6554 23.73 27.6137 23.7409 27.5742 23.7625C27.5347 23.7848 27.5032 23.8147 27.4797 23.8522C27.4561 23.8898 27.4443 23.9309 27.4443 23.9755C27.4443 24.0429 27.4698 24.1012 27.5207 24.1501C27.571 24.1986 27.6305 24.2227 27.6993 24.2227Z" fill="#333333"/>
|
||||||
|
<path d="M29.0952 23.1044C29.0711 23.0903 29.0443 23.0833 29.0149 23.0833C28.9857 23.0833 28.9592 23.0903 28.9358 23.1044C28.9121 23.1183 28.8927 23.1378 28.8775 23.1627C28.8634 23.1869 28.8564 23.2135 28.8564 23.2429C28.8564 23.2714 28.8637 23.2986 28.8785 23.324C28.8924 23.3482 28.9115 23.3677 28.9358 23.3823C28.9592 23.3963 28.9857 23.4033 29.0149 23.4033C29.0443 23.4033 29.0711 23.3959 29.0952 23.3813C29.1194 23.3666 29.1385 23.3475 29.1525 23.324C29.1665 23.3005 29.1734 23.2735 29.1734 23.2429C29.1734 23.2135 29.1665 23.1869 29.1525 23.1627C29.1378 23.1378 29.1188 23.1183 29.0952 23.1044Z" fill="#333333"/>
|
||||||
|
<path d="M28.8682 24.4727H29.1729V23.4938L28.8682 23.4948V24.4727Z" fill="#333333"/>
|
||||||
|
<path d="M28.7298 23.4933C28.4484 23.5073 28.3076 23.6534 28.3076 23.9316V24.4727H28.6133V23.9316C28.6133 23.8266 28.6521 23.7724 28.7298 23.7692H28.747C28.7724 23.7706 28.7931 23.7766 28.809 23.7874V23.499C28.7886 23.4959 28.768 23.494 28.747 23.4933H28.7298Z" fill="#333333"/>
|
||||||
|
<path d="M32.0643 23.4933C31.7829 23.5073 31.6421 23.6534 31.6421 23.9316V24.4727H31.9478V23.9316C31.9478 23.8266 31.9866 23.7724 32.0643 23.7692H32.0814C32.1069 23.7706 32.1276 23.7766 32.1434 23.7874V23.499C32.1231 23.4959 32.1025 23.494 32.0814 23.4933H32.0643Z" fill="#333333"/>
|
||||||
|
<path d="M34.0715 23.4933C33.7901 23.5073 33.6494 23.6534 33.6494 23.9316V24.4727H33.955V23.9316C33.955 23.8266 33.9938 23.7724 34.0715 23.7692H34.0887C34.1142 23.7706 34.1348 23.7766 34.1507 23.7874V23.499C34.1304 23.4959 34.1097 23.494 34.0887 23.4933H34.0715Z" fill="#333333"/>
|
||||||
|
<path d="M33.5234 23.1044C33.4993 23.0903 33.4725 23.0833 33.4432 23.0833C33.414 23.0833 33.3875 23.0903 33.364 23.1044C33.3404 23.1183 33.321 23.1378 33.3057 23.1627C33.2917 23.1869 33.2847 23.2135 33.2847 23.2429C33.2847 23.2714 33.2919 23.2986 33.3067 23.324C33.3206 23.3482 33.3397 23.3677 33.364 23.3823C33.3875 23.3963 33.414 23.4033 33.4432 23.4033C33.4725 23.4033 33.4993 23.3959 33.5234 23.3813C33.5476 23.3666 33.5667 23.3475 33.5808 23.324C33.5947 23.3005 33.6017 23.2735 33.6017 23.2429C33.6017 23.2135 33.5947 23.1869 33.5808 23.1627C33.5661 23.1378 33.547 23.1183 33.5234 23.1044Z" fill="#333333"/>
|
||||||
|
<path d="M33.175 23.4937H32.8169L32.5008 23.8643H32.497V23.1156L32.1914 23.1165V24.4707H32.497V23.9913L32.8561 24.4707H33.2371L32.8217 23.9131L33.175 23.4937Z" fill="#333333"/>
|
||||||
|
<path d="M33.2959 24.4727H33.6005V23.4938L33.2959 23.4948V24.4727Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.4253 23.6014C31.4788 23.6497 31.5201 23.7052 31.5494 23.7675C31.5793 23.8318 31.5943 23.9012 31.5943 23.9758L31.5934 24.4733L31.2907 24.4704V24.4418C31.2702 24.4506 31.2553 24.4568 31.2457 24.4599C31.1783 24.4859 31.1076 24.499 31.0338 24.499C30.9363 24.499 30.8443 24.4764 30.7577 24.4313C30.6711 24.3854 30.6024 24.323 30.5515 24.2441C30.5 24.1638 30.4741 24.0743 30.4741 23.9758C30.4741 23.9012 30.489 23.8318 30.5191 23.7675C30.5489 23.7038 30.59 23.6484 30.6422 23.6014C30.6938 23.5542 30.7537 23.5183 30.8217 23.4933C30.8899 23.4674 30.9605 23.4543 31.0338 23.4543C31.1064 23.4543 31.1769 23.467 31.2457 23.4925C31.3145 23.518 31.3744 23.5542 31.4253 23.6014ZM31.0337 24.2227C31.1031 24.2227 31.163 24.1986 31.2133 24.1501C31.2642 24.1012 31.2897 24.0429 31.2897 23.9755C31.2897 23.9309 31.2779 23.8898 31.2542 23.8522C31.2307 23.8147 31.1992 23.7848 31.1598 23.7625C31.1209 23.7409 31.0789 23.73 31.0337 23.73C30.9898 23.73 30.948 23.7409 30.9087 23.7625C30.8691 23.7848 30.8376 23.8147 30.8141 23.8522C30.7905 23.8898 30.7788 23.9309 30.7788 23.9755C30.7788 24.0429 30.8041 24.1012 30.8551 24.1501C30.9054 24.1986 30.9649 24.2227 31.0337 24.2227Z" fill="#333333"/>
|
||||||
|
<path d="M27.1002 24.2441C27.0636 24.1873 27.0404 24.1257 27.0296 24.0596L27.0288 24.0588C27.0034 24.0907 26.976 24.1164 26.9467 24.1361C26.892 24.1738 26.8324 24.1925 26.7681 24.1925C26.7038 24.1925 26.6443 24.1738 26.5896 24.1361C26.5348 24.0986 26.4912 24.0489 26.4587 23.9872C26.4262 23.9248 26.41 23.8599 26.41 23.7924C26.41 23.7249 26.4259 23.6599 26.4577 23.5976C26.4902 23.5358 26.5339 23.4862 26.5885 23.4486C26.6447 23.4111 26.7044 23.3923 26.7681 23.3923C26.8318 23.3923 26.8916 23.4111 26.9476 23.4486C26.9731 23.4651 26.9996 23.4896 27.0269 23.5222L27.2457 23.2958C27.2035 23.25 27.1558 23.2105 27.1024 23.1774C27.0005 23.1144 26.8891 23.0829 26.7681 23.0829C26.6478 23.0829 26.5364 23.1144 26.4339 23.1774C26.3308 23.2417 26.2492 23.3276 26.1894 23.4352C26.1295 23.5434 26.0996 23.6625 26.0996 23.7924C26.0996 23.9216 26.1295 24.0404 26.1894 24.1487C26.2492 24.2562 26.3308 24.3418 26.4339 24.4055C26.5364 24.4685 26.6478 24.5 26.7681 24.5C26.8891 24.5 27.0005 24.4685 27.1024 24.4055C27.1313 24.3874 27.1588 24.3672 27.1848 24.3452C27.1527 24.3152 27.1244 24.2816 27.1002 24.2441Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.172 23.9777C29.8673 24.1226 29.941 24.4824 29.941 24.4824C29.3118 24.062 29.347 23.4302 29.347 23.4302C29.347 23.1021 29.6129 22.8362 29.941 22.8362C30.2691 22.8362 30.535 23.1021 30.535 23.4302C30.535 23.6764 30.3853 23.8876 30.172 23.9777ZM29.9505 23.8329C29.9515 23.8328 29.9526 23.8328 29.9536 23.8328C30.1702 23.826 30.3438 23.6485 30.3438 23.4302C30.3438 23.2078 30.1635 23.0274 29.941 23.0274C29.7185 23.0274 29.5382 23.2078 29.5382 23.4302C29.5382 23.4812 29.5477 23.53 29.565 23.5749C29.6232 23.7259 29.7695 23.8331 29.941 23.8331C29.9442 23.8331 29.9473 23.833 29.9505 23.8329Z" fill="white"/>
|
||||||
|
<path d="M29.9645 22.9939C29.9158 22.9918 29.8666 23.0412 29.8289 23.1414C29.8247 23.1525 29.8246 23.1709 29.8287 23.1826C29.8328 23.1939 29.8395 23.1943 29.8437 23.1832C29.8773 23.094 29.9208 23.0503 29.9641 23.052C30.0077 23.0539 30.051 23.1009 30.0837 23.1932C30.0878 23.2049 30.0946 23.2051 30.0988 23.1939C30.103 23.1828 30.103 23.1642 30.0989 23.1527C30.0622 23.0489 30.0134 22.9961 29.9645 22.9939Z" fill="#333333"/>
|
||||||
|
<path d="M29.999 23.1289C29.9631 23.1277 29.9267 23.1544 29.8989 23.2092C29.8925 23.2217 29.8924 23.2423 29.8986 23.2552C29.9048 23.2681 29.915 23.2685 29.9214 23.2558C29.9429 23.2137 29.9707 23.1933 29.9986 23.1939C30.0263 23.195 30.0538 23.2173 30.0746 23.2608C30.0808 23.2735 30.0911 23.2737 30.0975 23.2614C30.1039 23.2487 30.104 23.2283 30.0978 23.2152C30.0708 23.1592 30.0349 23.13 29.999 23.1289Z" fill="#333333"/>
|
||||||
|
<path d="M29.9648 23.0489C29.9283 23.047 29.8914 23.0878 29.8631 23.1716C29.8589 23.1841 29.8588 23.2047 29.8629 23.2178C29.867 23.2305 29.8738 23.231 29.878 23.2183C29.9021 23.1472 29.9333 23.1126 29.9644 23.1139C29.9956 23.1155 30.0264 23.153 30.0498 23.2266C30.0539 23.2393 30.0607 23.2397 30.0649 23.227C30.0692 23.2145 30.0693 23.1939 30.0652 23.1812C30.0378 23.0949 30.0013 23.0505 29.9648 23.0489Z" fill="#333333"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.0623 23.3384C30.0765 23.3483 30.0874 23.3617 30.095 23.3787C30.1027 23.3958 30.1065 23.4165 30.1065 23.441C30.1065 23.4425 30.1064 23.4441 30.1064 23.4456C30.1217 23.4287 30.1292 23.4066 30.1292 23.3792C30.1292 23.346 30.1175 23.3205 30.0936 23.3027C30.0696 23.2851 30.0351 23.276 29.9906 23.276H29.9209V23.3107H29.9424C29.9695 23.3107 29.9927 23.3129 30.0118 23.3171C30.0313 23.3213 30.0482 23.3284 30.0623 23.3384ZM29.9209 23.3107H29.8208V23.7178H29.9209V23.5709H29.9559C29.9762 23.5709 29.9957 23.5679 30.0147 23.5618C30.0332 23.5559 30.0494 23.5471 30.0632 23.5357C30.0767 23.5244 30.0874 23.5108 30.095 23.495C30.1021 23.4803 30.1058 23.4638 30.1064 23.4456C30.1026 23.4497 30.0984 23.4536 30.0936 23.4571C30.0696 23.4752 30.0351 23.4844 29.9906 23.4844H29.9209V23.3107Z" fill="#333333"/>
|
||||||
|
<rect x="26.0723" y="25.7109" width="8.30696" height="1.66139" rx="0.830696" fill="#E5E9F2" stroke="white" stroke-width="1.04167"/>
|
||||||
|
<path d="M28.3068 26.2133C28.3068 26.2602 28.2903 26.2974 28.2571 26.3248C28.2246 26.3522 28.1799 26.3659 28.1229 26.3659C28.0566 26.3659 28.0029 26.3547 27.9618 26.3323V26.249C28.0101 26.2779 28.062 26.2923 28.1175 26.2923C28.1507 26.2923 28.176 26.2858 28.1933 26.2728C28.2106 26.2599 28.2192 26.2422 28.2192 26.2198C28.2192 26.1939 28.2095 26.1737 28.19 26.1593C28.1713 26.1448 28.1395 26.1286 28.0948 26.1106C28.0537 26.0947 28.0205 26.0749 27.9953 26.0511C27.9708 26.0273 27.9585 25.9952 27.9585 25.9548C27.9585 25.9094 27.9755 25.8733 28.0094 25.8466C28.044 25.8192 28.0869 25.8055 28.1381 25.8055C28.1951 25.8055 28.2409 25.8135 28.2755 25.8293V25.9105C28.2423 25.8903 28.1969 25.8802 28.1392 25.8802C28.1103 25.8802 28.0873 25.887 28.0699 25.9007C28.0534 25.9137 28.0451 25.9306 28.0451 25.9516C28.0451 25.9645 28.0476 25.9761 28.0526 25.9862C28.0577 25.9956 28.0674 26.0049 28.0818 26.0143C28.097 26.0237 28.1078 26.0302 28.1143 26.0338C28.1215 26.0367 28.1367 26.0431 28.1597 26.0532C28.2059 26.072 28.2419 26.0933 28.2679 26.1171C28.2939 26.1409 28.3068 26.173 28.3068 26.2133ZM28.6445 26.3594H28.5395L28.3708 25.8109H28.4616L28.5147 25.9927C28.5334 26.0561 28.5489 26.1117 28.5612 26.1593C28.5741 26.2061 28.5824 26.2375 28.586 26.2534L28.5915 26.2761C28.6023 26.2299 28.6286 26.1351 28.6704 25.9916L28.7223 25.8109H28.8132L28.8662 25.9916L28.9473 26.2772C28.9574 26.2346 28.9852 26.1394 29.0306 25.9916L29.0858 25.8109H29.1734L29.0004 26.3594H28.8954L28.8435 26.1798L28.7678 25.9061C28.757 25.9523 28.7324 26.0435 28.6942 26.1798L28.6445 26.3594ZM29.3692 26.3594H29.2838V25.8109H29.3692V26.3594ZM29.366 25.5989C29.3768 25.6097 29.3822 25.6231 29.3822 25.6389C29.3822 25.6548 29.3768 25.6681 29.366 25.679C29.3552 25.6891 29.3418 25.6941 29.3259 25.6941C29.3101 25.6941 29.2967 25.6891 29.2859 25.679C29.2758 25.6681 29.2708 25.6548 29.2708 25.6389C29.2708 25.6231 29.2758 25.6097 29.2859 25.5989C29.2967 25.5881 29.3101 25.5827 29.3259 25.5827C29.3418 25.5827 29.3552 25.5881 29.366 25.5989ZM29.6163 26.5725H29.5319V25.8109H29.6163V25.8942C29.6545 25.8329 29.7111 25.8023 29.7861 25.8023C29.8589 25.8023 29.9159 25.829 29.957 25.8823C29.9989 25.935 30.0198 26.001 30.0198 26.0803C30.0198 26.1647 29.9978 26.2339 29.9538 26.288C29.9105 26.3413 29.8539 26.368 29.7839 26.368C29.7118 26.368 29.6559 26.3374 29.6163 26.2761V26.5725ZM29.6163 26.0857C29.6163 26.1556 29.6325 26.2072 29.665 26.2404C29.6974 26.2736 29.7335 26.2901 29.7731 26.2901C29.8193 26.2901 29.8571 26.2721 29.8867 26.2361C29.9163 26.1993 29.9311 26.1474 29.9311 26.0803C29.9311 26.0204 29.9166 25.9721 29.8878 25.9353C29.8589 25.8986 29.8225 25.8802 29.7785 25.8802C29.7345 25.8802 29.6963 25.8964 29.6639 25.9288C29.6321 25.9606 29.6163 26.0129 29.6163 26.0857ZM30.5459 26.3313C30.5034 26.3536 30.4514 26.3648 30.3901 26.3648C30.3072 26.3648 30.2401 26.3395 30.1889 26.2891C30.1384 26.2379 30.1132 26.1704 30.1132 26.0868C30.1132 25.9995 30.1359 25.9306 30.1814 25.8802C30.2268 25.8297 30.2852 25.8044 30.3566 25.8044C30.4251 25.8044 30.4796 25.8264 30.5199 25.8704C30.5603 25.9144 30.5805 25.9768 30.5805 26.0576C30.5805 26.0806 30.5787 26.1019 30.5751 26.1214H30.2008C30.2073 26.1755 30.2279 26.2169 30.2625 26.2458C30.2971 26.2746 30.3425 26.2891 30.3988 26.2891C30.4601 26.2891 30.5091 26.2764 30.5459 26.2512V26.3313ZM30.3566 25.8791C30.3155 25.8791 30.2805 25.8939 30.2517 25.9234C30.2228 25.953 30.2059 25.9952 30.2008 26.05H30.4951V26.0284C30.4951 25.9829 30.4828 25.9469 30.4583 25.9202C30.4338 25.8928 30.3999 25.8791 30.3566 25.8791ZM31.3843 26.0316L30.9289 26.2361V26.1474L31.2934 25.9894L30.9289 25.8337V25.746L31.3843 25.9494V26.0316ZM31.9547 26.0316L31.4993 26.2361V26.1474L31.8639 25.9894L31.4993 25.8337V25.746L31.9547 25.9494V26.0316Z" fill="#333333"/>
|
||||||
|
<circle cx="26.9029" cy="26.5416" r="0.593354" fill="#FDD300"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_1_19304" x1="20.2907" y1="24.141" x2="20.2907" y2="33.9012" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#FFD300"/>
|
||||||
|
<stop offset="1" stop-color="#FFB500"/>
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath id="clip0_1_19304">
|
||||||
|
<rect width="50" height="50" fill="white" transform="translate(0.333984 -0.000976562)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 18 KiB |
19
public/assets/images/logo.svg
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<svg width="116" height="25" viewBox="0 0 116 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.9124 11.3238C29.6694 12.0029 30.2563 12.781 30.6713 13.6553C31.094 14.5591 31.3054 15.5324 31.3054 16.5791L31.2919 23.5629L27.0064 23.5219V23.12C26.7182 23.2448 26.5059 23.3305 26.3714 23.3743C25.4156 23.7391 24.4155 23.9238 23.3693 23.9238C21.9898 23.9238 20.6881 23.6067 19.4623 22.9734C18.2356 22.3295 17.2624 21.4534 16.5419 20.3457C15.8109 19.2191 15.4458 17.9629 15.4458 16.5791C15.4458 15.5324 15.6581 14.5591 16.0818 13.6553C16.5045 12.7619 17.0866 11.9848 17.8254 11.3238C18.5564 10.6619 19.4037 10.1581 20.3682 9.80764C21.3318 9.44287 22.3328 9.25907 23.3693 9.25907C24.3963 9.25907 25.3973 9.43811 26.3714 9.79526C27.3446 10.1534 28.1919 10.6619 28.9124 11.3238ZM23.3693 20.0486C24.3521 20.0486 25.1994 19.7114 25.9113 19.0305C26.6318 18.3438 26.993 17.5257 26.993 16.5791C26.993 15.9534 26.8268 15.3772 26.4925 14.8486C26.1591 14.3229 25.7134 13.9029 25.1533 13.5895C24.6038 13.2867 24.0091 13.1334 23.3693 13.1334C22.7478 13.1334 22.157 13.2867 21.5988 13.5895C21.0388 13.9029 20.593 14.3229 20.2597 14.8486C19.9263 15.3772 19.7592 15.9534 19.7592 16.5791C19.7592 17.5257 20.1194 18.3438 20.8409 19.0305C21.5527 19.7114 22.3962 20.0486 23.3693 20.0486Z" fill="#515257"/>
|
||||||
|
<path d="M43.1374 4.35459C42.7954 4.15745 42.4159 4.05935 42.0009 4.05935C41.5869 4.05935 41.2122 4.15745 40.8798 4.35459C40.5446 4.55078 40.2708 4.82316 40.0546 5.17269C39.8558 5.51269 39.7568 5.88697 39.7568 6.2984C39.7568 6.69935 39.8596 7.08031 40.0691 7.43745C40.266 7.77745 40.5359 8.05078 40.8798 8.25554C41.2122 8.45269 41.5869 8.55078 42.0009 8.55078C42.4159 8.55078 42.7954 8.44697 43.1374 8.24126C43.4794 8.03554 43.7503 7.76792 43.9492 7.43745C44.1471 7.10697 44.246 6.72792 44.246 6.2984C44.246 5.88697 44.1471 5.51269 43.9492 5.17269C43.7407 4.82316 43.4708 4.55078 43.1374 4.35459Z" fill="#515257"/>
|
||||||
|
<path d="M39.9199 23.5488H44.2333V9.80883L39.9199 9.82312V23.5488Z" fill="#515257"/>
|
||||||
|
<path d="M37.9587 9.80802C33.9748 10.0052 31.9824 12.0547 31.9824 15.9604V23.5547H36.3092V15.9604C36.3092 14.4861 36.8587 13.7261 37.9587 13.6814H38.2018C38.562 13.7004 38.855 13.7852 39.0798 13.9366V9.88802C38.7916 9.84421 38.4996 9.81754 38.2018 9.80802H37.9587Z" fill="#515257"/>
|
||||||
|
<path d="M85.1731 9.80802C81.1892 10.0052 79.1968 12.0547 79.1968 15.9604V23.5547H83.5236V15.9604C83.5236 14.4861 84.0731 13.7261 85.1731 13.6814H85.4161C85.7764 13.7004 86.0694 13.7852 86.2942 13.9366V9.88802C86.006 9.84421 85.7139 9.81754 85.4161 9.80802H85.1731Z" fill="#515257"/>
|
||||||
|
<path d="M113.594 9.80802C109.611 10.0052 107.618 12.0547 107.618 15.9604V23.5547H111.945V15.9604C111.945 14.4861 112.494 13.7261 113.594 13.6814H113.837C114.199 13.7004 114.491 13.7852 114.716 13.9366V9.88802C114.428 9.84421 114.135 9.81754 113.837 9.80802H113.594Z" fill="#515257"/>
|
||||||
|
<path d="M105.834 4.35459C105.491 4.15745 105.112 4.05935 104.698 4.05935C104.283 4.05935 103.909 4.15745 103.576 4.35459C103.242 4.55078 102.967 4.82316 102.751 5.17269C102.552 5.51269 102.453 5.88697 102.453 6.2984C102.453 6.69935 102.556 7.08031 102.764 7.43745C102.961 7.77745 103.232 8.05078 103.576 8.25554C103.909 8.45269 104.283 8.55078 104.698 8.55078C105.112 8.55078 105.491 8.44697 105.834 8.24126C106.176 8.03554 106.447 7.76792 106.644 7.43745C106.842 7.10697 106.942 6.72792 106.942 6.2984C106.942 5.88697 106.842 5.51269 106.644 5.17269C106.437 4.82316 106.166 4.55078 105.834 4.35459Z" fill="#515257"/>
|
||||||
|
<path d="M100.898 9.80815H95.829L91.3533 15.0091H91.2985V4.50053L86.9717 4.51387V23.5215H91.2985V16.7929L96.3833 23.5215H101.778L95.8962 15.6948L100.898 9.80815Z" fill="#515257"/>
|
||||||
|
<path d="M102.615 23.5488H106.93V9.80883L102.615 9.82312V23.5488Z" fill="#515257"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.1277 11.3238C76.8847 12.0029 77.4707 12.781 77.8857 13.6553C78.3093 14.5591 78.5207 15.5324 78.5207 16.5791L78.5072 23.5629L74.2217 23.5219V23.12C73.9316 23.2448 73.7203 23.3305 73.5858 23.3743C72.6299 23.7391 71.6299 23.9238 70.5837 23.9238C69.2042 23.9238 67.9015 23.6067 66.6757 22.9734C65.449 22.3295 64.4768 21.4534 63.7553 20.3457C63.0262 19.2191 62.6602 17.9629 62.6602 16.5791C62.6602 15.5324 62.8715 14.5591 63.2971 13.6553C63.7188 12.7619 64.301 11.9848 65.0397 11.3238C65.7698 10.6619 66.6181 10.1581 67.5816 9.80764C68.5471 9.44287 69.5471 9.25907 70.5837 9.25907C71.6116 9.25907 72.6117 9.43811 73.5858 9.79526C74.5589 10.1534 75.4062 10.6619 76.1277 11.3238ZM70.5837 20.0486C71.5665 20.0486 72.4138 19.7114 73.1256 19.0305C73.8471 18.3438 74.2073 17.5257 74.2073 16.5791C74.2073 15.9534 74.0402 15.3772 73.7059 14.8486C73.3735 14.3229 72.9277 13.9029 72.3686 13.5895C71.8182 13.2867 71.2245 13.1334 70.5837 13.1334C69.9612 13.1334 69.3704 13.2867 68.8142 13.5895C68.2531 13.9029 67.8074 14.3229 67.474 14.8486C67.1397 15.3772 66.9745 15.9534 66.9745 16.5791C66.9745 17.5257 67.3338 18.3438 68.0562 19.0305C68.7661 19.7114 69.6096 20.0486 70.5837 20.0486Z" fill="#515257"/>
|
||||||
|
<path d="M14.89 20.3461C14.3722 19.548 14.0427 18.6842 13.8909 17.7565L13.8794 17.7442C13.5192 18.1918 13.1311 18.5537 12.7161 18.8299C11.9418 19.3585 11.0993 19.6213 10.1886 19.6213C9.27784 19.6213 8.43534 19.3585 7.66009 18.8299C6.88483 18.3032 6.26713 17.6061 5.80793 16.7394C5.34777 15.8632 5.11818 14.9527 5.11818 14.0051C5.11818 13.0585 5.34297 12.1461 5.79352 11.2708C6.25368 10.4042 6.87138 9.70702 7.64568 9.17941C8.44015 8.65274 9.28649 8.38893 10.1886 8.38893C11.0897 8.38893 11.937 8.65274 12.7295 9.17941C13.0907 9.41179 13.4654 9.7556 13.8525 10.2127L16.9497 7.03465C16.3541 6.39179 15.6778 5.8375 14.9208 5.37274C13.4788 4.48798 11.9005 4.04607 10.1886 4.04607C8.48434 4.04607 6.90693 4.48798 5.45633 5.37274C3.99612 6.2756 2.84141 7.48131 1.99506 8.99179C1.1468 10.5108 0.723145 12.1823 0.723145 14.0051C0.723145 15.8185 1.1468 17.4861 1.99506 19.0061C2.84141 20.5156 3.99612 21.7165 5.45633 22.6108C6.90693 23.4956 8.48434 23.9375 10.1886 23.9375C11.9005 23.9375 13.4788 23.4956 14.9208 22.6108C15.3319 22.3575 15.72 22.0737 16.0889 21.7642C15.6326 21.3432 15.232 20.8718 14.89 20.3461Z" fill="#515257"/>
|
||||||
|
<path d="M55.1114 23.6934C55.1114 23.6934 54.0682 18.6429 58.3825 16.6086C61.4028 15.3438 63.522 12.3791 63.522 8.92384C63.522 4.31907 59.7562 0.585743 55.1114 0.585743C50.4666 0.585743 46.7018 4.31907 46.7018 8.92384C46.7018 8.92384 46.2042 17.7924 55.1114 23.6934" fill="#FFD300"/>
|
||||||
|
<path d="M55.2903 14.5734C55.2308 14.5753 55.1712 14.5781 55.1117 14.5781C52.6841 14.5781 50.6119 13.0734 49.7886 10.9543C49.5437 10.3238 49.4082 9.63908 49.4082 8.92289C49.4082 5.80098 51.9616 3.2686 55.1117 3.2686C58.2617 3.2686 60.8151 5.80098 60.8151 8.92289C60.8151 11.9867 58.3577 14.4791 55.2903 14.5734Z" fill="white"/>
|
||||||
|
<path d="M55.4433 4.64904C54.7526 4.63856 54.058 4.8919 53.5229 5.40523C53.4634 5.46237 53.4624 5.55666 53.5201 5.61666C53.5777 5.67475 53.6728 5.67666 53.7333 5.61952C54.2089 5.16237 54.8246 4.93856 55.4385 4.94714C56.0552 4.95666 56.6672 5.19761 57.1312 5.67095C57.1888 5.73095 57.2839 5.7319 57.3435 5.67475C57.4031 5.61761 57.405 5.52237 57.3464 5.46333C56.8257 4.93095 56.1359 4.66047 55.4433 4.64904Z" fill="#515257"/>
|
||||||
|
<path d="M55.426 6.03058C55.0907 6.02487 54.7525 6.14677 54.4932 6.39725C54.4336 6.45439 54.4317 6.54867 54.4893 6.60772C54.5479 6.66677 54.643 6.66867 54.7026 6.61058C54.9034 6.4182 55.1627 6.32487 55.4212 6.32772C55.6805 6.33248 55.9361 6.43439 56.1311 6.63344C56.1887 6.69153 56.2848 6.69248 56.3444 6.63629C56.4039 6.5782 56.4049 6.48487 56.3463 6.42487C56.0956 6.16868 55.7612 6.03534 55.426 6.03058Z" fill="#515257"/>
|
||||||
|
<path d="M55.4363 5.34035C54.9233 5.33178 54.4055 5.51844 54.0088 5.9013C53.9492 5.95844 53.9473 6.05273 54.0049 6.11273C54.0626 6.17083 54.1577 6.17273 54.2173 6.11463C54.5564 5.78987 54.9944 5.63178 55.4325 5.63749C55.8696 5.64511 56.3019 5.81654 56.6314 6.15273C56.689 6.21083 56.7841 6.21273 56.8437 6.15463C56.9033 6.09749 56.9052 6.00321 56.8466 5.94511C56.4614 5.55083 55.9493 5.34797 55.4363 5.34035Z" fill="#515257"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M56.8306 7.62741C57.0304 7.76646 57.1851 7.95503 57.2936 8.19408C57.4022 8.43313 57.456 8.72455 57.456 9.06836C57.456 9.34932 57.4022 9.60265 57.2936 9.82551C57.1851 10.0484 57.0352 10.2388 56.8421 10.3969C56.6471 10.5579 56.4185 10.6807 56.1562 10.7636C55.8882 10.8493 55.6106 10.8922 55.3243 10.8922H54.8276V12.9531H53.4106V7.23979H55.1331C55.5174 7.23979 55.845 7.27027 56.1159 7.32932C56.3916 7.38836 56.6298 7.48741 56.8306 7.62741ZM55.234 9.68074C55.4943 9.68074 55.6951 9.62646 55.8354 9.51979C55.9737 9.41503 56.0429 9.2617 56.0429 9.06074C56.0429 8.86455 55.9737 8.71408 55.8354 8.60932C55.6951 8.50551 55.4943 8.45217 55.234 8.45217H54.8276V9.68074H55.234Z" fill="#515257"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 8.6 KiB |
9
public/assets/images/play-store.svg
Normal file
After Width: | Height: | Size: 248 KiB |
BIN
public/favicon.ico
Normal file
After Width: | Height: | Size: 25 KiB |
4
public/vercel.svg
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="283" height="64" viewBox="0 0 283 64" fill="none"
|
||||||
|
xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M141.04 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.46 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM248.72 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.45 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM200.24 34c0 6 3.92 10 10 10 4.12 0 7.21-1.87 8.8-4.92l7.68 4.43c-3.18 5.3-9.14 8.49-16.48 8.49-11.05 0-19-7.2-19-18s7.96-18 19-18c7.34 0 13.29 3.19 16.48 8.49l-7.68 4.43c-1.59-3.05-4.68-4.92-8.8-4.92-6.07 0-10 4-10 10zm82.48-29v46h-9V5h9zM36.95 0L73.9 64H0L36.95 0zm92.38 5l-27.71 48L73.91 5H84.3l17.32 30 17.32-30h10.39zm58.91 12v9.69c-1-.29-2.06-.49-3.2-.49-5.81 0-10 4-10 10V51h-9V17h9v9.2c0-5.08 5.91-9.2 13.2-9.2z" fill="#000"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
19
repository/ask.js
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import {http} from "../utils/http";
|
||||||
|
|
||||||
|
const url = {
|
||||||
|
contacts: () => '/product/api/v5/customer-service'
|
||||||
|
}
|
||||||
|
|
||||||
|
const hooks = {}
|
||||||
|
|
||||||
|
const api = {
|
||||||
|
async getContacts() {
|
||||||
|
return await http.fetcher(url.contacts())
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export const askRepository = {
|
||||||
|
url,
|
||||||
|
hooks,
|
||||||
|
api
|
||||||
|
}
|
31
repository/bots.js
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
import {http} from "../utils/http";
|
||||||
|
import useSWR from "swr";
|
||||||
|
|
||||||
|
const url = {
|
||||||
|
findAllLockeyInLocations: (qrCode) => `/bots/find-all/Lockey/${qrCode}`,
|
||||||
|
findLocationByQrCode: (qrCode) => `/locations/findOne/${qrCode}`,
|
||||||
|
createOrder: () => `/bots/create-order`,
|
||||||
|
checkTransaction: (orderId) => `/bots/find/one-history/${orderId}`,
|
||||||
|
}
|
||||||
|
|
||||||
|
const hooks = {
|
||||||
|
useGetAllLockey(qrCode) {
|
||||||
|
return useSWR(url.findAllLockeyInLocations(qrCode), http.fetcher);
|
||||||
|
},
|
||||||
|
useGetLocationByQR(qrCode) {
|
||||||
|
return useSWR(url.findLocationByQrCode(qrCode), http.fetcher);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const api = {
|
||||||
|
async useCheckTransactionByOrderId(orderId) {
|
||||||
|
const res = await http.fetcher(url.checkTransaction(orderId));
|
||||||
|
return res
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export const botsRepository = {
|
||||||
|
url,
|
||||||
|
hooks,
|
||||||
|
api
|
||||||
|
}
|
19
repository/order.js
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import {http} from "../utils/http";
|
||||||
|
|
||||||
|
const url = {
|
||||||
|
payment: () => '/usermanagement/api/v5/validate/check-phone-register'
|
||||||
|
}
|
||||||
|
|
||||||
|
const hooks = {}
|
||||||
|
|
||||||
|
const api = {
|
||||||
|
async usePayment(data) {
|
||||||
|
return await http.post(url.payment, data)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
export const orderRepository = {
|
||||||
|
url,
|
||||||
|
hooks,
|
||||||
|
api
|
||||||
|
}
|
12
store/lockey.js
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
import {http} from "../utils/http";
|
||||||
|
import {botsRepository} from "../repository/bots";
|
||||||
|
|
||||||
|
export class LockeyStore {
|
||||||
|
constructor(context) {
|
||||||
|
this.context = context
|
||||||
|
}
|
||||||
|
|
||||||
|
createOrder(body) {
|
||||||
|
return http.post(botsRepository.url.createOrder(), body);
|
||||||
|
}
|
||||||
|
}
|
15
store/sample.js
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
import {makeAutoObservable} from "mobx";
|
||||||
|
|
||||||
|
export class SampleStore {
|
||||||
|
testObs = 0;
|
||||||
|
ctx;
|
||||||
|
|
||||||
|
constructor(ctx) {
|
||||||
|
makeAutoObservable(this);
|
||||||
|
this.ctx = ctx;
|
||||||
|
}
|
||||||
|
|
||||||
|
setTestObs(testObs) {
|
||||||
|
this.testObs = testObs;
|
||||||
|
}
|
||||||
|
}
|
21
store/store.js
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
import { action, observable, computed, runInAction, makeObservable } from 'mobx'
|
||||||
|
import { enableStaticRendering } from 'mobx-react-lite';
|
||||||
|
import { useMemo } from 'react'
|
||||||
|
import {Sample, SampleStore} from "./sample";
|
||||||
|
import {LockeyStore} from "./lockey";
|
||||||
|
// eslint-disable-next-line react-hooks/rules-of-hooks
|
||||||
|
enableStaticRendering(typeof window === 'undefined')
|
||||||
|
|
||||||
|
let store;
|
||||||
|
|
||||||
|
export class Store {
|
||||||
|
sample = new SampleStore(this);
|
||||||
|
lockey = new LockeyStore(this);
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
}
|
||||||
|
|
||||||
|
hydrate = (data) => {
|
||||||
|
if (!data) return;
|
||||||
|
}
|
||||||
|
}
|
121
styles/Home.module.css
Normal file
|
@ -0,0 +1,121 @@
|
||||||
|
.container {
|
||||||
|
min-height: 100vh;
|
||||||
|
padding: 0 0.5rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main {
|
||||||
|
padding: 5rem 0;
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
width: 100%;
|
||||||
|
height: 100px;
|
||||||
|
border-top: 1px solid #eaeaea;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer a {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title a {
|
||||||
|
color: #0070f3;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title a:hover,
|
||||||
|
.title a:focus,
|
||||||
|
.title a:active {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
margin: 0;
|
||||||
|
line-height: 1.15;
|
||||||
|
font-size: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title,
|
||||||
|
.description {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
line-height: 1.5;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code {
|
||||||
|
background: #fafafa;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 0.75rem;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
|
||||||
|
Bitstream Vera Sans Mono, Courier New, monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
.grid {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
max-width: 800px;
|
||||||
|
margin-top: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card {
|
||||||
|
margin: 1rem;
|
||||||
|
padding: 1.5rem;
|
||||||
|
text-align: left;
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
border: 1px solid #eaeaea;
|
||||||
|
border-radius: 10px;
|
||||||
|
transition: color 0.15s ease, border-color 0.15s ease;
|
||||||
|
width: 45%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card:hover,
|
||||||
|
.card:focus,
|
||||||
|
.card:active {
|
||||||
|
color: #0070f3;
|
||||||
|
border-color: #0070f3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card h2 {
|
||||||
|
margin: 0 0 1rem 0;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 1.25rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
height: 1em;
|
||||||
|
margin-left: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
.grid {
|
||||||
|
width: 100%;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
17
styles/antd_variables.js
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
module.exports = {
|
||||||
|
'@primary-color': '#FF9400',
|
||||||
|
'@body-background': '#e3e8ee',
|
||||||
|
'@font-family': `'Hind Siliguri', sans-serif, 'Montserrat Alternates', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
||||||
|
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
||||||
|
'Noto Color Emoji'`,
|
||||||
|
'@font-size-base': '16px',
|
||||||
|
'@layout-sider-background': 'transparent',
|
||||||
|
'@layout-body-background': 'transparent',
|
||||||
|
'@menu-item-height': '20px',
|
||||||
|
'@menu-inline-toplevel-item-height': '20px',
|
||||||
|
'@layout-header-background': 'transparent',
|
||||||
|
'@menu-bg': 'transparent',
|
||||||
|
'@page-header-padding': '0px',
|
||||||
|
'@page-header-padding-vertical': '0px',
|
||||||
|
'@layout-header-padding': '0 16px',
|
||||||
|
};
|
21
styles/globals.scss
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
//$background-color-base: #e3e8ee;
|
||||||
|
|
||||||
|
html,
|
||||||
|
body {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #e3e8ee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-modal {
|
||||||
|
max-width: 380px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.react-modal-sheet-container {
|
||||||
|
display: flex !important;
|
||||||
|
flex-direction: column !important;
|
||||||
|
align-items: center !important;
|
||||||
|
}
|
15
tailwind.config.js
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
module.exports = {
|
||||||
|
mode: 'jit',
|
||||||
|
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
|
||||||
|
darkMode: false, // or 'media' or 'class'
|
||||||
|
theme: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
variants: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
plugins: [],
|
||||||
|
important: '#tailwind-selector',
|
||||||
|
};
|
||||||
|
|
||||||
|
|
78
utils/http.js
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
import {appConfig} from "../config/app";
|
||||||
|
import {TokenUtil} from "./token";
|
||||||
|
import axios from "axios";
|
||||||
|
|
||||||
|
const instance = axios.create({
|
||||||
|
baseURL: appConfig.apiUrl,
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
instance.interceptors.request.use(
|
||||||
|
(config) => {
|
||||||
|
if (TokenUtil.accessToken) {
|
||||||
|
config.headers["Authorization"] = 'Bearer ' + TokenUtil.accessToken; // for Node.js Express back-end
|
||||||
|
}
|
||||||
|
config.headers["ngrok-skip-browser-warning"] = true
|
||||||
|
return config;
|
||||||
|
},
|
||||||
|
(error) => {
|
||||||
|
return Promise.reject(error);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
instance.interceptors.response.use(
|
||||||
|
(res) => {
|
||||||
|
return res;
|
||||||
|
},
|
||||||
|
async (err) => {
|
||||||
|
const originalConfig = err.config;
|
||||||
|
|
||||||
|
if (originalConfig.url !== "/auth/login" && err.response) {
|
||||||
|
// Access Token was expired
|
||||||
|
if (err.response.status === 401 && !originalConfig._retry) {
|
||||||
|
originalConfig._retry = true;
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (TokenUtil.refreshToken) {
|
||||||
|
await authenticationRepository.api.refreshToken()
|
||||||
|
}
|
||||||
|
return instance(originalConfig);
|
||||||
|
} catch (_error) {
|
||||||
|
return Promise.reject(_error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return Promise.reject(err);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
export const http = {
|
||||||
|
fetcher: async (url) => {
|
||||||
|
const resp = await instance.get(appConfig.apiUrl + url);
|
||||||
|
|
||||||
|
return resp.data;
|
||||||
|
},
|
||||||
|
get: async (url, opts = {}) => {
|
||||||
|
const resp = await instance.post(appConfig.apiUrl + url);
|
||||||
|
|
||||||
|
return resp.data;
|
||||||
|
},
|
||||||
|
post: async (url, data, opts) => {
|
||||||
|
const resp = await instance.post(appConfig.apiUrl + url, data);
|
||||||
|
|
||||||
|
return resp.data;
|
||||||
|
},
|
||||||
|
put: async (url, data, opts) => {
|
||||||
|
const resp = await instance.put(appConfig.apiUrl + url, data);
|
||||||
|
|
||||||
|
return resp.data;
|
||||||
|
},
|
||||||
|
del: async (url, opts) => {
|
||||||
|
const resp = await instance.delete(appConfig.apiUrl + url);
|
||||||
|
|
||||||
|
return resp.data;
|
||||||
|
},
|
||||||
|
};
|
79
utils/token.js
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
const atob = require('atob');
|
||||||
|
|
||||||
|
export class TokenUtil {
|
||||||
|
static accessToken = null;
|
||||||
|
static refreshToken = null;
|
||||||
|
static username = null;
|
||||||
|
static password = null;
|
||||||
|
static isBought = null;
|
||||||
|
|
||||||
|
static loadToken() {
|
||||||
|
if (typeof window === "undefined") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const accessToken = localStorage.getItem('access_token');
|
||||||
|
const username = localStorage.getItem('username');
|
||||||
|
const password = localStorage.getItem('password');
|
||||||
|
const isBought = localStorage.getItem('isBought');
|
||||||
|
|
||||||
|
if (accessToken) {
|
||||||
|
TokenUtil.setAccessToken(accessToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (username) {
|
||||||
|
TokenUtil.setUsername(username);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (password) {
|
||||||
|
TokenUtil.setPassword(password);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isBought) {
|
||||||
|
TokenUtil.setIsBought(isBought);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static persistToken() {
|
||||||
|
if (TokenUtil.accessToken != null) {
|
||||||
|
localStorage.setItem('access_token', TokenUtil.accessToken);
|
||||||
|
} else {
|
||||||
|
localStorage.removeItem('access_token');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static persistIsBought() {
|
||||||
|
if (TokenUtil.isBought != null) {
|
||||||
|
localStorage.setItem('is_bought', TokenUtil.isBought);
|
||||||
|
} else {
|
||||||
|
localStorage.removeItem('is_bought');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static setAccessToken(accessToken) {
|
||||||
|
TokenUtil.accessToken = accessToken;
|
||||||
|
}
|
||||||
|
|
||||||
|
static setUsername(username) {
|
||||||
|
TokenUtil.username = username;
|
||||||
|
}
|
||||||
|
|
||||||
|
static setPassword(password) {
|
||||||
|
TokenUtil.password = password;
|
||||||
|
}
|
||||||
|
|
||||||
|
static setIsBought(isBought) {
|
||||||
|
TokenUtil.isBought = isBought;
|
||||||
|
}
|
||||||
|
|
||||||
|
static clearAccessToken() {
|
||||||
|
TokenUtil.accessToken = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
static decodedToken() {
|
||||||
|
if (TokenUtil.accessToken) {
|
||||||
|
return JSON.parse(atob(TokenUtil.accessToken.split('.')[1]));
|
||||||
|
}
|
||||||
|
return {}
|
||||||
|
}
|
||||||
|
}
|