first source commit
6
.editorconfig
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue}]
|
||||||
|
charset = utf-8
|
||||||
|
indent_size = 2
|
||||||
|
indent_style = space
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
30
.gitignore
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
.DS_Store
|
||||||
|
dist
|
||||||
|
dist-ssr
|
||||||
|
coverage
|
||||||
|
*.local
|
||||||
|
|
||||||
|
/cypress/videos/
|
||||||
|
/cypress/screenshots/
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/extensions.json
|
||||||
|
.idea
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
||||||
|
|
||||||
|
*.tsbuildinfo
|
||||||
7
.prettierrc.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
|
||||||
|
{
|
||||||
|
"$schema": "https://json.schemastore.org/prettierrc",
|
||||||
|
"semi": false,
|
||||||
|
"singleQuote": true,
|
||||||
|
"printWidth": 100
|
||||||
|
}
|
||||||
8
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"Vue.volar",
|
||||||
|
"dbaeumer.vscode-eslint",
|
||||||
|
"EditorConfig.EditorConfig",
|
||||||
|
"esbenp.prettier-vscode"
|
||||||
|
]
|
||||||
|
}
|
||||||
19
eslint.config.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import js from '@eslint/js'
|
||||||
|
import pluginVue from 'eslint-plugin-vue'
|
||||||
|
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
|
||||||
|
|
||||||
|
export default [
|
||||||
|
{
|
||||||
|
name: 'app/files-to-lint',
|
||||||
|
files: ['**/*.{js,mjs,jsx,vue}'],
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name: 'app/files-to-ignore',
|
||||||
|
ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],
|
||||||
|
},
|
||||||
|
|
||||||
|
js.configs.recommended,
|
||||||
|
...pluginVue.configs['flat/essential'],
|
||||||
|
skipFormatting,
|
||||||
|
]
|
||||||
78
index.html
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html
|
||||||
|
lang=""
|
||||||
|
class="light-style layout-navbar-fixed layout-menu-fixed layout-compact"
|
||||||
|
dir="ltr"
|
||||||
|
data-theme="theme-default"
|
||||||
|
data-assets-path="/"
|
||||||
|
data-template="vertical-menu-template"
|
||||||
|
data-style="light"
|
||||||
|
>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<link rel="icon" href="/favicon.ico" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<meta content="" name="description" />
|
||||||
|
<meta content="" name="keywords" />
|
||||||
|
<title>LOCALNET</title>
|
||||||
|
|
||||||
|
<!-- Fonts -->
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com/" />
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
||||||
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- Icons -->
|
||||||
|
<link rel="stylesheet" href="/vendor/fonts/boxicons.css" />
|
||||||
|
<link rel="stylesheet" href="/vendor/fonts/fontawesome.css" />
|
||||||
|
<link rel="stylesheet" href="/vendor/fonts/flag-icons.css" />
|
||||||
|
|
||||||
|
<!-- Core CSS -->
|
||||||
|
<link rel="stylesheet" href="/vendor/css/rtl/core.css" class="template-customizer-core-css" />
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="/vendor/css/rtl/theme-default.css"
|
||||||
|
class="template-customizer-theme-css"
|
||||||
|
/>
|
||||||
|
<link rel="stylesheet" href="/css/demo.css" />
|
||||||
|
|
||||||
|
<!-- Vendors CSS -->
|
||||||
|
<link rel="stylesheet" href="/vendor/libs/perfect-scrollbar/perfect-scrollbar.css" />
|
||||||
|
<link rel="stylesheet" href="/vendor/libs/typeahead-js/typeahead.css" />
|
||||||
|
<link rel="stylesheet" href="/vendor/libs/apex-charts/apex-charts.css" />
|
||||||
|
|
||||||
|
<!-- Helpers -->
|
||||||
|
<script src="/vendor/js/helpers.js"></script>
|
||||||
|
<!--! Template customizer & Theme config files MUST be included after core stylesheets and helpers.js in the <head> section -->
|
||||||
|
<!--? Template customizer: To hide customizer set displayCustomizer value false in config.js. -->
|
||||||
|
<script src="/vendor/js/template-customizer.js"></script>
|
||||||
|
<!--? Config: Mandatory theme config file contain global vars & default theme options, Set your preferred theme option in this file. -->
|
||||||
|
<script src="/js/config.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
|
||||||
|
<!-- Core JS -->
|
||||||
|
<!-- build:js assets/vendor/js/core.js -->
|
||||||
|
<script src="/vendor/libs/jquery/jquery.js"></script>
|
||||||
|
<script src="/vendor/libs/popper/popper.js"></script>
|
||||||
|
<script src="/vendor/js/bootstrap.js"></script>
|
||||||
|
<script src="/vendor/libs/perfect-scrollbar/perfect-scrollbar.js"></script>
|
||||||
|
<script src="/vendor/libs/hammer/hammer.js"></script>
|
||||||
|
<script src="/vendor/libs/i18n/i18n.js"></script>
|
||||||
|
<script src="/vendor/libs/typeahead-js/typeahead.js"></script>
|
||||||
|
<!-- <script src="/vendor/js/menu.js"></script> -->
|
||||||
|
<!-- endbuild -->
|
||||||
|
|
||||||
|
<!-- Vendors JS -->
|
||||||
|
<script src="/vendor/libs/apex-charts/apexcharts.js"></script>
|
||||||
|
<!-- Main JS -->
|
||||||
|
<!-- <script src="/js/main.js"></script> -->
|
||||||
|
<!-- Page JS -->
|
||||||
|
<script src="/js/dashboards-analytics.js"></script>
|
||||||
|
|
||||||
|
<script type="module" src="/src/main.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
16
jsconfig.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"baseUrl": ".", // root 디렉토리 명시
|
||||||
|
"types": ["vite/client"],
|
||||||
|
"paths": {
|
||||||
|
"@/*" : ["src/*"],
|
||||||
|
"@a/*": ["src/assets/*"],
|
||||||
|
"@c/*": ["src/components/*"],
|
||||||
|
"@v/*": ["src/view/*"],
|
||||||
|
"@l/*": ["src/layout/*"],
|
||||||
|
"@s/*": ["src/stores/*"],
|
||||||
|
"@p/*": ["src/common/plugin/*"],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"exclude": ["node_modules", "dist"]
|
||||||
|
}
|
||||||
4294
package-lock.json
generated
Normal file
34
package.json
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
"name": "front",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"private": true,
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vite",
|
||||||
|
"build": "vite build",
|
||||||
|
"preview": "vite preview",
|
||||||
|
"lint": "eslint . --fix",
|
||||||
|
"format": "prettier --write src/"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@popperjs/core": "^2.11.8",
|
||||||
|
"axios": "^1.7.9",
|
||||||
|
"bootstrap": "^5.3.3",
|
||||||
|
"dayjs": "^1.11.13",
|
||||||
|
"pinia": "^2.2.6",
|
||||||
|
"pinia-plugin-persist": "^1.0.0",
|
||||||
|
"vue": "^3.5.13",
|
||||||
|
"vue-router": "^4.4.5"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@eslint/js": "^9.14.0",
|
||||||
|
"@vitejs/plugin-vue": "^5.2.1",
|
||||||
|
"@vue/eslint-config-prettier": "^10.1.0",
|
||||||
|
"eslint": "^9.14.0",
|
||||||
|
"eslint-plugin-vue": "^9.30.0",
|
||||||
|
"prettier": "^3.3.3",
|
||||||
|
"vite": "^5.4.10",
|
||||||
|
"vite-plugin-inspect": "^0.8.9",
|
||||||
|
"vite-plugin-vue-devtools": "^7.6.5"
|
||||||
|
}
|
||||||
|
}
|
||||||
123
public/css/demo.css
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
/*
|
||||||
|
* demo.css
|
||||||
|
* File include item demo only specific css only
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
.menu .app-brand.demo {
|
||||||
|
height: 64px;
|
||||||
|
margin-top: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-brand-logo.demo svg {
|
||||||
|
width: 22px;
|
||||||
|
height: 38px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-brand-text.demo {
|
||||||
|
font-size: 1.75rem;
|
||||||
|
letter-spacing: -0.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ! For .layout-navbar-fixed added fix padding top to .layout-page */
|
||||||
|
/* Detached navbar */
|
||||||
|
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
|
||||||
|
padding-top: 74px !important;
|
||||||
|
}
|
||||||
|
/* Default navbar */
|
||||||
|
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
|
||||||
|
padding-top: 64px !important;
|
||||||
|
}
|
||||||
|
.docs-page .layout-navbar-fixed.layout-wrapper:not(.layout-without-menu) .layout-page,
|
||||||
|
.docs-page .layout-menu-fixed.layout-wrapper:not(.layout-without-menu) .layout-page {
|
||||||
|
padding-top: 62px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Navbar page z-index issue solution */
|
||||||
|
.content-wrapper .navbar {
|
||||||
|
z-index: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Content
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
.demo-blocks > * {
|
||||||
|
display: block !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-inline-spacing > * {
|
||||||
|
margin: 1rem 0.375rem 0 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
|
||||||
|
.demo-vertical-spacing > * {
|
||||||
|
margin-top: 1rem !important;
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
.demo-vertical-spacing.demo-only-element > :first-child {
|
||||||
|
margin-top: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-vertical-spacing-lg > * {
|
||||||
|
margin-top: 1.875rem !important;
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
.demo-vertical-spacing-lg.demo-only-element > :first-child {
|
||||||
|
margin-top: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.demo-vertical-spacing-xl > * {
|
||||||
|
margin-top: 5rem !important;
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
.demo-vertical-spacing-xl.demo-only-element > :first-child {
|
||||||
|
margin-top: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rtl-only {
|
||||||
|
display: none !important;
|
||||||
|
text-align: left !important;
|
||||||
|
direction: ltr !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
[dir='rtl'] .rtl-only {
|
||||||
|
display: block !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dropdown buttons going out of small screens */
|
||||||
|
@media (max-width: 576px) {
|
||||||
|
#dropdown-variation-demo .btn-group .text-truncate {
|
||||||
|
width: 231px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
#dropdown-variation-demo .btn-group .text-truncate::after {
|
||||||
|
position: absolute;
|
||||||
|
top: 45%;
|
||||||
|
right: 0.65rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Layout demo
|
||||||
|
******************************************************************************/
|
||||||
|
|
||||||
|
.layout-demo-wrapper {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
.layout-demo-placeholder img {
|
||||||
|
width: 900px;
|
||||||
|
}
|
||||||
|
.layout-demo-info {
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
BIN
public/favicon.ico
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
public/img/avatars/1.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/img/avatars/10.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/img/avatars/11.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/img/avatars/12.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/img/avatars/13.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/img/avatars/14.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/img/avatars/15.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
public/img/avatars/16.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
public/img/avatars/17.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/img/avatars/18.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/img/avatars/19.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/img/avatars/2.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/img/avatars/20.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/img/avatars/3.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
public/img/avatars/4.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/img/avatars/5.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
public/img/avatars/6.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/img/avatars/7.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/img/avatars/8.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
public/img/avatars/9.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/img/backgrounds/10.jpg
Normal file
|
After Width: | Height: | Size: 131 KiB |
BIN
public/img/backgrounds/16.jpg
Normal file
|
After Width: | Height: | Size: 193 KiB |
BIN
public/img/backgrounds/18.jpg
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
public/img/backgrounds/2.jpg
Normal file
|
After Width: | Height: | Size: 65 KiB |
BIN
public/img/backgrounds/3.jpg
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
public/img/backgrounds/5.jpg
Normal file
|
After Width: | Height: | Size: 91 KiB |
BIN
public/img/backgrounds/6.jpg
Normal file
|
After Width: | Height: | Size: 213 KiB |
BIN
public/img/backgrounds/7.jpg
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
public/img/backgrounds/8.jpg
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
public/img/backgrounds/event.jpg
Normal file
|
After Width: | Height: | Size: 29 KiB |
21
public/img/customizer/border-dark.svg
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.835785" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<mask id="path-2-outside-1_1746_156808" maskUnits="userSpaceOnUse" x="0" y="0.835785" width="29" height="68" fill="black">
|
||||||
|
<rect fill="white" y="0.835785" width="29" height="68"/>
|
||||||
|
<path d="M0 4.83578C0 2.62665 1.79086 0.835785 4 0.835785H28V68.8358H4C1.79086 68.8358 0 67.0449 0 64.8358V4.83578Z"/>
|
||||||
|
</mask>
|
||||||
|
<path d="M0 0.835785H28H0ZM28 68.8358H0H28ZM0 68.8358V0.835785V68.8358ZM29 0.835785V68.8358H27V0.835785H29Z" fill="#E6E6F1" fill-opacity="0.12" mask="url(#path-2-outside-1_1746_156808)"/>
|
||||||
|
<rect x="5" y="25.4435" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="9" y="6.89536" width="10" height="10" rx="2" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5" y="36.3175" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5" y="47.1915" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5" y="58.0653" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="35.2715" y="6.14902" width="65" height="8.06667" rx="1.5" stroke="#E6E6F1" stroke-opacity="0.12"/>
|
||||||
|
<rect x="37.752" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="81.7539" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="87.752" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="92.752" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="60.1094" y="21.5435" width="40" height="17.1333" rx="1.5" stroke="#E6E6F1" stroke-opacity="0.12"/>
|
||||||
|
<rect x="35.5" y="21.3358" width="18.4118" height="17.1333" rx="1.5" stroke="#E6E6F1" stroke-opacity="0.12"/>
|
||||||
|
<rect x="35.2715" y="45.0768" width="65" height="17.1333" rx="1.5" stroke="#E6E6F1" stroke-opacity="0.12"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
21
public/img/customizer/border.svg
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<svg width="107" height="68" viewBox="0 0 107 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.333008" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<mask id="path-2-outside-1_1746_156469" maskUnits="userSpaceOnUse" x="0.333008" y="0" width="29" height="68" fill="black">
|
||||||
|
<rect fill="white" x="0.333008" width="29" height="68"/>
|
||||||
|
<path d="M0.333008 4C0.333008 1.79086 2.12387 0 4.33301 0H28.333V68H4.33301C2.12387 68 0.333008 66.2091 0.333008 64V4Z"/>
|
||||||
|
</mask>
|
||||||
|
<path d="M0.333008 0H28.333H0.333008ZM28.333 68H0.333008H28.333ZM0.333008 68V0V68ZM29.333 0V68H27.333V0H29.333Z" fill="#22303E" fill-opacity="0.12" mask="url(#path-2-outside-1_1746_156469)"/>
|
||||||
|
<rect x="5.33301" y="24.6077" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="9.33301" y="6.05957" width="10" height="10" rx="2" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.33301" y="35.4817" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.33301" y="46.3557" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.33301" y="57.2295" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="35.6045" y="5.31323" width="65" height="8.06667" rx="1.5" stroke="#22303E" stroke-opacity="0.12"/>
|
||||||
|
<rect x="38.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="82.0859" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="88.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="93.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="60.4424" y="20.7078" width="40" height="17.1333" rx="1.5" stroke="#22303E" stroke-opacity="0.12"/>
|
||||||
|
<rect x="35.833" y="20.5" width="18.4118" height="17.1333" rx="1.5" stroke="#22303E" stroke-opacity="0.12"/>
|
||||||
|
<rect x="35.6045" y="44.241" width="65" height="17.1333" rx="1.5" stroke="#22303E" stroke-opacity="0.12"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
17
public/img/customizer/collapsed-dark.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="107" height="69" viewBox="0 0 107 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.412109" y="0.881836" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<path d="M0.412109 4.88184C0.412109 2.6727 2.20297 0.881836 4.41211 0.881836H14.4121V68.8818H4.41211C2.20297 68.8818 0.412109 67.091 0.412109 64.8818V4.88184Z" fill="#E6E6F1" fill-opacity="0.06"/>
|
||||||
|
<rect x="3.41211" y="25.4895" width="8" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="3.91211" y="6.94141" width="7" height="7" rx="2" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="3.41211" y="36.3635" width="8" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="3.41211" y="47.2375" width="8" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="3.41211" y="58.1113" width="8" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="22.2949" y="5.69507" width="76.8877" height="9.06667" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="26.5215" y="7.96167" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="80.1641" y="7.96167" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="86.1641" y="7.96167" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="92.1641" y="7.96167" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="51.873" y="21.0896" width="47.7216" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="22.2949" y="21.0896" width="22.5942" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="22.2949" y="44.6228" width="77.2998" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
17
public/img/customizer/collapsed.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="107" height="68" viewBox="0 0 107 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.333008" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<path d="M0.333008 4C0.333008 1.79086 2.12387 0 4.33301 0H14.333V68H4.33301C2.12387 68 0.333008 66.2091 0.333008 64V4Z" fill="#22303E" fill-opacity="0.06"/>
|
||||||
|
<rect x="3.33301" y="24.6077" width="8" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="3.83301" y="6.05957" width="7" height="7" rx="2" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="3.33301" y="35.4817" width="8" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="3.33301" y="46.3557" width="8" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="3.33301" y="57.2295" width="8" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="22.2168" y="4.81323" width="76.8877" height="9.06667" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="26.4424" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="80.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="86.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="92.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="51.7949" y="20.2078" width="47.7216" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="22.2168" y="20.2078" width="22.5942" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="22.2168" y="43.741" width="77.2998" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
11
public/img/customizer/compact-dark.svg
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.37854" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<rect x="19.793" y="5.19177" width="66" height="9.06667" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="22.7734" y="7.45837" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="66.7734" y="7.45837" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="72.7734" y="7.45837" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="78.7734" y="7.45837" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="45.207" y="20.5863" width="41" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="19.793" y="20.5863" width="19.4118" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="19.793" y="44.1195" width="66.4121" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1005 B |
11
public/img/customizer/compact.svg
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<svg width="107" height="69" viewBox="0 0 107 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.333008" y="0.090271" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<rect x="20.127" y="4.9035" width="66" height="9.06667" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="23.1074" y="7.1701" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="67.1074" y="7.1701" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="73.1074" y="7.1701" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="79.1074" y="7.1701" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="45.5391" y="20.298" width="41" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="20.127" y="20.298" width="19.4118" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="20.127" y="43.8312" width="66.4121" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1013 B |
3
public/img/customizer/dark-dark.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M63.5931 28.3062C62.746 28.5312 61.8733 28.6451 60.9969 28.645C58.3281 28.645 55.8219 27.6075 53.9394 25.725C52.7032 24.4817 51.8145 22.9361 51.3618 21.2422C50.9091 19.5484 50.9083 17.7655 51.3594 16.0712C51.4157 15.8594 51.4154 15.6365 51.3583 15.4248C51.3013 15.2132 51.1896 15.0202 51.0345 14.8654C50.8794 14.7105 50.6863 14.5991 50.4745 14.5425C50.2628 14.4858 50.0399 14.4858 49.8281 14.5425C47.7071 15.1077 45.772 16.2208 44.2169 17.77C39.3444 22.6425 39.3444 30.5737 44.2169 35.4487C45.375 36.6134 46.7527 37.5367 48.27 38.1654C49.7874 38.794 51.4144 39.1155 53.0569 39.1112C54.6989 39.1158 56.3255 38.7946 57.8425 38.1661C59.3595 37.5377 60.7367 36.6145 61.8944 35.45C63.4448 33.8946 64.5583 31.9585 65.1231 29.8362C65.1792 29.6245 65.1788 29.4017 65.1218 29.1902C65.0648 28.9787 64.9533 28.7859 64.7984 28.631C64.6435 28.4761 64.4506 28.3646 64.2391 28.3076C64.0276 28.2506 63.8049 28.2501 63.5931 28.3062ZM60.1281 33.6825C59.2018 34.6139 58.1 35.3523 56.8865 35.855C55.6729 36.3577 54.3717 36.6147 53.0581 36.6112C51.7441 36.6145 50.4425 36.3572 49.2285 35.8543C48.0146 35.3514 46.9124 34.6128 45.9856 33.6812C42.0881 29.7825 42.0881 23.4375 45.9856 19.5387C46.7388 18.7864 47.6082 18.1605 48.5606 17.685C48.4212 19.4838 48.6718 21.2915 49.2953 22.9846C49.9188 24.6777 50.9004 26.2162 52.1731 27.495C53.4491 28.7717 54.9872 29.7561 56.681 30.38C58.3747 31.004 60.1838 31.2526 61.9831 31.1087C61.505 32.0595 60.8789 32.9282 60.1281 33.6825Z" fill="#E6E6F1" fill-opacity="0.9"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
3
public/img/customizer/dark.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M63.5941 28.3062C62.747 28.5312 61.8743 28.6451 60.9979 28.645C58.3291 28.645 55.8229 27.6075 53.9404 25.725C52.7042 24.4817 51.8154 22.9361 51.3627 21.2422C50.9101 19.5484 50.9092 17.7655 51.3604 16.0712C51.4167 15.8594 51.4163 15.6365 51.3593 15.4248C51.3023 15.2132 51.1906 15.0202 51.0355 14.8654C50.8804 14.7105 50.6873 14.5991 50.4755 14.5425C50.2638 14.4858 50.0408 14.4858 49.8291 14.5425C47.7081 15.1077 45.7729 16.2208 44.2179 17.77C39.3454 22.6425 39.3454 30.5737 44.2179 35.4487C45.376 36.6134 46.7536 37.5367 48.271 38.1654C49.7884 38.794 51.4154 39.1155 53.0579 39.1112C54.6999 39.1158 56.3265 38.7946 57.8435 38.1661C59.3605 37.5377 60.7377 36.6145 61.8953 35.45C63.4457 33.8946 64.5593 31.9585 65.1241 29.8362C65.1802 29.6245 65.1797 29.4017 65.1228 29.1902C65.0658 28.9787 64.9543 28.7859 64.7994 28.631C64.6445 28.4761 64.4516 28.3646 64.2401 28.3076C64.0286 28.2506 63.8058 28.2501 63.5941 28.3062ZM60.1291 33.6825C59.2028 34.6139 58.101 35.3523 56.8874 35.855C55.6739 36.3577 54.3727 36.6147 53.0591 36.6112C51.7451 36.6145 50.4435 36.3572 49.2295 35.8543C48.0155 35.3514 46.9133 34.6128 45.9866 33.6812C42.0891 29.7825 42.0891 23.4375 45.9866 19.5387C46.7397 18.7864 47.6092 18.1605 48.5616 17.685C48.4222 19.4838 48.6728 21.2915 49.2963 22.9846C49.9197 24.6777 50.9014 26.2162 52.1741 27.495C53.4501 28.7717 54.9882 29.7561 56.6819 30.38C58.3757 31.004 60.1848 31.2526 61.9841 31.1087C61.506 32.0595 60.8799 32.9282 60.1291 33.6825Z" fill="#22303E" fill-opacity="0.9"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
17
public/img/customizer/default-dark.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.835785" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<path d="M0 4.83578C0 2.62665 1.79086 0.835785 4 0.835785H28V68.8358H4C1.79086 68.8358 0 67.0449 0 64.8358V4.83578Z" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="5" y="25.4435" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="9" y="6.89536" width="10" height="10" rx="2" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5" y="36.3175" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5" y="47.1915" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5" y="58.0653" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="34.7715" y="5.64902" width="66" height="9.06667" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="37.752" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="81.7539" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="87.752" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="93.752" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="59.6094" y="21.0435" width="41" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="34.7715" y="21.0435" width="19.4118" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="34.7715" y="44.5768" width="66" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
17
public/img/customizer/default.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="107" height="68" viewBox="0 0 107 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.333008" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<path d="M0.333008 4C0.333008 1.79086 2.12387 0 4.33301 0H28.333V68H4.33301C2.12387 68 0.333008 66.2091 0.333008 64V4Z" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="5.33301" y="24.6077" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="9.33301" y="6.05957" width="10" height="10" rx="2" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.33301" y="35.4817" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.33301" y="46.3557" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.33301" y="57.2295" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="35.1045" y="4.81323" width="66" height="9.06667" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="38.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="82.0859" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="88.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="94.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="59.9424" y="20.2078" width="41" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="35.1045" y="20.2078" width="19.4118" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="35.1045" y="43.741" width="66" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
17
public/img/customizer/expanded-dark.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="107" height="69" viewBox="0 0 107 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.511719" y="0.881836" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<path d="M0.511719 4.88184C0.511719 2.6727 2.30258 0.881836 4.51172 0.881836H28.5117V68.8818H4.51172C2.30258 68.8818 0.511719 67.091 0.511719 64.8818V4.88184Z" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="5.51172" y="25.4895" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="9.51172" y="6.94141" width="10" height="10" rx="2" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.51172" y="36.3635" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.51172" y="47.2375" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.51172" y="58.1113" width="18" height="2.87399" rx="1.43699" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="33.2832" y="5.69507" width="66" height="9.06667" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="36.2637" y="7.96167" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="80.2637" y="7.96167" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="86.2637" y="7.96167" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="92.2637" y="7.96167" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="58.6953" y="21.0896" width="41" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="33.2832" y="21.0896" width="19.4118" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="33.2832" y="44.6228" width="66.4121" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
17
public/img/customizer/expanded.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="107" height="68" viewBox="0 0 107 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.432617" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<path d="M0.432617 4C0.432617 1.79086 2.22348 0 4.43262 0H28.4326V68H4.43262C2.22348 68 0.432617 66.2091 0.432617 64V4Z" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="5.43262" y="24.6077" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="9.43262" y="6.05957" width="10" height="10" rx="2" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.43262" y="35.4817" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.43262" y="46.3557" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.43262" y="57.2295" width="18" height="2.87399" rx="1.43699" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="33.2041" y="4.81323" width="66" height="9.06667" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="36.1846" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="80.1846" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="86.1846" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="92.1846" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="58.6162" y="20.2078" width="41" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="33.2041" y="20.2078" width="19.4118" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="33.2041" y="43.741" width="66.4121" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
12
public/img/customizer/hidden-dark.svg
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
|
||||||
|
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="58.1836" y="6.28436" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="32.7715" y="6.28436" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="33" y="30.2844" width="66" height="32" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
12
public/img/customizer/hidden.svg
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
|
||||||
|
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="58.1836" y="6.28436" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="32.7715" y="6.28436" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="33" y="30.2844" width="66" height="32" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
12
public/img/customizer/horizontal-fixed-dark.svg
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="106" height="68" rx="6" fill="#4B465C" fill-opacity="0.02"/>
|
||||||
|
<rect x="45" y="14" width="48" height="15" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="15" y="14" width="23" height="15" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="15" y="34" width="78" height="34" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="15" width="78" height="9" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="20.4111" y="1.70111" width="6.11872" height="5.54323" rx="2" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="34.5303" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="49.2949" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="64.0596" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="78.8242" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
12
public/img/customizer/horizontal-fixed.svg
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="106" height="68" rx="6" fill="#4B465C" fill-opacity="0.02"/>
|
||||||
|
<rect x="45" y="14" width="48" height="15" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="15" y="14" width="23" height="15" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="15" y="34" width="78" height="34" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="15" width="78" height="9" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="20.4111" y="1.70111" width="6.11872" height="5.54323" rx="2" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="34.5303" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="49.2949" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="64.0596" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="78.8242" y="3.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
12
public/img/customizer/horizontal-static-dark.svg
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="106" height="68" rx="6" fill="#4B465C" fill-opacity="0.02"/>
|
||||||
|
<rect x="44.8525" y="20.2079" width="47.7216" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="15.2744" y="20" width="22.5942" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="15.2744" y="43.7411" width="77.2998" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="15" y="5" width="78" height="9" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="20.4111" y="6.70111" width="6.11872" height="5.54323" rx="2" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="34.5303" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="49.2949" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="64.0596" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="78.8242" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
12
public/img/customizer/horizontal-static.svg
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<svg width="106" height="68" viewBox="0 0 106 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="106" height="68" rx="6" fill="#4B465C" fill-opacity="0.02"/>
|
||||||
|
<rect x="44.8525" y="20.2079" width="47.7216" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="15.2744" y="20" width="22.5942" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="15.2744" y="43.7411" width="77.2998" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="15" y="5" width="78" height="9" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="20.4111" y="6.70111" width="6.11872" height="5.54323" rx="2" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="34.5303" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="49.2949" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="64.0596" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="78.8242" y="8.20477" width="6.76484" height="2.53587" rx="1.26794" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
3
public/img/customizer/light-dark.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M47.0738 27C47.0738 30.4512 49.8813 33.2587 53.3326 33.2587C56.7838 33.2587 59.5913 30.4512 59.5913 27C59.5913 23.5488 56.7838 20.7413 53.3326 20.7413C49.8813 20.7413 47.0738 23.5488 47.0738 27ZM53.3326 23.2413C55.4051 23.2413 57.0913 24.9275 57.0913 27C57.0913 29.0725 55.4051 30.7587 53.3326 30.7587C51.2601 30.7587 49.5738 29.0725 49.5738 27C49.5738 24.9275 51.2601 23.2413 53.3326 23.2413ZM52.0801 35.75H54.5801V39.5H52.0801V35.75ZM52.0801 14.5H54.5801V18.25H52.0801V14.5ZM40.8301 25.75H44.5801V28.25H40.8301V25.75ZM62.0801 25.75H65.8301V28.25H62.0801V25.75ZM43.6063 34.9538L46.2563 32.3012L48.0251 34.0688L45.3751 36.7213L43.6063 34.9538ZM58.6326 19.93L61.2851 17.2775L63.0526 19.045L60.4001 21.6975L58.6326 19.93ZM46.2601 21.6987L43.6076 19.0463L45.3763 17.2788L48.0263 19.9312L46.2601 21.6987ZM63.0526 34.955L61.2851 36.7225L58.6326 34.07L60.4001 32.3025L63.0526 34.955Z" fill="#E6E6F1" fill-opacity="0.9"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
3
public/img/customizer/light.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M47.0748 27C47.0748 30.4512 49.8823 33.2587 53.3336 33.2587C56.7848 33.2587 59.5923 30.4512 59.5923 27C59.5923 23.5488 56.7848 20.7413 53.3336 20.7413C49.8823 20.7413 47.0748 23.5488 47.0748 27ZM53.3336 23.2413C55.4061 23.2413 57.0923 24.9275 57.0923 27C57.0923 29.0725 55.4061 30.7587 53.3336 30.7587C51.2611 30.7587 49.5748 29.0725 49.5748 27C49.5748 24.9275 51.2611 23.2413 53.3336 23.2413ZM52.0811 35.75H54.5811V39.5H52.0811V35.75ZM52.0811 14.5H54.5811V18.25H52.0811V14.5ZM40.8311 25.75H44.5811V28.25H40.8311V25.75ZM62.0811 25.75H65.8311V28.25H62.0811V25.75ZM43.6073 34.9538L46.2573 32.3012L48.0261 34.0688L45.3761 36.7213L43.6073 34.9538ZM58.6336 19.93L61.2861 17.2775L63.0536 19.045L60.4011 21.6975L58.6336 19.93ZM46.2611 21.6987L43.6086 19.0463L45.3773 17.2788L48.0273 19.9312L46.2611 21.6987ZM63.0536 34.955L61.2861 36.7225L58.6336 34.07L60.4011 32.3025L63.0536 34.955Z" fill="#22303E" fill-opacity="0.9"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
15
public/img/customizer/ltr-dark.svg
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.240234" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<rect x="5.30078" y="4.48657" width="24.561" height="59.3336" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="10.5215" y="17.6212" width="14.1209" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="10.5215" y="26.5767" width="10.0694" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="10.5215" y="35.5321" width="12.6207" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="10.5215" y="44.4877" width="6.20526" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="10.5215" y="53.4434" width="8.24653" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="36.1953" y="4.48657" width="63.5883" height="59.3336" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="44.5977" y="14.8534" width="14.1209" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="44.5977" y="23.8088" width="33.432" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="44.5977" y="32.7643" width="42" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="44.5977" y="41.7196" width="33.432" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="44.5977" y="50.6754" width="5.88587" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
15
public/img/customizer/ltr.svg
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<svg width="107" height="69" viewBox="0 0 107 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.333008" y="0.090271" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<rect x="5.63477" y="4.33661" width="24.561" height="59.3336" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="10.8555" y="17.4713" width="14.1209" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="10.8555" y="26.4267" width="10.0694" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="10.8555" y="35.3821" width="12.6207" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="10.8555" y="44.3377" width="6.20526" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="10.8555" y="53.2934" width="8.24653" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="36.5283" y="4.33661" width="63.5883" height="59.3336" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="44.9307" y="14.7034" width="14.1209" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="44.9307" y="23.6589" width="33.432" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="44.9307" y="32.6143" width="42" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="44.9307" y="41.5696" width="33.432" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="44.9307" y="50.5255" width="5.88587" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
15
public/img/customizer/rtl-dark.svg
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.240234" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<rect x="74.8906" y="4.48657" width="24.561" height="59.3336" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="80.1113" y="17.6212" width="14.1209" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="84.1621" y="26.5767" width="10.0694" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="81.6113" y="35.5321" width="12.6207" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="88.0273" y="44.4877" width="6.20526" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="85.9844" y="53.4434" width="8.24653" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.30078" y="4.48657" width="63.5883" height="59.3336" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="46.5859" y="14.8534" width="14.1209" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="27.2773" y="23.8088" width="33.432" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="18.707" y="32.7643" width="42" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="27.2773" y="41.7196" width="33.432" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="54.8223" y="50.6754" width="5.88587" height="2.15549" rx="1.07775" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
15
public/img/customizer/rtl.svg
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<svg width="107" height="69" viewBox="0 0 107 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.333008" y="0.090271" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<rect x="75.2227" y="4.33661" width="24.561" height="59.3336" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="80.4434" y="17.4713" width="14.1209" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="84.4941" y="26.4267" width="10.0694" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="81.9434" y="35.3821" width="12.6207" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="88.3584" y="44.3377" width="6.20526" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="86.3174" y="53.2934" width="8.24653" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.63477" y="4.33661" width="63.5883" height="59.3336" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="46.9209" y="14.7034" width="14.1209" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="27.6104" y="23.6589" width="33.432" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="19.042" y="32.6143" width="42" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="27.6104" y="41.5696" width="33.432" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="55.1562" y="50.5255" width="5.88587" height="2.15549" rx="1.07775" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
17
public/img/customizer/semi-dark-dark.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.835785" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<path d="M0 4.83578C0 2.62665 1.79086 0.835785 4 0.835785H28V68.8358H4C1.79086 68.8358 0 67.0449 0 64.8358V4.83578Z" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="5" y="25.4435" width="18" height="2.87399" rx="1.43699" fill="#232333"/>
|
||||||
|
<rect x="9" y="6.89536" width="10" height="10" rx="2" fill="#232333"/>
|
||||||
|
<rect x="5" y="36.3175" width="18" height="2.87399" rx="1.43699" fill="#232333"/>
|
||||||
|
<rect x="5" y="47.1915" width="18" height="2.87399" rx="1.43699" fill="#232333"/>
|
||||||
|
<rect x="5" y="58.0653" width="18" height="2.87399" rx="1.43699" fill="#232333"/>
|
||||||
|
<rect x="34.7715" y="5.64902" width="66" height="9.06667" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="37.752" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="81.7539" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="87.752" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="93.752" y="7.91562" width="4" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="59.6094" y="21.0435" width="41" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="34.7715" y="21.0435" width="19.4118" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="34.7715" y="44.5768" width="66" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
17
public/img/customizer/semi-dark.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="107" height="68" viewBox="0 0 107 68" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.333008" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<path d="M0.333008 4C0.333008 1.79086 2.12387 0 4.33301 0H28.333V68H4.33301C2.12387 68 0.333008 66.2091 0.333008 64V4Z" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="5.33301" y="24.6077" width="18" height="2.87399" rx="1.43699" fill="#F5F5F9"/>
|
||||||
|
<rect x="9.33301" y="6.05957" width="10" height="10" rx="2" fill="#F5F5F9"/>
|
||||||
|
<rect x="5.33301" y="35.4817" width="18" height="2.87399" rx="1.43699" fill="#F5F5F9"/>
|
||||||
|
<rect x="5.33301" y="46.3557" width="18" height="2.87399" rx="1.43699" fill="#F5F5F9"/>
|
||||||
|
<rect x="5.33301" y="57.2295" width="18" height="2.87399" rx="1.43699" fill="#F5F5F9"/>
|
||||||
|
<rect x="35.1045" y="4.81323" width="66" height="9.06667" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="38.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="82.0859" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="88.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="94.085" y="7.07983" width="4" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="59.9424" y="20.2078" width="41" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="35.1045" y="20.2078" width="19.4118" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="35.1045" y="43.741" width="66" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
17
public/img/customizer/static-dark.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
|
||||||
|
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="32.7715" y="5.38202" width="66" height="9.06667" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="35.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="79.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="85.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="91.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="58.1836" y="20.7766" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="32.7715" y="20.7766" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="32.7715" y="44.3098" width="66.4121" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
17
public/img/customizer/static.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
|
||||||
|
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="32.7715" y="5.38202" width="66" height="9.06667" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="35.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="79.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="85.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="91.752" y="7.64862" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="58.1836" y="20.7766" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="32.7715" y="20.7766" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="32.7715" y="44.3098" width="66.4121" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
17
public/img/customizer/sticky-dark.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
|
||||||
|
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<path d="M32.7715 0.284363H98.7715V7.35103C98.7715 8.4556 97.8761 9.35103 96.7715 9.35103H34.7715C33.6669 9.35103 32.7715 8.4556 32.7715 7.35103V0.284363Z" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="35.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="79.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="85.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="91.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#8692D0" fill-opacity="0.16"/>
|
||||||
|
<rect x="58.1836" y="13" width="41" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="32.7715" y="13" width="19.4118" height="18.1333" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
<rect x="33" y="36" width="66" height="28" rx="2" fill="#8692D0" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
17
public/img/customizer/sticky.svg
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.568726" width="106" height="68" rx="4" fill="#4B465C" fill-opacity="0.02"/>
|
||||||
|
<path d="M0 4.56873C0 2.35959 1.79086 0.568726 4 0.568726H28V68.5687H4C1.79086 68.5687 0 66.7779 0 64.5687V4.56873Z" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="5" y="25.1765" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="9" y="6.62823" width="10" height="10" rx="2" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="36.0504" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="46.9244" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="5" y="57.7983" width="18" height="2.87399" rx="1.43699" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<path d="M32.7715 0.284363H98.7715V7.35103C98.7715 8.4556 97.8761 9.35103 96.7715 9.35103H34.7715C33.6669 9.35103 32.7715 8.4556 32.7715 7.35103V0.284363Z" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="35.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="79.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="85.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="91.752" y="2.55096" width="4" height="4.53333" rx="1" fill="#4B465C" fill-opacity="0.16"/>
|
||||||
|
<rect x="58.1836" y="13" width="41" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="32.7715" y="13" width="19.4118" height="18.1333" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
<rect x="33" y="36" width="66" height="28" rx="2" fill="#4B465C" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
3
public/img/customizer/system-dark.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M62.998 15.75H42.998C41.6193 15.75 40.498 16.8712 40.498 18.25V32C40.498 33.3788 41.6193 34.5 42.998 34.5H51.748V37H47.998V39.5H57.998V37H54.248V34.5H62.998C64.3768 34.5 65.498 33.3788 65.498 32V18.25C65.498 16.8712 64.3768 15.75 62.998 15.75ZM42.998 29.5V18.25H62.998L63.0005 29.5H42.998Z" fill="#E6E6F1" fill-opacity="0.9"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 441 B |
3
public/img/customizer/system.svg
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<svg width="106" height="54" viewBox="0 0 106 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M63.001 15.75H43.001C41.6222 15.75 40.501 16.8712 40.501 18.25V32C40.501 33.3788 41.6222 34.5 43.001 34.5H51.751V37H48.001V39.5H58.001V37H54.251V34.5H63.001C64.3797 34.5 65.501 33.3788 65.501 32V18.25C65.501 16.8712 64.3797 15.75 63.001 15.75ZM43.001 29.5V18.25H63.001L63.0035 29.5H43.001Z" fill="#22303E" fill-opacity="0.9"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 441 B |
11
public/img/customizer/wide-dark.svg
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<svg width="106" height="69" viewBox="0 0 106 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="0.37854" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<rect x="6.81641" y="5.19177" width="92.3672" height="9.06667" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="10.3594" y="7.45837" width="5" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="76.6445" y="7.45837" width="5" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="83.6445" y="7.45837" width="5" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="90.6445" y="7.45837" width="5" height="4.53333" rx="1" fill="#E6E6F1" fill-opacity="0.3"/>
|
||||||
|
<rect x="42.1602" y="20.5863" width="57.0236" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="6.81641" y="20.5863" width="26.9982" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
<rect x="6.81641" y="44.1195" width="92.3672" height="18.1333" rx="2" fill="#E6E6F1" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1019 B |
11
public/img/customizer/wide.svg
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<svg width="107" height="69" viewBox="0 0 107 69" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="0.333008" y="0.090271" width="106" height="68" rx="4" fill="#2E263D" fill-opacity="0.02"/>
|
||||||
|
<rect x="7.14941" y="4.9035" width="92.3672" height="9.06667" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="10.6934" y="7.1701" width="5" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="76.9785" y="7.1701" width="5" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="83.9785" y="7.1701" width="5" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="90.9785" y="7.1701" width="5" height="4.53333" rx="1" fill="#22303E" fill-opacity="0.3"/>
|
||||||
|
<rect x="42.4932" y="20.298" width="57.0236" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="7.14941" y="20.298" width="26.9982" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
<rect x="7.14941" y="43.8312" width="92.3672" height="18.1333" rx="2" fill="#22303E" fill-opacity="0.08"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
public/img/ecommerce-images/product-1.png
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
BIN
public/img/ecommerce-images/product-10.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
public/img/ecommerce-images/product-11.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
public/img/ecommerce-images/product-12.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
public/img/ecommerce-images/product-13.png
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
public/img/ecommerce-images/product-14.png
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
BIN
public/img/ecommerce-images/product-15.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
BIN
public/img/ecommerce-images/product-16.png
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
public/img/ecommerce-images/product-17.png
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
BIN
public/img/ecommerce-images/product-18.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
BIN
public/img/ecommerce-images/product-19.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/img/ecommerce-images/product-2.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
public/img/ecommerce-images/product-20.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
public/img/ecommerce-images/product-21.png
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
public/img/ecommerce-images/product-22.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
public/img/ecommerce-images/product-23.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
public/img/ecommerce-images/product-24.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
public/img/ecommerce-images/product-25.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
public/img/ecommerce-images/product-26.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
public/img/ecommerce-images/product-3.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
public/img/ecommerce-images/product-4.png
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
BIN
public/img/ecommerce-images/product-5.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
public/img/ecommerce-images/product-6.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
public/img/ecommerce-images/product-7.png
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
BIN
public/img/ecommerce-images/product-8.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |