first commit

This commit is contained in:
Aditya Siregar 2025-07-30 22:38:44 +07:00
commit 73320561b0
444 changed files with 64633 additions and 0 deletions

46
.gitignore vendored Normal file
View File

@ -0,0 +1,46 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
*.cxx/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.pub-cache/
.pub/
/build/
# Symbolication related
app.*.symbols
# Obfuscation related
app.*.map.json
# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release
.vscode/templates

45
.metadata Normal file
View File

@ -0,0 +1,45 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: "ef1af02aead6fe2414f3aafa5a61087b610e1332"
channel: "stable"
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
- platform: android
create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
- platform: ios
create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
- platform: linux
create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
- platform: macos
create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
- platform: web
create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
- platform: windows
create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332
# User provided section
# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'

16
README.md Normal file
View File

@ -0,0 +1,16 @@
# EnakloPOS
A new Flutter project.
## Getting Started
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.

28
analysis_options.yaml Normal file
View File

@ -0,0 +1,28 @@
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.
# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:flutter_lints/flutter.yaml
linter:
# The lint rules applied to this project can be customized in the
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
# included above or to enable additional rules. A list of all available lints
# and their documentation is published at https://dart.dev/lints.
#
# Instead of disabling a lint rule for the entire project in the
# section below, it can also be suppressed for a single line of code
# or a specific dart file by using the `// ignore: name_of_lint` and
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options

13
android/.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
**/*.keystore
**/*.jks

72
android/app/build.gradle Normal file
View File

@ -0,0 +1,72 @@
plugins {
id "com.android.application"
id "kotlin-android"
id "dev.flutter.flutter-gradle-plugin"
}
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
android {
namespace "com.example.enaklo_pos"
compileSdkVersion 35
ndkVersion flutter.ndkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.enaklo_pos"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion 21
targetSdkVersion 35
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
multiDexEnabled true
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
//multiDex
implementation 'com.android.support:multidex:1.0.3'
implementation 'androidx.multidex:multidex:2.0.1'
}

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

View File

@ -0,0 +1,44 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
<!-- Izin khusus untuk akses foto (media images) di Android 33 ke atas -->
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<application
android:label="EnakloPOS"
android:name="${applicationName}"
android:icon="@mipmap/launcher_icon">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>

View File

@ -0,0 +1,6 @@
package com.example.enaklo_pos
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="?android:colorBackground" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="ic_launcher_background">#FFFFFF</color>
</resources>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

30
android/build.gradle Normal file
View File

@ -0,0 +1,30 @@
buildscript {
ext.kotlin_version = '2.0.0'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}

View File

@ -0,0 +1,3 @@
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true

View File

@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip

29
android/settings.gradle Normal file
View File

@ -0,0 +1,29 @@
pluginManagement {
def flutterSdkPath = {
def properties = new Properties()
file("local.properties").withInputStream { properties.load(it) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
return flutterSdkPath
}
settings.ext.flutterSdkPath = flutterSdkPath()
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
plugins {
id "dev.flutter.flutter-gradle-plugin" version "1.0.0" apply false
}
}
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.3.0" apply false
}
include ":app"

View File

@ -0,0 +1,5 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="categories">
<path id="Vector" d="M27 6.99991H23.0616L24.0615 3.00001H21.9999L21 6.99991H12.9999L13.4025 11.0193C13.2687 11.0106 13.1358 11.0001 12.9999 11.0001H11.0001C7.6875 11.0001 5.0001 13.6854 5.0001 17.0001C4.73744 17 4.47732 17.0516 4.23462 17.1521C3.99193 17.2525 3.7714 17.3998 3.58566 17.5856C3.39991 17.7713 3.25258 17.9918 3.15209 18.2345C3.0516 18.4771 2.99992 18.7372 3 18.9999V21C3.00032 21.5304 3.21114 22.0389 3.58617 22.4139C3.96119 22.789 4.46974 22.9998 5.0001 23.0001C5.0001 25.2069 6.7911 27 9 27H24.9999L27 6.99991ZM11.0001 12.9999L12.9999 12.999C15.21 12.999 17.0001 14.7912 17.0001 17.0001H6.9999C6.9999 14.79 8.7912 12.9999 11.0001 12.9999ZM5.0001 18.9981L18.9999 18.9999V21H5.0001V18.9981ZM9 24.9999C8.46964 24.9998 7.96105 24.789 7.586 24.414C7.21095 24.039 7.00014 23.5305 6.9999 23.0001H17.001H17.0001C17.0001 23.2628 16.9484 23.5228 16.8478 23.7655C16.7473 24.0081 16.6 24.2286 16.4143 24.4143C16.2285 24.6 16.008 24.7473 15.7654 24.8478C15.5227 24.9482 15.2626 24.9999 15 24.9999H9ZM23.1906 24.9999H18.4452C18.789 24.4101 18.9999 23.7324 18.9999 23.0001H18.999H18.9999C19.5303 22.9999 20.039 22.7892 20.414 22.4141C20.7891 22.0391 20.9998 21.5304 21 21V18.9999C21.0001 18.7372 20.9484 18.4771 20.8479 18.2345C20.7474 17.9918 20.6001 17.7713 20.4143 17.5856C20.2286 17.3998 20.0081 17.2525 19.7654 17.1521C19.5227 17.0516 19.2626 17 18.9999 17.0001C18.9999 14.5656 17.5467 12.4725 15.4629 11.5332L15.21 9.00001H24.7902L23.1906 24.9999Z" fill="#3949AB"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M23 6H1V5C1 3.34315 2.34315 2 4 2H5V1C5 0.447715 5.44772 0 6 0C6.55228 0 7 0.447715 7 1V2H17V1C17 0.447715 17.4477 0 18 0C18.5523 0 19 0.447715 19 1V2H20C21.6569 2 23 3.34315 23 5V6ZM23 8V21C23 22.6569 21.6569 24 20 24H4C2.34315 24 1 22.6569 1 21V8H23ZM6 18C5.44772 18 5 18.4477 5 19C5 19.5523 5.44772 20 6 20C6.55228 20 7 19.5523 7 19C7 18.4477 6.55228 18 6 18ZM10 18C9.44771 18 9 18.4477 9 19C9 19.5523 9.44771 20 10 20C10.5523 20 11 19.5523 11 19C11 18.4477 10.5523 18 10 18ZM14 18C13.4477 18 13 18.4477 13 19C13 19.5523 13.4477 20 14 20C14.5523 20 15 19.5523 15 19C15 18.4477 14.5523 18 14 18ZM6 14C5.44772 14 5 14.4477 5 15C5 15.5523 5.44772 16 6 16C6.55228 16 7 15.5523 7 15C7 14.4477 6.55228 14 6 14ZM10 14C9.44771 14 9 14.4477 9 15C9 15.5523 9.44771 16 10 16C10.5523 16 11 15.5523 11 15C11 14.4477 10.5523 14 10 14ZM14 14C13.4477 14 13 14.4477 13 15C13 15.5523 13.4477 16 14 16C14.5523 16 15 15.5523 15 15C15 14.4477 14.5523 14 14 14ZM6 10C5.44772 10 5 10.4477 5 11C5 11.5523 5.44772 12 6 12C6.55228 12 7 11.5523 7 11C7 10.4477 6.55228 10 6 10ZM10 10C9.44771 10 9 10.4477 9 11C9 11.5523 9.44771 12 10 12C10.5523 12 11 11.5523 11 11C11 10.4477 10.5523 10 10 10ZM14 10C13.4477 10 13 10.4477 13 11C13 11.5523 13.4477 12 14 12C14.5523 12 15 11.5523 15 11C15 10.4477 14.5523 10 14 10ZM18 18C17.4477 18 17 18.4477 17 19C17 19.5523 17.4477 20 18 20C18.5523 20 19 19.5523 19 19C19 18.4477 18.5523 18 18 18ZM18 14C17.4477 14 17 14.4477 17 15C17 15.5523 17.4477 16 18 16C18.5523 16 19 15.5523 19 15C19 14.4477 18.5523 14 18 14ZM18 10C17.4477 10 17 10.4477 17 11C17 11.5523 17.4477 12 18 12C18.5523 12 19 11.5523 19 11C19 10.4477 18.5523 10 18 10Z" fill="#3949AB"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

15
assets/icons/cash.svg Normal file
View File

@ -0,0 +1,15 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Frame" clip-path="url(#clip0_54_444)">
<path id="Vector" d="M18.125 5H1.875C1.52982 5 1.25 5.27982 1.25 5.625V14.375C1.25 14.7202 1.52982 15 1.875 15H18.125C18.4702 15 18.75 14.7202 18.75 14.375V5.625C18.75 5.27982 18.4702 5 18.125 5Z" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_2" d="M10 12.5C11.3807 12.5 12.5 11.3807 12.5 10C12.5 8.61929 11.3807 7.5 10 7.5C8.61929 7.5 7.5 8.61929 7.5 10C7.5 11.3807 8.61929 12.5 10 12.5Z" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_3" d="M13.75 5L18.75 9.375" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_4" d="M13.75 15L18.75 10.625" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_5" d="M6.25 5L1.25 9.375" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_6" d="M6.25 15L1.25 10.625" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_54_444">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.4978 6.7606C10.5855 6.93485 10.6382 7.12392 10.6533 7.32102L11.0419 12.8095C11.0471 12.8847 11.0827 12.9548 11.1409 13.0042C11.1845 13.0413 11.2381 13.0645 11.298 13.0712L11.3599 13.0724L16.9341 12.7366C17.3867 12.71 17.8305 12.8675 18.1604 13.1719C18.4902 13.4763 18.6768 13.9004 18.6744 14.3912C18.4265 18.0037 15.773 21.0237 12.159 21.8065C8.54503 22.5893 4.83611 20.9474 3.05781 17.7848C2.58229 16.9695 2.26178 16.0778 2.1138 15.1749L2.06643 14.8359C2.0253 14.5821 2.00319 14.3257 2 14.0795L2.00311 13.8372C2.0134 10.0655 4.66156 6.80403 8.38809 5.92434L8.64383 5.86807L8.7814 5.84532C9.502 5.74681 10.211 6.12453 10.4978 6.7606ZM9.01643 7.27813L8.93217 7.28772L8.70369 7.33933C5.73526 8.05477 3.6062 10.6103 3.48796 13.621L3.4828 13.8661C3.47569 14.0525 3.4825 14.2392 3.50499 14.4378L3.53277 14.6408C3.63212 15.495 3.90795 16.3206 4.34914 17.0772C5.81632 19.6863 8.86669 21.0367 11.839 20.3929C14.8113 19.7491 16.9936 17.2653 17.1958 14.3414C17.1958 14.2974 17.1774 14.2552 17.1446 14.225C17.1228 14.2049 17.0959 14.1912 17.0675 14.1851L17.024 14.1817L11.459 14.5169C10.9894 14.5503 10.5255 14.3992 10.17 14.0971C9.81456 13.7951 9.59684 13.3669 9.56522 12.91L9.17702 7.42617C9.17632 7.41708 9.17385 7.40822 9.15682 7.37299C9.1315 7.31695 9.07648 7.28131 9.01643 7.27813ZM13.423 2.00105C17.7084 2.12227 21.3029 5.20162 21.9904 9.34084L22 9.4567L21.9977 9.65855C21.9737 9.95621 21.8538 10.2393 21.6545 10.4668C21.4041 10.7524 21.0477 10.9286 20.6588 10.9567L14.0133 11.39C13.1615 11.4382 12.4295 10.8051 12.3741 9.97348L11.9299 3.44914L11.9349 3.30295L11.957 3.13824C12.0162 2.84619 12.1684 2.57938 12.3925 2.37643C12.6739 2.12156 13.0474 1.98661 13.423 2.00105ZM13.4113 3.44902L13.8511 9.87814C13.8537 9.91719 13.888 9.94688 13.9214 9.94502L20.5182 9.51352L20.4854 9.33352C19.8318 6.0802 17.0119 3.66443 13.6287 3.45932L13.4113 3.44902Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

13
assets/icons/debit.svg Normal file
View File

@ -0,0 +1,13 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="payment" clip-path="url(#clip0_54_236)">
<path id="Vector" d="M17.5 4.375H2.5C2.15482 4.375 1.875 4.65482 1.875 5V15C1.875 15.3452 2.15482 15.625 2.5 15.625H17.5C17.8452 15.625 18.125 15.3452 18.125 15V5C18.125 4.65482 17.8452 4.375 17.5 4.375Z" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_2" d="M13.1245 13.125H15.6245" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_3" d="M9.37451 13.125H10.6245" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_4" d="M1.87451 7.56659H18.1245" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_54_236">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 946 B

8
assets/icons/delete.svg Normal file
View File

@ -0,0 +1,8 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="delete">
<path id="Vector" d="M2.5 5H4.16667H17.5" stroke="#3949AB" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_2" d="M6.66669 4.99996V3.33329C6.66669 2.89127 6.84228 2.46734 7.15484 2.15478C7.4674 1.84222 7.89133 1.66663 8.33335 1.66663H11.6667C12.1087 1.66663 12.5326 1.84222 12.8452 2.15478C13.1578 2.46734 13.3334 2.89127 13.3334 3.33329V4.99996M15.8334 4.99996V16.6666C15.8334 17.1087 15.6578 17.5326 15.3452 17.8451C15.0326 18.1577 14.6087 18.3333 14.1667 18.3333H5.83335C5.39133 18.3333 4.9674 18.1577 4.65484 17.8451C4.34228 17.5326 4.16669 17.1087 4.16669 16.6666V4.99996H15.8334Z" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_3" d="M8.33331 9.16663V14.1666" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_4" d="M11.6667 9.16663V14.1666" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.951 2.71651L14.1333 2.88651L14.8521 3.60526C15.0989 3.85098 15.4228 4.00248 15.7673 4.03652L15.916 4.04384H16.944C18.5478 4.04384 19.8592 5.29801 19.9509 6.87889L19.956 7.05584V8.08284C19.956 8.43264 20.0766 8.76892 20.2942 9.0363L20.3933 9.14651L21.1121 9.86531C22.2436 10.9917 22.2942 12.793 21.2576 13.9801L21.1223 14.1252L20.3939 14.8535C20.149 15.0991 19.9974 15.4232 19.9633 15.7673L19.956 15.9158V16.9448C19.956 18.5486 18.7019 19.8592 17.1209 19.9507L16.944 19.9558H15.916C15.5674 19.9558 15.2307 20.077 14.9632 20.2952L14.8529 20.3945L14.1351 21.1114C13.0099 22.2442 11.2073 22.2945 10.0198 21.2575L9.86565 21.1132L9.14854 20.3961C8.90014 20.1494 8.57571 19.9974 8.2322 19.9632L8.08398 19.9558H7.05498C5.45185 19.9558 4.1407 18.7023 4.0491 17.1218L4.04398 16.9448V15.9158C4.04398 15.5679 3.92268 15.2308 3.7046 14.9638L3.60528 14.8538L2.88816 14.1357C1.75558 13.0095 1.70534 11.2069 2.74236 10.0205L2.87765 9.87551L3.60377 9.1484C3.85072 8.89969 4.00255 8.57588 4.03664 8.23152L4.04398 8.08284V7.05584L4.0491 6.87891C4.13732 5.35675 5.35648 4.13721 6.87811 4.04896L7.05498 4.04384H8.08398C8.43246 4.04384 8.76923 3.92296 9.03628 3.70578L9.14628 3.60688L9.86445 2.88772C10.9908 1.75624 12.7932 1.70642 13.951 2.71651ZM11.0414 3.84263L10.9267 3.9468L10.2054 4.66905C9.68818 5.18264 9.00406 5.48972 8.28181 5.53733L8.08398 5.54384H7.05498C6.26742 5.54384 5.6197 6.14799 5.55016 6.91828L5.54398 7.05584V8.08284C5.54398 8.81201 5.27937 9.51316 4.80208 10.0612L4.66668 10.2068L3.93951 10.935C3.3877 11.4893 3.35557 12.365 3.84322 12.959L3.94768 13.0739L4.66694 13.7941C5.18134 14.3098 5.48963 14.9951 5.53744 15.7179L5.54398 15.9158V16.9448C5.54398 17.7329 6.14769 18.3802 6.9175 18.4497L7.05498 18.4558H8.08398C8.81177 18.4558 9.51353 18.7208 10.0617 19.1981L10.2073 19.3335L10.9306 20.0568C11.4888 20.6119 12.3647 20.6442 12.9583 20.1566L13.073 20.0521L13.7939 19.3323C14.3106 18.818 14.9951 18.5101 15.718 18.4624L15.916 18.4558H16.944C17.7327 18.4558 18.3803 17.8524 18.4498 17.0824L18.456 16.9448V15.9158C18.456 15.187 18.7208 14.484 19.1974 13.9383L19.3327 13.7935L20.0602 13.066C20.612 12.5111 20.6439 11.6358 20.157 11.042L20.0527 10.9272L19.3308 10.2053C18.8169 9.68772 18.5101 9.00428 18.4625 8.281L18.456 8.08284V7.05584C18.456 6.26743 17.8519 5.61958 17.0816 5.55002L16.944 5.54384H15.916C15.1868 5.54384 14.4848 5.27946 13.9379 4.80249L13.7927 4.66717L13.1047 3.9774L13.0649 3.94037C12.5106 3.38861 11.6347 3.3563 11.0414 3.84263ZM15.0964 14.0424C15.1664 14.1124 15.2264 14.1924 15.2664 14.2824C15.2964 14.3724 15.3164 14.4724 15.3164 14.5724C15.3164 14.6734 15.2964 14.7624 15.2664 14.8524C15.2264 14.9424 15.1664 15.0324 15.0964 15.1024C14.9564 15.2424 14.7664 15.3224 14.5664 15.3224C14.3664 15.3224 14.1764 15.2424 14.0364 15.1024C13.9664 15.0324 13.9164 14.9424 13.8764 14.8524C13.8364 14.7624 13.8164 14.6734 13.8164 14.5724C13.8164 14.4724 13.8364 14.3724 13.8764 14.2824C13.9164 14.1924 13.9664 14.1124 14.0364 14.0424C14.3164 13.7624 14.8164 13.7624 15.0964 14.0424ZM15.1 8.89921C15.3663 9.16548 15.3905 9.58214 15.1726 9.87575L15.1 9.95987L9.96001 15.0999C9.66712 15.3928 9.19225 15.3928 8.89935 15.0999C8.63309 14.8336 8.60888 14.4169 8.82673 14.1233L8.89935 14.0392L14.0394 8.89921C14.3322 8.60632 14.8071 8.60632 15.1 8.89921ZM9.95628 8.90284C10.0963 9.04184 10.1763 9.23284 10.1763 9.43284C10.1763 9.53284 10.1663 9.62184 10.1263 9.71284C10.0863 9.80284 10.0263 9.88284 9.95628 9.96284C9.88628 10.0328 9.80628 10.0818 9.71628 10.1218C9.62628 10.1618 9.52628 10.1828 9.42628 10.1828C9.32628 10.1828 9.23628 10.1618 9.14628 10.1218C9.05628 10.0818 8.96628 10.0328 8.89628 9.96284C8.82628 9.88284 8.77628 9.80284 8.73628 9.71284C8.69628 9.62184 8.67628 9.53284 8.67628 9.43284C8.67628 9.33184 8.69628 9.23284 8.73628 9.14284C8.77628 9.05284 8.82628 8.96284 8.89628 8.90284C9.18628 8.62184 9.67628 8.62184 9.95628 8.90284Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

3
assets/icons/diskon.svg Normal file
View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.70696 12.2929L13.707 0.292893C13.8945 0.105357 14.1488 0 14.4141 0H21.9998C23.1044 0 23.9998 0.89543 23.9998 2V9.58579C23.9998 9.851 23.8945 10.1054 23.707 10.2929L11.707 22.2929C11.3164 22.6834 10.6833 22.6834 10.2927 22.2929L1.70696 13.7071C1.31643 13.3166 1.31643 12.6834 1.70696 12.2929ZM17.9998 8C19.1044 8 19.9998 7.10457 19.9998 6C19.9998 4.89543 19.1044 4 17.9998 4C16.8953 4 15.9998 4.89543 15.9998 6C15.9998 7.10457 16.8953 8 17.9998 8Z" fill="#3949AB"/>
</svg>

After

Width:  |  Height:  |  Size: 620 B

6
assets/icons/done.svg Normal file
View File

@ -0,0 +1,6 @@
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Icons">
<rect width="80" height="80" rx="40" fill="#C7D0EB"/>
<path id="Line 1" d="M26.6667 40L36.6667 50L53.3334 30" stroke="#3949AB" stroke-width="10" stroke-linecap="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 293 B

7
assets/icons/drink.svg Normal file
View File

@ -0,0 +1,7 @@
<svg width="20" height="30" viewBox="0 0 20 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Frame">
<path id="Vector" d="M15.4428 0.592146C15.4033 0.53394 15.3526 0.484107 15.2937 0.445494C15.2349 0.406882 15.169 0.380247 15.0998 0.367113C15.0307 0.353978 14.9596 0.354601 14.8907 0.368947C14.8218 0.383292 14.7564 0.411078 14.6982 0.450717L10.2336 3.48607C10.1616 3.53525 10.1026 3.60127 10.0619 3.67838C10.0212 3.75549 9.99997 3.84138 9.99998 3.92857V9.82036H11.0714V4.2125L15.3014 1.33572C15.4187 1.25578 15.4994 1.13259 15.5259 0.993183C15.5524 0.853777 15.5226 0.709545 15.4428 0.592146ZM13.75 29.6429H6.24998C6.12091 29.6428 5.99619 29.5962 5.89874 29.5116C5.8013 29.4269 5.7377 29.3099 5.71963 29.1821L3.57677 14.1821C3.56566 14.1064 3.57111 14.0291 3.59276 13.9557C3.6144 13.8823 3.65171 13.8144 3.70213 13.7568C3.7522 13.6984 3.81435 13.6516 3.88427 13.6196C3.9542 13.5876 4.03023 13.5712 4.10713 13.5714H15.8928C16.0482 13.5714 16.1961 13.6379 16.2978 13.7568C16.3482 13.8144 16.3855 13.8823 16.4071 13.9557C16.4287 14.0292 16.4342 14.1064 16.4232 14.1821L14.2803 29.1821C14.2623 29.3099 14.1987 29.4269 14.1012 29.5116C14.0038 29.5962 13.8791 29.6428 13.75 29.6429ZM6.71499 28.5714H13.2861L15.2757 14.6429H4.72534L6.71499 28.5714Z" fill="#3A49AB" stroke="#3A49AB" stroke-width="0.5"/>
<path id="Vector_2" d="M18.0357 14.6429H1.9643C1.82222 14.6429 1.68596 14.5864 1.5855 14.486C1.48503 14.3855 1.42859 14.2492 1.42859 14.1071C1.42859 12.62 2.62002 11.4286 4.08573 11.4286H15.9143C16.6188 11.4291 17.2944 11.7093 17.7926 12.2075C18.2907 12.7056 18.5709 13.3812 18.5714 14.0857C18.5714 14.3825 18.3314 14.6429 18.0357 14.6429ZM2.58573 13.5714H17.4143C17.2 12.9489 16.6086 12.5 15.9143 12.5H4.08573C3.39145 12.5 2.80002 12.9489 2.58573 13.5714Z" fill="#3A49AB" stroke="#3A49AB" stroke-width="0.5"/>
<path id="Vector_3" d="M15.5704 12.5H4.85609C4.71401 12.5 4.57775 12.4436 4.47728 12.3431C4.37681 12.2426 4.32037 12.1064 4.32037 11.9643C4.32037 10.4771 5.5118 9.28571 6.97752 9.28571H13.4489C14.1535 9.28628 14.829 9.56641 15.3272 10.0646C15.8254 10.5628 16.1055 11.2383 16.1061 11.9429C16.1061 12.2396 15.8661 12.5 15.5704 12.5ZM5.47752 11.4286H14.9489C14.7347 10.8061 14.1432 10.3571 13.4489 10.3571H6.97752C6.28323 10.3571 5.6918 10.8061 5.47752 11.4286ZM10.0664 22.0839C8.28894 22.0839 6.84359 20.6386 6.84359 18.8611C6.84359 17.0836 8.29002 15.6382 10.0664 15.6382C11.8429 15.6382 13.2893 17.0836 13.2893 18.8611C13.2893 20.6386 11.8439 22.0839 10.0664 22.0839ZM10.0664 16.5929C8.81609 16.5929 7.79823 17.6107 7.79823 18.8611C7.79823 20.1114 8.81609 21.1293 10.0664 21.1293C11.3168 21.1293 12.3347 20.1114 12.3347 18.8611C12.3347 17.6107 11.3168 16.5929 10.0664 16.5929Z" fill="#3A49AB" stroke="#3A49AB" stroke-width="0.5"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

3
assets/icons/edit.svg Normal file
View File

@ -0,0 +1,3 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.9512 16.0075C17.2543 16.0075 17.5 16.2483 17.5 16.5454C17.5 16.8178 17.2935 17.0428 17.0257 17.0784L16.9512 17.0834H11.2258C10.9227 17.0834 10.677 16.8425 10.677 16.5454C10.677 16.2731 10.8835 16.048 11.1514 16.0124L11.2258 16.0075H16.9512ZM11.3827 3.68054C12.4217 2.66207 14.1069 2.66207 15.1459 3.68054L16.2245 4.73785C17.2635 5.75631 17.2635 7.40823 16.2245 8.42669L8.11717 16.3738C7.65359 16.8283 7.02506 17.0833 6.36901 17.0833H3.04878C2.74035 17.0833 2.49249 16.8342 2.50017 16.5319L2.58369 13.2479C2.6003 12.6272 2.85939 12.0355 3.30722 11.5965L11.3827 3.68054ZM10.755 5.81585L4.08332 12.3572C3.83438 12.6012 3.69012 12.9307 3.68089 13.2754L3.61121 16.007L6.36901 16.0074C6.69352 16.0074 7.00559 15.8954 7.2519 15.6931L7.34108 15.6131L14.0458 9.04085L10.755 5.81585ZM14.3698 4.4413C13.7594 3.84299 12.7691 3.84299 12.1588 4.4413L11.5317 5.05502L14.8217 8.28002L15.4484 7.66593C16.0249 7.10086 16.0569 6.20363 15.5445 5.60165L15.4484 5.49861L14.3698 4.4413Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

5
assets/icons/food.svg Normal file
View File

@ -0,0 +1,5 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Frame">
<path id="Vector" d="M27 21C27.0001 21.2627 26.9484 21.5228 26.8479 21.7655C26.7474 22.0082 26.6001 22.2287 26.4144 22.4145C26.2286 22.6002 26.0081 22.7475 25.7654 22.848C25.5227 22.9485 25.2626 23.0002 24.9999 23.0001H5.0001C4.46964 23.0001 3.96091 22.7894 3.58582 22.4143C3.21072 22.0392 3 21.5305 3 21H27ZM27 16.8888V18.9999C26.3662 19.2635 25.6865 19.3993 25.0001 19.3993C24.3136 19.3993 23.6339 19.2635 23.0001 18.9999C22.3662 18.7364 21.6865 18.6007 21 18.6007C20.3135 18.6007 19.6338 18.7364 18.9999 18.9999C18.3661 19.2635 17.6864 19.3993 17 19.3993C16.3135 19.3993 15.6338 19.2635 15 18.9999C14.3662 18.7364 13.6865 18.6007 13.0001 18.6007C12.3136 18.6007 11.6339 18.7364 11.0001 18.9999C10.3662 19.2635 9.68651 19.3993 9 19.3993C8.31349 19.3993 7.63376 19.2635 6.9999 18.9999C6.36606 18.7364 5.68639 18.6007 4.99995 18.6007C4.31351 18.6007 3.63384 18.7364 3 18.9999V16.8888C4.57212 16.43 6.2539 16.5231 7.7658 17.1525C8.15697 17.3159 8.57668 17.4 9.0006 17.4C9.42452 17.4 9.84423 17.3159 10.2354 17.1525C12.0195 16.4151 13.9842 16.4151 15.7656 17.1525C16.1568 17.3159 16.5765 17.4001 17.0004 17.4001C17.4243 17.4001 17.844 17.3159 18.2352 17.1525C20.0205 16.4142 21.9864 16.4151 23.7657 17.1525C24.1569 17.3159 24.5766 17.4001 25.0005 17.4001C25.4244 17.4001 25.8441 17.3159 26.2353 17.1525C26.4864 17.0487 26.7423 16.9629 27 16.8888ZM21 6.99989C19.9062 6.99989 18.8838 7.29779 18 7.80929C17.0891 7.27925 16.0539 7.00002 15 7.00002C13.9461 7.00002 12.911 7.27925 12 7.80929C11.0891 7.27906 10.054 6.99978 9 6.99989C5.6874 6.99989 3 9.68639 3 12.9999V15H27V12.9999C27 9.68639 24.3126 6.99989 21 6.99989ZM5.0001 12.9999C5.0001 10.791 6.7911 8.99999 9 8.99999C10.4766 8.99999 11.7519 9.80939 12.4452 11.0001H14.652C14.4242 10.3637 14.0912 9.77001 13.6668 9.24389C14.0859 9.09569 14.5305 8.99999 15 8.99999C16.4757 8.99999 17.7519 9.80939 18.4452 11.0001H20.652C20.4245 10.3639 20.0914 9.77062 19.6668 9.24509C20.0859 9.09569 20.5305 8.99999 21 8.99999C23.208 8.99999 24.9999 10.791 24.9999 12.9999H5.0001Z" fill="#3949AB"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

10
assets/icons/history.svg Normal file
View File

@ -0,0 +1,10 @@
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Frame" clip-path="url(#clip0_37_823)">
<path id="Vector" d="M17.7083 2.08333H20.8333C21.1096 2.08333 21.3746 2.19308 21.5699 2.38843C21.7653 2.58378 21.875 2.84873 21.875 3.125V21.875C21.875 22.1513 21.7653 22.4162 21.5699 22.6116C21.3746 22.8069 21.1096 22.9167 20.8333 22.9167H4.16667C3.8904 22.9167 3.62545 22.8069 3.4301 22.6116C3.23475 22.4162 3.125 22.1513 3.125 21.875V3.125C3.125 2.84873 3.23475 2.58378 3.4301 2.38843C3.62545 2.19308 3.8904 2.08333 4.16667 2.08333H7.29167V0H9.375V2.08333H15.625V0H17.7083V2.08333ZM17.7083 4.16667V6.25H15.625V4.16667H9.375V6.25H7.29167V4.16667H5.20833V20.8333H19.7917V4.16667H17.7083ZM7.29167 8.33333H17.7083V10.4167H7.29167V8.33333ZM7.29167 12.5H17.7083V14.5833H7.29167V12.5Z" fill="#C8D1E1"/>
</g>
<defs>
<clipPath id="clip0_37_823">
<rect width="25" height="25" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 953 B

View File

@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M31.6663 3.33337H8.33301C5.57634 3.33337 3.33301 5.57671 3.33301 8.33337V13.0517C3.33301 14.8067 3.96967 16.4017 4.99967 17.6284V33.3334C4.99967 33.7754 5.17527 34.1993 5.48783 34.5119C5.80039 34.8244 6.22431 35 6.66634 35H19.9997C20.4417 35 20.8656 34.8244 21.1782 34.5119C21.4907 34.1993 21.6663 33.7754 21.6663 33.3334V25H28.333V33.3334C28.333 33.7754 28.5086 34.1993 28.8212 34.5119C29.1337 34.8244 29.5576 35 29.9997 35H33.333C33.775 35 34.199 34.8244 34.5115 34.5119C34.8241 34.1993 34.9997 33.7754 34.9997 33.3334V17.6267C36.0297 16.4017 36.6663 14.8067 36.6663 13.05V8.33337C36.6663 5.57671 34.423 3.33337 31.6663 3.33337ZM33.333 8.33337V13.0517C33.333 14.9517 31.918 16.5717 30.1813 16.6634L29.9997 16.6667C28.1613 16.6667 26.6663 15.1717 26.6663 13.3334V6.66671H31.6663C32.5863 6.66671 33.333 7.41504 33.333 8.33337ZM16.6663 13.3334V6.66671H23.333V13.3334C23.333 15.1717 21.838 16.6667 19.9997 16.6667C18.1613 16.6667 16.6663 15.1717 16.6663 13.3334ZM6.66634 8.33337C6.66634 7.41504 7.41301 6.66671 8.33301 6.66671H13.333V13.3334C13.333 15.1717 11.838 16.6667 9.99967 16.6667L9.81801 16.6617C8.08134 16.5717 6.66634 14.9517 6.66634 13.0517V8.33337ZM16.6663 26.6667H9.99967V21.6667H16.6663V26.6667Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

10
assets/icons/home.svg Normal file
View File

@ -0,0 +1,10 @@
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Frame" clip-path="url(#clip0_37_726)">
<path id="Vector" d="M13.5417 19.7917H19.7917V10.3938L12.5 4.72293L5.20833 10.3938V19.7917H11.4583V13.5417H13.5417V19.7917ZM21.875 20.8333C21.875 21.1096 21.7653 21.3746 21.5699 21.5699C21.3746 21.7653 21.1096 21.875 20.8333 21.875H4.16667C3.8904 21.875 3.62545 21.7653 3.4301 21.5699C3.23475 21.3746 3.125 21.1096 3.125 20.8333V9.88542C3.12489 9.72669 3.16106 9.57003 3.23075 9.4274C3.30043 9.28478 3.40179 9.15997 3.52708 9.06251L11.8604 2.58126C12.0433 2.43901 12.2683 2.36179 12.5 2.36179C12.7317 2.36179 12.9567 2.43901 13.1396 2.58126L21.4729 9.06251C21.5982 9.15997 21.6996 9.28478 21.7693 9.4274C21.8389 9.57003 21.8751 9.72669 21.875 9.88542V20.8333Z" fill="#C8D1E1"/>
</g>
<defs>
<clipPath id="clip0_37_726">
<rect width="25" height="25" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 932 B

6
assets/icons/image.svg Normal file
View File

@ -0,0 +1,6 @@
<svg width="31" height="25" viewBox="0 0 31 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Group 949">
<path id="Union" fill-rule="evenodd" clip-rule="evenodd" d="M29.8644 24.0553C30.6951 24.0553 31.1636 23.1012 30.6557 22.4439L21.0047 9.95435C20.6044 9.43628 19.8225 9.43628 19.4221 9.95435L13.319 17.8525C12.9249 18.3626 12.1581 18.3719 11.7516 17.8716L8.61453 14.0106C8.21434 13.518 7.4625 13.518 7.06231 14.0106L0.225777 22.4247C-0.305204 23.0783 0.159856 24.0553 1.00189 24.0553H16.7759L29.8644 24.0553Z" fill="#3949AB"/>
<circle id="Ellipse" cx="9.21338" cy="3.4375" r="3.4375" fill="#3949AB"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 625 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.33515 5.22015C1.3364 6.75926 1.33854 9.12676 1.34444 12.668C1.3452 13.0357 1.64346 13.3333 2.0111 13.3333H12.6805C13.0487 13.3333 13.3472 13.0348 13.3472 12.6666V11.3333H12.6667C11.9303 11.3333 11.3333 10.7364 11.3333 9.99998V8.66665C11.3333 7.93027 11.9303 7.33331 12.6667 7.33331H13.3472V5.99998C13.3472 5.63179 13.0487 5.33331 12.6805 5.33331H2C1.76692 5.33331 1.54315 5.29344 1.33515 5.22015ZM1.33333 3.33445C1.33395 3.70212 1.63219 3.99998 2 3.99998H4H11.3416L11.35 3.33331C11.35 2.96512 11.0515 2.66665 10.6833 2.66665H2C1.63181 2.66665 1.33333 2.96512 1.33333 3.33331L1.33334 3.33445L1.33333 3.33445ZM14.6805 11.3332V12.6666C14.6805 13.7712 13.7851 14.6666 12.6805 14.6666H2.0111C0.90816 14.6666 0.0134049 13.7738 0.011108 12.6705C0.00632354 9.79798 0.00603568 9.62515 0.00332906 7.99998H0V3.33331C0 2.22874 0.895431 1.33331 2 1.33331H10.6833C11.7879 1.33331 12.6833 2.22874 12.6833 3.34164L12.675 3.99998H12.6805C13.7851 3.99998 14.6805 4.89541 14.6805 5.99998V7.33338C15.4105 7.34083 16 7.9349 16 8.66665V9.99998C16 10.7317 15.4105 11.3258 14.6805 11.3332ZM12.6667 8.66665V9.99998H14.6667V8.66665H12.6667Z" fill="#3949AB"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.30033 1.81098L9.42188 1.92432L9.90104 2.40348C10.0656 2.5673 10.2815 2.6683 10.5112 2.69099L10.6103 2.69588H11.2957C12.3649 2.69588 13.2392 3.53199 13.3003 4.58591L13.3037 4.70388V5.38854C13.3037 5.62174 13.3841 5.84592 13.5291 6.02418L13.5952 6.09765L14.0744 6.57686C14.8288 7.32779 14.8625 8.52865 14.1714 9.32003L14.0812 9.41676L13.5956 9.90234C13.4323 10.066 13.3313 10.2821 13.3086 10.5115L13.3037 10.6105V11.2965C13.3037 12.3657 12.4676 13.2394 11.4136 13.3005L11.2957 13.3039H10.6103C10.378 13.3039 10.1535 13.3846 9.97514 13.5301L9.90164 13.5963L9.42308 14.0742C8.67295 14.8295 7.47122 14.863 6.67954 14.1716L6.57678 14.0754L6.0987 13.5973C5.9331 13.4329 5.71681 13.3316 5.48781 13.3088L5.389 13.3039H4.703C3.63424 13.3039 2.76014 12.4682 2.69907 11.4145L2.69566 11.2965V10.6105C2.69566 10.3786 2.6148 10.1539 2.46941 9.97584L2.4032 9.90252L1.92511 9.42376C1.17006 8.67297 1.13657 7.47122 1.82792 6.68031L1.91811 6.58365L2.40219 6.09891C2.56682 5.93311 2.66804 5.71723 2.69077 5.48766L2.69566 5.38854V4.70388L2.69907 4.58592C2.75789 3.57114 3.57066 2.75812 4.58508 2.69929L4.703 2.69588H5.389C5.62132 2.69588 5.84583 2.61529 6.02386 2.4705L6.0972 2.40457L6.57598 1.92512C7.32688 1.1708 8.5285 1.1376 9.30033 1.81098ZM7.36061 2.56173L7.28413 2.63118L6.80329 3.11268C6.45846 3.45507 6.00238 3.65979 5.52088 3.69153L5.389 3.69588H4.703C4.17795 3.69588 3.74614 4.09864 3.69978 4.61216L3.69566 4.70388V5.38854C3.69566 5.87465 3.51926 6.34208 3.20106 6.70746L3.11079 6.80452L2.62602 7.28996C2.25814 7.65951 2.23672 8.24329 2.56182 8.63932L2.63146 8.7159L3.11097 9.19607C3.4539 9.53982 3.65943 9.9967 3.6913 10.4786L3.69566 10.6105V11.2965C3.69566 11.8219 4.09813 12.2534 4.61134 12.2998L4.703 12.3039H5.389C5.87419 12.3039 6.34203 12.4805 6.70748 12.7987L6.80455 12.889L7.28676 13.3712C7.6589 13.7413 8.24284 13.7628 8.63851 13.4377L8.71502 13.3681L9.19561 12.8882C9.54009 12.5453 9.99638 12.3401 10.4783 12.3082L10.6103 12.3039H11.2957C11.8215 12.3039 12.2532 11.9016 12.2995 11.3882L12.3037 11.2965V10.6105C12.3037 10.1246 12.4802 9.65598 12.798 9.2922L12.8881 9.19565L13.3731 8.71066C13.741 8.34069 13.7623 7.7572 13.4376 7.36132L13.3681 7.28476L12.8869 6.8035C12.5443 6.45846 12.3397 6.00284 12.308 5.52064L12.3037 5.38854V4.70388C12.3037 4.17827 11.901 3.74636 11.3874 3.7L11.2957 3.69588H10.6103C10.1242 3.69588 9.65618 3.51962 9.29158 3.20164L9.19478 3.11143L8.73615 2.65158L8.70958 2.6269C8.34006 2.25905 7.75615 2.23751 7.36061 2.56173ZM10.0639 9.36161C10.1106 9.40827 10.1506 9.46161 10.1773 9.52161C10.1973 9.58161 10.2106 9.64827 10.2106 9.71494C10.2106 9.78227 10.1973 9.84161 10.1773 9.90161C10.1506 9.96161 10.1106 10.0216 10.0639 10.0683C9.9706 10.1616 9.84393 10.2149 9.7106 10.2149C9.57726 10.2149 9.4506 10.1616 9.35726 10.0683C9.3106 10.0216 9.27726 9.96161 9.2506 9.90161C9.22393 9.84161 9.2106 9.78227 9.2106 9.71494C9.2106 9.64827 9.22393 9.58161 9.2506 9.52161C9.27726 9.46161 9.3106 9.40827 9.35726 9.36161C9.54393 9.17494 9.87726 9.17494 10.0639 9.36161ZM10.0663 5.93279C10.2439 6.1103 10.26 6.38807 10.1148 6.58382L10.0663 6.63989L6.63968 10.0666C6.44442 10.2618 6.12784 10.2618 5.93258 10.0666C5.75506 9.88905 5.73893 9.61127 5.88416 9.41553L5.93258 9.35945L9.35924 5.93279C9.5545 5.73753 9.87109 5.73753 10.0663 5.93279ZM6.6372 5.93521C6.73053 6.02787 6.78386 6.15521 6.78386 6.28854C6.78386 6.35521 6.7772 6.41454 6.75053 6.47521C6.72386 6.53521 6.68386 6.58854 6.6372 6.64187C6.59053 6.68854 6.5372 6.72121 6.4772 6.74787C6.4172 6.77454 6.35053 6.78854 6.28386 6.78854C6.2172 6.78854 6.1572 6.77454 6.0972 6.74787C6.0372 6.72121 5.9772 6.68854 5.93053 6.64187C5.88386 6.58854 5.85053 6.53521 5.82386 6.47521C5.7972 6.41454 5.78386 6.35521 5.78386 6.28854C5.78386 6.22121 5.7972 6.15521 5.82386 6.09521C5.85053 6.03521 5.88386 5.97521 5.93053 5.93521C6.12386 5.74788 6.45053 5.74788 6.6372 5.93521Z" fill="#3949AB"/>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.44714 14.6667H2C0.895431 14.6667 0 13.7712 0 12.6667V8C0 6.89543 0.895431 6 2 6H3.33333V0.666667C3.33333 0.298477 3.63181 0 4 0H12C12.3682 0 12.6667 0.298477 12.6667 0.666667V6H14C15.1046 6 16 6.89543 16 8V12.6667C16 13.7712 15.1046 14.6667 14 14.6667H12.5529C12.2783 15.4435 11.5375 16 10.6667 16H5.33333C4.46252 16 3.72169 15.4435 3.44714 14.6667ZM3.44714 13.3333C3.72169 12.5565 4.46252 12 5.33333 12H10.6667C11.5375 12 12.2783 12.5565 12.5529 13.3333H14C14.3682 13.3333 14.6667 13.0349 14.6667 12.6667V8C14.6667 7.63181 14.3682 7.33333 14 7.33333H2C1.63181 7.33333 1.33333 7.63181 1.33333 8V12.6667C1.33333 13.0349 1.63181 13.3333 2 13.3333H3.44714ZM4.66667 1.33333V6H11.3333V1.33333H4.66667ZM5.33333 13.3333C4.96514 13.3333 4.66667 13.6318 4.66667 14C4.66667 14.3682 4.96514 14.6667 5.33333 14.6667H10.6667C11.0349 14.6667 11.3333 14.3682 11.3333 14C11.3333 13.6318 11.0349 13.3333 10.6667 13.3333H5.33333ZM3.33333 8.66667C3.70152 8.66667 4 8.96514 4 9.33333C4 9.70152 3.70152 10 3.33333 10C2.96514 10 2.66667 9.70152 2.66667 9.33333C2.66667 8.96514 2.96514 8.66667 3.33333 8.66667Z" fill="#3949AB"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.33325 1.77778H1.33325V14.2222H14.6666V1.77778H10.6666V7.45064C10.6666 7.94156 10.3681 8.33953 9.99992 8.33953C9.89642 8.33953 9.79435 8.3074 9.70178 8.24568L7.99992 7.11111L6.29806 8.24568C5.96874 8.46523 5.56829 8.28725 5.40363 7.84816C5.35735 7.72473 5.33325 7.58863 5.33325 7.45064V1.77778ZM1.33333 0H14.6667C15.403 0 16 0.795938 16 1.77778V14.2222C16 15.2041 15.403 16 14.6667 16H1.33333C0.596954 16 0 15.2041 0 14.2222V1.77778C0 0.795938 0.596954 0 1.33333 0ZM6.66675 1.77778V6.01238L7.4038 5.52102C7.77917 5.27077 8.221 5.27077 8.59637 5.52102L9.33342 6.01238V1.77778H6.66675Z" fill="#3949AB"/>
</svg>

After

Width:  |  Height:  |  Size: 756 B

3
assets/icons/layanan.svg Normal file
View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 22H11V15H8V22ZM16 22V15H13V22H16ZM3 10.584V22H6V15C6 13.8954 6.89543 13 8 13H16C17.1046 13 18 13.8954 18 15V22H21V10.584C20.3875 10.8516 19.7111 11 19 11C17.6373 11 16.4019 10.4548 15.5 9.57072C14.5981 10.4548 13.3627 11 12 11C10.6373 11 9.40188 10.4548 8.5 9.57072C7.59812 10.4548 6.36273 11 5 11C4.2889 11 3.61246 10.8516 3 10.584ZM0 6V4.41421C0 3.61856 0.31607 2.8555 0.87868 2.29289L2.29289 0.87868C2.8555 0.31607 3.61856 0 4.41421 0H19.5858C20.3814 0 21.1445 0.31607 21.7071 0.87868L23.1213 2.29289C23.6839 2.8555 24 3.61856 24 4.41421V6C24 7.12582 23.6279 8.16474 23 9.00049V22C23 23.1046 22.1046 24 21 24H3C1.89543 24 1 23.1046 1 22V9.00049C0.37209 8.16474 0 7.12582 0 6ZM15 6C15 5.72386 15.2239 5.5 15.5 5.5C15.7761 5.5 16 5.72386 16 6C16 7.65685 17.3431 9 19 9C20.6569 9 22 7.65685 22 6V4.41421C22 4.149 21.8946 3.89464 21.7071 3.70711L20.2929 2.29289C20.1054 2.10536 19.851 2 19.5858 2H4.41421C4.149 2 3.89464 2.10536 3.70711 2.29289L2.29289 3.70711C2.10536 3.89464 2 4.149 2 4.41421V6C2 7.65685 3.34315 9 5 9C6.65685 9 8 7.65685 8 6C8 5.72386 8.22386 5.5 8.5 5.5C8.77614 5.5 9 5.72386 9 6C9 7.65685 10.3431 9 12 9C13.6569 9 15 7.65685 15 6Z" fill="#3949AB"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

3
assets/icons/logout.svg Normal file
View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.331 2.02148C13.7102 2.02148 15.6521 3.89542 15.7611 6.24772L15.766 6.45648V7.38948C15.766 7.8037 15.4302 8.13948 15.016 8.13948C14.6363 8.13948 14.3225 7.85733 14.2728 7.49125L14.266 7.38948V6.45648C14.266 4.89358 13.044 3.61575 11.5034 3.52647L11.331 3.52148H6.45597C4.89392 3.52148 3.61623 4.74362 3.52696 6.28406L3.52197 6.45648V17.5865C3.52197 19.1493 4.74388 20.4272 6.28363 20.5165L6.45597 20.5215H11.341C12.8983 20.5215 14.172 19.3039 14.261 17.7693L14.266 17.5975V16.6545C14.266 16.2403 14.6018 15.9045 15.016 15.9045C15.3957 15.9045 15.7095 16.1866 15.7591 16.5527L15.766 16.6545V17.5975C15.766 19.9687 13.8992 21.9046 11.5553 22.0164L11.341 22.0215H6.45597C4.07753 22.0215 2.13581 20.1474 2.0268 17.7952L2.02197 17.5865V6.45648C2.02197 4.07743 3.89573 2.13535 6.24728 2.02631L6.45597 2.02148H11.331ZM19.326 8.50234L19.4103 8.57478L22.3383 11.4898C22.3647 11.5159 22.3878 11.5426 22.409 11.5707L22.3383 11.4898C22.3689 11.5202 22.3963 11.5526 22.4205 11.5865C22.4376 11.6103 22.4533 11.6354 22.4676 11.6614C22.4702 11.6665 22.4728 11.6715 22.4754 11.6764C22.4881 11.7004 22.4993 11.7253 22.5092 11.7508C22.5132 11.762 22.5173 11.7733 22.5211 11.7847C22.5284 11.8058 22.5345 11.8274 22.5397 11.8494C22.5421 11.8612 22.5445 11.8729 22.5467 11.8846C22.5508 11.905 22.5538 11.9261 22.5559 11.9474C22.557 11.9623 22.558 11.977 22.5586 11.9917C22.5593 12.0016 22.5595 12.0115 22.5595 12.0214L22.5586 12.0497C22.5581 12.0651 22.557 12.0805 22.5555 12.0958L22.5595 12.0214C22.5595 12.0682 22.5552 12.1141 22.547 12.1585C22.5445 12.1696 22.5421 12.1814 22.5394 12.193C22.5343 12.2162 22.5279 12.2387 22.5205 12.2607C22.5167 12.2709 22.513 12.2813 22.509 12.2915C22.4997 12.3164 22.4889 12.3405 22.4769 12.3639C22.4739 12.3692 22.4708 12.3751 22.4675 12.381C22.4331 12.4443 22.39 12.5015 22.3398 12.5517L22.3384 12.5527L19.4104 15.4687C19.1169 15.761 18.642 15.76 18.3498 15.4665C18.084 15.1997 18.0607 14.783 18.2791 14.4898L18.3519 14.4059L19.991 12.7705L9.76847 12.7714C9.35426 12.7714 9.01847 12.4356 9.01847 12.0214C9.01847 11.6417 9.30063 11.3279 9.6667 11.2782L9.76847 11.2714L19.993 11.2705L18.352 9.63779C18.0852 9.37212 18.06 8.95551 18.2772 8.66142L18.3497 8.57714C18.6153 8.31028 19.0319 8.28514 19.326 8.50234Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,3 @@
<svg width="161" height="126" viewBox="0 0 161 126" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M111.016 31.0763L92.1992 11.4758C89.6059 8.7745 89.6935 4.48236 92.3948 1.88908C95.0962 -0.704205 99.3883 -0.61661 101.982 2.08473L129.103 30.3359C129.329 30.5713 129.534 30.8188 129.72 31.0763H146.719C147.466 31.0763 148.211 31.138 148.948 31.2608C156.336 32.492 161.326 39.4788 160.095 46.8661L149.739 109.003C148.104 118.811 139.618 126 129.675 126H30.6048C20.6614 126 12.1754 118.811 10.5407 109.003L0.184506 46.8661C0.0617119 46.1294 0 45.3837 0 44.6368C0 37.1475 6.07126 31.0763 13.5605 31.0763H30.5597C30.745 30.8188 30.9507 30.5713 31.1767 30.3359L58.2978 2.08473C60.8911 -0.61661 65.1832 -0.704205 67.8846 1.88908C70.5859 4.48236 70.6735 8.7745 68.0802 11.4758L49.2638 31.0763H111.016ZM80.14 58.1968C83.8846 58.1968 86.9202 61.2324 86.9202 64.9771V92.0982C86.9202 95.8428 83.8846 98.8784 80.14 98.8784C76.3953 98.8784 73.3597 95.8428 73.3597 92.0982V64.9771C73.3597 61.2324 76.3953 58.1968 80.14 58.1968ZM46.2386 58.1968C49.9833 58.1968 53.0189 61.2324 53.0189 64.9771V92.0982C53.0189 95.8428 49.9833 98.8784 46.2386 98.8784C42.494 98.8784 39.4583 95.8428 39.4583 92.0982V64.9771C39.4583 61.2324 42.494 58.1968 46.2386 58.1968ZM114.041 58.1968C117.786 58.1968 120.822 61.2324 120.822 64.9771V92.0982C120.822 95.8428 117.786 98.8784 114.041 98.8784C110.297 98.8784 107.261 95.8428 107.261 92.0982V64.9771C107.261 61.2324 110.297 58.1968 114.041 58.1968Z" fill="#758CA3"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

3
assets/icons/ongkir.svg Normal file
View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 10.4051V16C24 17.1046 23.1046 18 22 18H21.9646C21.7219 19.6961 20.2632 21 18.5 21C16.7368 21 15.2781 19.6961 15.0354 18H9.96456C9.72194 19.6961 8.26324 21 6.5 21C4.73676 21 3.27806 19.6961 3.03544 18H2C0.89543 18 0 17.1046 0 16V5C0 3.89543 0.89543 3 2 3H15C16.1046 3 17 3.89543 17 5V6H19.3139C20.0157 6 20.6953 6.24605 21.2344 6.69534L22.9206 8.10046C23.6045 8.67044 24 9.51479 24 10.4051ZM22 11V10.4051C22 10.1083 21.8682 9.8269 21.6402 9.6369L19.954 8.23178C19.7743 8.08202 19.5478 8 19.3139 8H17V11H22ZM6.5 19C7.32843 19 8 18.3284 8 17.5C8 16.6716 7.32843 16 6.5 16C5.67157 16 5 16.6716 5 17.5C5 18.3284 5.67157 19 6.5 19ZM18.5 19C19.3284 19 20 18.3284 20 17.5C20 16.6716 19.3284 16 18.5 16C17.6716 16 17 16.6716 17 17.5C17 18.3284 17.6716 19 18.5 19Z" fill="#3949AB"/>
</svg>

After

Width:  |  Height:  |  Size: 929 B

5
assets/icons/orders.svg Normal file
View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Icon/shopping_cart">
<path id="Vector" d="M16.5463 13C17.2963 13 17.9563 12.59 18.2963 11.97L21.8763 5.48C22.2463 4.82 21.7663 4 21.0063 4H6.20628L5.26628 2H1.99628V4H3.99628L7.59628 11.59L6.24628 14.03C5.51628 15.37 6.47628 17 7.99628 17H19.9963V15H7.99628L9.09628 13H16.5463ZM7.15628 6H19.3063L16.5463 11H9.52628L7.15628 6ZM7.99628 18C6.89628 18 6.00628 18.9 6.00628 20C6.00628 21.1 6.89628 22 7.99628 22C9.09628 22 9.99628 21.1 9.99628 20C9.99628 18.9 9.09628 18 7.99628 18ZM17.9963 18C16.8963 18 16.0063 18.9 16.0063 20C16.0063 21.1 16.8963 22 17.9963 22C19.0963 22 19.9963 21.1 19.9963 20C19.9963 18.9 19.0963 18 17.9963 18Z" fill="#C8D1E1"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 763 B

3
assets/icons/pajak.svg Normal file
View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.03363 23.3631C8.55231 23.5942 7.97435 23.4064 7.72078 22.9365L6.15806 20.0408L2.92109 19.4494C2.39586 19.3534 2.03866 18.8618 2.1097 18.3326L2.54754 15.0713L0.276386 12.6902C-0.0921287 12.3039 -0.0921287 11.6962 0.276386 11.3098L2.54754 8.92872L2.1097 5.66743C2.03866 5.13826 2.39586 4.64662 2.92109 4.55066L6.15806 3.95927L7.72078 1.06348C7.97435 0.593611 8.55231 0.40582 9.03363 0.636909L12 2.06111L14.9664 0.636909C15.4477 0.40582 16.0257 0.593611 16.2792 1.06348L17.8419 3.95927L21.0789 4.55066C21.6041 4.64662 21.9613 5.13826 21.8903 5.66743L21.4525 8.92872L23.7236 11.3098C24.0921 11.6962 24.0921 12.3039 23.7236 12.6902L21.4525 15.0713L21.8903 18.3326C21.9613 18.8618 21.6041 19.3534 21.0789 19.4494L17.8419 20.0408L16.2792 22.9365C16.0257 23.4064 15.4477 23.5942 14.9664 23.3631L12 21.9389L9.03363 23.3631ZM10.2071 15.2071C9.81658 15.5976 9.18342 15.5976 8.79289 15.2071C8.40237 14.8166 8.40237 14.1834 8.79289 13.7929L13.7929 8.79291C14.1834 8.40238 14.8166 8.40238 15.2071 8.79291C15.5976 9.18343 15.5976 9.8166 15.2071 10.2071L10.2071 15.2071ZM9.5 11C8.67157 11 8 10.3284 8 9.50001C8 8.67159 8.67157 8.00001 9.5 8.00001C10.3284 8.00001 11 8.67159 11 9.50001C11 10.3284 10.3284 11 9.5 11ZM14.5 16C13.6716 16 13 15.3284 13 14.5C13 13.6716 13.6716 13 14.5 13C15.3284 13 16 13.6716 16 14.5C16 15.3284 15.3284 16 14.5 16Z" fill="#3949AB"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Icons">
<path id="Subtract" fill-rule="evenodd" clip-rule="evenodd" d="M2.58579 5.58579C2 6.17157 2 7.11438 2 9V15C2 16.8856 2 17.8284 2.58579 18.4142C3.17157 19 4.11438 19 6 19H18C19.8856 19 20.8284 19 21.4142 18.4142C22 17.8284 22 16.8856 22 15V9C22 7.11438 22 6.17157 21.4142 5.58579C20.8284 5 19.8856 5 18 5H6C4.11438 5 3.17157 5 2.58579 5.58579ZM5 7C4.44772 7 4 7.44772 4 8C4 8.55228 4.44772 9 5 9H7C7.55228 9 8 8.55228 8 8C8 7.44772 7.55228 7 7 7H5ZM16 16C16 15.4477 16.4477 15 17 15H19C19.5523 15 20 15.4477 20 16C20 16.5523 19.5523 17 19 17H17C16.4477 17 16 16.5523 16 16ZM13 12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12ZM15 12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12C9 10.3431 10.3431 9 12 9C13.6569 9 15 10.3431 15 12Z" fill="#C8D1E1"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 946 B

8
assets/icons/print.svg Normal file
View File

@ -0,0 +1,8 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Icon/print">
<g id="Vector">
<path d="M19 8H18V3H6V8H5C3.34 8 2 9.34 2 11V17H6V21H18V17H22V11C22 9.34 20.66 8 19 8ZM8 5H16V8H8V5ZM16 19H8V15H16V19ZM18 15V13H6V15H4V11C4 10.45 4.45 10 5 10H19C19.55 10 20 10.45 20 11V15H18Z" fill="#334D8F"/>
<path d="M18 12.5C18.5523 12.5 19 12.0523 19 11.5C19 10.9477 18.5523 10.5 18 10.5C17.4477 10.5 17 10.9477 17 11.5C17 12.0523 17.4477 12.5 18 12.5Z" fill="#334D8F"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 525 B

16
assets/icons/qr_code.svg Normal file
View File

@ -0,0 +1,16 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Frame" clip-path="url(#clip0_54_532)">
<path id="Vector" d="M8.12524 3.75H4.37524C4.03007 3.75 3.75024 4.02982 3.75024 4.375V8.125C3.75024 8.47018 4.03007 8.75 4.37524 8.75H8.12524C8.47042 8.75 8.75024 8.47018 8.75024 8.125V4.375C8.75024 4.02982 8.47042 3.75 8.12524 3.75Z" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_2" d="M8.12524 11.25H4.37524C4.03007 11.25 3.75024 11.5298 3.75024 11.875V15.625C3.75024 15.9702 4.03007 16.25 4.37524 16.25H8.12524C8.47042 16.25 8.75024 15.9702 8.75024 15.625V11.875C8.75024 11.5298 8.47042 11.25 8.12524 11.25Z" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_3" d="M15.6252 3.75H11.8752C11.5301 3.75 11.2502 4.02982 11.2502 4.375V8.125C11.2502 8.47018 11.5301 8.75 11.8752 8.75H15.6252C15.9704 8.75 16.2502 8.47018 16.2502 8.125V4.375C16.2502 4.02982 15.9704 3.75 15.6252 3.75Z" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_4" d="M11.2502 11.25V13.75" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_5" d="M11.2502 16.25H13.7502V11.25" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_6" d="M13.7502 12.5H16.2502" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path id="Vector_7" d="M16.2502 15V16.25" stroke="#3949AB" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_54_532">
<rect width="20" height="20" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

3
assets/icons/report.svg Normal file
View File

@ -0,0 +1,3 @@
<svg width="43" height="43" viewBox="0 0 43 43" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.3281 19.7083C38.4292 10.6545 30.7903 3.58333 21.4999 3.58333C12.2095 3.58333 4.57061 10.6545 3.67169 19.7083H11.5827L18.2175 9.75616C19.1184 8.40474 21.2085 8.85334 21.4755 10.4555L24.314 27.4864L28.9675 20.5062C29.2998 20.0077 29.8592 19.7083 30.4582 19.7083H39.3281ZM39.3281 23.2917H31.4171L24.7823 33.2439C23.8814 34.5953 21.7913 34.1467 21.5243 32.5446L18.6858 15.5137L14.0323 22.4939C13.7 22.9923 13.1406 23.2917 12.5416 23.2917H3.67169C4.57061 32.3456 12.2095 39.4167 21.4999 39.4167C30.7903 39.4167 38.4292 32.3456 39.3281 23.2917ZM43 21.5C43 33.3741 33.3741 43 21.5 43C9.62588 43 0 33.3741 0 21.5C0 9.62588 9.62588 0 21.5 0C33.3741 0 43 9.62588 43 21.5Z" fill="#4D4D4D"/>
</svg>

After

Width:  |  Height:  |  Size: 836 B

3
assets/icons/setting.svg Normal file
View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.6161 2C13.3251 1.99971 14.0041 2.28061 14.4983 2.77871C14.9925 3.27681 15.2599 3.94968 15.2383 4.57766L15.2468 4.72535C15.2641 4.87079 15.3124 5.01116 15.3908 5.14054C15.5435 5.39567 15.7935 5.58081 16.0857 5.65514C16.3779 5.72947 16.6882 5.68688 16.9821 5.51839L17.146 5.4355C18.3759 4.86897 19.8511 5.31918 20.5333 6.47928L21.1465 7.52174C21.1627 7.54922 21.1769 7.57762 21.1892 7.60674L21.2461 7.71842C21.7945 8.86519 21.4043 10.2293 20.3624 10.9223L20.1051 11.0807C19.9706 11.1726 19.8585 11.2926 19.7742 11.4368C19.6218 11.6929 19.58 11.998 19.658 12.2844C19.736 12.5708 19.9272 12.8149 20.2174 12.9793L20.3843 13.0841C20.8887 13.4297 21.253 13.9391 21.4119 14.523C21.5912 15.1817 21.495 15.8833 21.1399 16.4804L20.4803 17.557L20.3808 17.7089C19.6058 18.8008 18.1011 19.1344 16.9527 18.485L16.8166 18.4163C16.6746 18.3541 16.5214 18.3199 16.382 18.316C16.0786 18.3146 15.7872 18.432 15.5727 18.6422C15.3582 18.8524 15.2383 19.1379 15.2391 19.4698L15.231 19.6414C15.12 20.9703 13.9845 22 12.6164 22H11.3811C9.93219 22 8.75765 20.8493 8.75912 19.4753L8.75063 19.3277C8.73337 19.1822 8.68504 19.0418 8.6027 18.9057C8.45336 18.65 8.20591 18.4633 7.91538 18.3871C7.62484 18.3109 7.31529 18.3516 7.01565 18.5213L6.83762 18.6084C6.2746 18.8565 5.63953 18.9023 5.04445 18.7366C4.37306 18.5497 3.80539 18.1083 3.47412 17.5224L2.83679 16.4442L2.75197 16.2844C2.17157 15.0841 2.62651 13.6412 3.78115 12.9875L3.88645 12.9228C4.19491 12.7137 4.37987 12.3688 4.37987 12C4.37987 11.599 4.16149 11.2284 3.77948 11.0115L3.62449 10.9141C2.51001 10.1548 2.16949 8.68049 2.85989 7.50696L3.50918 6.46166C4.23128 5.23376 5.83155 4.81017 7.06235 5.50171L7.19559 5.5713C7.33141 5.63238 7.47895 5.6648 7.62101 5.66628C8.24742 5.66634 8.75775 5.17352 8.76724 4.54181L8.77575 4.3478C8.82704 3.74716 9.09307 3.1827 9.52796 2.75457C10.0186 2.27155 10.6855 2 11.3811 2H12.6161ZM12.6164 3.44774H11.3811C11.0786 3.44774 10.7887 3.56581 10.5753 3.77582C10.3863 3.96196 10.2706 4.20741 10.2503 4.43661L10.2368 4.7415C10.1334 6.07087 8.99969 7.11416 7.61326 7.11398C7.25588 7.11034 6.90355 7.03293 6.54427 6.87026L6.3519 6.77085C5.8038 6.46315 5.1049 6.64815 4.78057 7.19925L4.13128 8.24455C3.83377 8.75044 3.98256 9.39466 4.44324 9.70925L4.70395 9.871C5.42196 10.3467 5.85754 11.1429 5.85754 12C5.85754 12.8446 5.43413 13.634 4.70219 14.1296L4.54639 14.2256C4.03354 14.5163 3.83562 15.144 4.07398 15.6383L4.13027 15.7449L4.75952 16.8084C4.90728 17.0696 5.1552 17.2624 5.44842 17.344C5.70831 17.4164 5.98569 17.3964 6.20208 17.3018L6.3108 17.2497C6.91096 16.9066 7.62614 16.8126 8.29737 16.9886C8.96861 17.1645 9.54028 17.5959 9.87937 18.1768C10.0618 18.478 10.1772 18.8132 10.2219 19.1985L10.2421 19.552C10.3043 20.1145 10.7905 20.5523 11.3811 20.5523H12.6164C13.2137 20.5523 13.7099 20.1023 13.7565 19.5511L13.7621 19.4421C13.7588 18.7585 14.0345 18.1019 14.5279 17.6185C15.0212 17.1351 15.6914 16.865 16.4053 16.8686C16.7556 16.8778 17.1004 16.9547 17.4528 17.11L17.7687 17.2682C18.2647 17.4814 18.8529 17.3258 19.1511 16.9067L19.2236 16.7957L19.868 15.7436C20.0203 15.4875 20.0621 15.1824 19.9841 14.896C19.915 14.6422 19.7566 14.4207 19.5645 14.2882L19.2922 14.1195C18.7716 13.7748 18.3932 13.2563 18.2302 12.6574C18.0509 11.9987 18.1471 11.2971 18.4946 10.7126C18.6849 10.3872 18.9464 10.1073 19.2873 9.87532L19.448 9.77613C19.9601 9.4827 20.1578 8.85504 19.9212 8.35884L19.8505 8.22529L19.8378 8.19726L19.253 7.20208C18.9764 6.73175 18.4008 6.52853 17.9125 6.6891L17.8015 6.73265L17.6983 6.78415C17.1001 7.12941 16.3863 7.22736 15.7143 7.05641C15.0423 6.88546 14.4673 6.45965 14.1181 5.87616C13.9357 5.57504 13.8203 5.23984 13.7756 4.85454L13.7624 4.60249C13.7713 4.29923 13.6546 4.00536 13.4387 3.78783C13.2229 3.57029 12.9264 3.44774 12.6164 3.44774ZM12.0032 8.73182C13.8455 8.73182 15.339 10.195 15.339 12C15.339 13.805 13.8455 15.2682 12.0032 15.2682C10.161 15.2682 8.66748 13.805 8.66748 12C8.66748 10.195 10.161 8.73182 12.0032 8.73182ZM12.0032 10.1796C10.977 10.1796 10.1452 10.9946 10.1452 12C10.1452 13.0054 10.977 13.8204 12.0032 13.8204C13.0294 13.8204 13.8613 13.0054 13.8613 12C13.8613 10.9946 13.0294 10.1796 12.0032 10.1796Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.554 7L13.7788 4.1092C13.3963 3.71079 13.4093 3.07775 13.8077 2.69528C14.2061 2.3128 14.8391 2.32572 15.2216 2.72413L19.2216 6.8908C19.2549 6.92552 19.2853 6.96203 19.3126 7H21.8197C21.9299 7 22.0399 7.0091 22.1485 7.02721C23.2381 7.2088 23.9741 8.23926 23.7925 9.3288L22.2651 18.4932C22.024 19.9398 20.7725 21 19.306 21H4.69446C3.22794 21 1.97637 19.9398 1.73528 18.4932L0.207876 9.3288C0.189766 9.22013 0.180664 9.11016 0.180664 9C0.180664 7.89543 1.07609 7 2.18066 7H4.68781C4.71515 6.96203 4.74548 6.92552 4.77882 6.8908L8.77882 2.72413C9.16129 2.32572 9.79432 2.3128 10.1927 2.69528C10.5911 3.07775 10.6041 3.71079 10.2216 4.1092L7.44642 7H16.554ZM2.18066 9L3.70806 18.1644C3.78843 18.6466 4.20562 19 4.69446 19H19.306C19.7948 19 20.212 18.6466 20.2923 18.1644L21.8197 9H2.18066ZM12.0002 11C12.5525 11 13.0002 11.4477 13.0002 12V16C13.0002 16.5523 12.5525 17 12.0002 17C11.4479 17 11.0002 16.5523 11.0002 16V12C11.0002 11.4477 11.4479 11 12.0002 11ZM7.0002 11C7.55249 11 8.0002 11.4477 8.0002 12V16C8.0002 16.5523 7.55249 17 7.0002 17C6.44792 17 6.0002 16.5523 6.0002 16V12C6.0002 11.4477 6.44792 11 7.0002 11ZM17.0002 11C17.5525 11 18.0002 11.4477 18.0002 12V16C18.0002 16.5523 17.5525 17 17.0002 17C16.4479 17 16.0002 16.5523 16.0002 16V12C16.0002 11.4477 16.4479 11 17.0002 11Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

5
assets/icons/snack.svg Normal file
View File

@ -0,0 +1,5 @@
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Frame">
<path id="Vector" d="M26.0001 11.0001V3H20.0001V5.0001H18V3H12V7.0002H9.9999V5.0001H3.9999V11.0001H3L5.4474 24.0519C5.751 25.6728 7.35 27 9 27H21C22.6503 27 24.249 25.6728 24.5529 24.0519L27 11.0001H26.0001ZM21.9999 5.0001H24V11.4366C23.3673 11.6895 22.6953 11.9061 21.9999 12.0978V5.0001ZM18 7.0002H20.0001V12.5544C19.3372 12.6747 18.6701 12.77 18 12.84V7.0002ZM14.0001 5.0001H16.0002V12.9768C15.3342 12.9996 14.6664 12.9996 14.0001 12.9768V5.0001ZM9.9999 9H12V12.84C11.3299 12.77 10.6628 12.6747 9.9999 12.5544V9ZM6 7.0002H8.0001V12.0978C7.3053 11.9061 6.6333 11.6895 6 11.4366V7.0002ZM21 25.0002H9C8.3112 25.0002 7.5399 24.3603 7.413 23.6835L7.4046 23.6388C12.0252 21.5001 17.9733 21.5001 22.5957 23.6388L22.587 23.6835C22.4598 24.3603 21.6885 25.0002 21 25.0002ZM22.9767 21.6093C18.0372 19.4784 11.9631 19.4784 7.0245 21.6093L5.4819 13.3839C8.2062 14.4315 11.5263 15 15 15C18.4746 15 21.7938 14.4315 24.5187 13.3842L22.9767 21.6093Z" fill="#3949AB"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

4
assets/icons/success.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="80" height="80" rx="40" fill="#C7D0EB"/>
<path d="M26.6663 40L36.6663 50L53.333 30" stroke="#3949AB" stroke-width="10" stroke-linecap="round"/>
</svg>

After

Width:  |  Height:  |  Size: 260 B

BIN
assets/images/drink1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 514 KiB

BIN
assets/images/drink2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 502 KiB

BIN
assets/images/drink3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 482 KiB

BIN
assets/images/drink4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 KiB

BIN
assets/images/drink5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 KiB

BIN
assets/images/drink6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 488 KiB

BIN
assets/images/drink7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 444 KiB

BIN
assets/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

BIN
assets/images/manage_qr.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

BIN
assets/images/menu1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
assets/images/menu10.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 435 KiB

BIN
assets/images/menu11.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

BIN
assets/images/menu12.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 665 KiB

BIN
assets/images/menu13.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 410 KiB

BIN
assets/images/menu14.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 657 KiB

BIN
assets/images/menu2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 549 KiB

BIN
assets/images/menu3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 420 KiB

BIN
assets/images/menu4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 KiB

BIN
assets/images/menu5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 KiB

BIN
assets/images/menu6.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 KiB

BIN
assets/images/menu7.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 KiB

BIN
assets/images/menu8.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 498 KiB

BIN
assets/images/product1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 595 KiB

BIN
assets/images/product2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

BIN
assets/images/product3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

BIN
assets/images/product4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
assets/logo/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
assets/logo/logo2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
assets/logo/logo3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 258 KiB

Some files were not shown because too many files have changed in this diff Show More