diff --git a/.github/workflows/CI_linux.yml b/.github/workflows/CI_linux.yml
new file mode 100644
index 0000000..bcddfc9
--- /dev/null
+++ b/.github/workflows/CI_linux.yml
@@ -0,0 +1,29 @@
+name: CI_Integration_Linux
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ branches: [ "main" ]
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ node-version: [14.x]
+ steps:
+ - uses: actions/checkout@v3
+ - name: Configuring Git LF Settings
+ run: |
+ git config --global core.autocrlf false
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ - name: Build and Test
+ run: |
+ npm install
+ npm run build-and-lint
+ npm run test
+ - name: Creating .vsix
+ run: |
+ npm run package
diff --git a/.github/workflows/CI_mac.yml b/.github/workflows/CI_mac.yml
new file mode 100644
index 0000000..7d272da
--- /dev/null
+++ b/.github/workflows/CI_mac.yml
@@ -0,0 +1,29 @@
+name: CI_Integration_MacOS
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ branches: [ "main" ]
+jobs:
+ build:
+ runs-on: macos-latest
+ strategy:
+ matrix:
+ node-version: [14.x]
+ steps:
+ - uses: actions/checkout@v3
+ - name: Configuring Git LF Settings
+ run: |
+ git config --global core.autocrlf false
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ - name: Build and Test
+ run: |
+ npm install
+ npm run build-and-lint
+ npm run test
+ - name: Creating .vsix
+ run: |
+ npm run package
diff --git a/.github/workflows/CI_windows.yml b/.github/workflows/CI_windows.yml
new file mode 100644
index 0000000..ad59142
--- /dev/null
+++ b/.github/workflows/CI_windows.yml
@@ -0,0 +1,29 @@
+name: CI_Integration_Windows
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ branches: [ "main" ]
+jobs:
+ build:
+ runs-on: windows-latest
+ strategy:
+ matrix:
+ node-version: [14.x]
+ steps:
+ - uses: actions/checkout@v3
+ - name: Configuring Git LF Settings
+ run: |
+ git config --global core.autocrlf false
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ - name: Build and Test
+ run: |
+ npm install
+ npm run build-and-lint
+ npm run test
+ - name: Creating .vsix
+ run: |
+ npm run package
diff --git a/.github/workflows/awdev.yml b/.github/workflows/awdev.yml
new file mode 100644
index 0000000..448d289
--- /dev/null
+++ b/.github/workflows/awdev.yml
@@ -0,0 +1,23 @@
+name: NodeJS with Awdev
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ branches: [ "main" ]
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ node-version: [12.x, 14.x, 16.x]
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ - name: Build
+ run: |
+ npm install
+ npx webpack
diff --git a/.github/workflows/azure-staticwebapp.yml b/.github/workflows/azure-staticwebapp.yml
new file mode 100644
index 0000000..3e7995b
--- /dev/null
+++ b/.github/workflows/azure-staticwebapp.yml
@@ -0,0 +1,65 @@
+# This workflow will build and push a web application to an Azure Static Web App when you change your code.
+#
+# This workflow assumes you have already created the target Azure Static Web App.
+# For instructions see https://docs.microsoft.com/azure/static-web-apps/get-started-portal?tabs=vanilla-javascript
+#
+# To configure this workflow:
+#
+# 1. Set up a secret in your repository named AZURE_STATIC_WEB_APPS_API_TOKEN with the value of your Static Web Apps deployment token.
+# For instructions on obtaining the deployment token see: https://docs.microsoft.com/azure/static-web-apps/deployment-token-management
+#
+# 3. Change the values for the APP_LOCATION, API_LOCATION and APP_ARTIFACT_LOCATION, AZURE_STATIC_WEB_APPS_API_TOKEN environment variables (below).
+# For instructions on setting up the appropriate configuration values go to https://docs.microsoft.com/azure/static-web-apps/front-end-frameworks
+name: Deploy web app to Azure Static Web Apps
+on:
+ push:
+ branches: [ "main" ]
+ pull_request:
+ types: [opened, synchronize, reopened, closed]
+ branches: [ "main" ]
+# Environment variables available to all jobs and steps in this workflow
+env:
+ APP_LOCATION: "/" # location of your client code
+ API_LOCATION: "api" # location of your api source code - optional
+ APP_ARTIFACT_LOCATION: "build" # location of client code build output
+ AZURE_STATIC_WEB_APPS_API_TOKEN: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }} # secret containing deployment token for your static web app
+permissions:
+ contents: read
+jobs:
+ build_and_deploy_job:
+ permissions:
+ contents: read # for actions/checkout to fetch code
+ pull-requests: write # for Azure/static-web-apps-deploy to comment on PRs
+ if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
+ runs-on: ubuntu-latest
+ name: Build and Deploy Job
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ submodules: true
+ - name: Build And Deploy
+ id: builddeploy
+ uses: Azure/static-web-apps-deploy@v1
+ with:
+ azure_static_web_apps_api_token: ${{ env.AZURE_STATIC_WEB_APPS_API_TOKEN }} # secret containing api token for app
+ repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
+ action: "upload"
+ ###### Repository/Build Configurations - These values can be configured to match you app requirements. ######
+ # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
+ app_location: ${{ env.APP_LOCATION }}
+ api_location: ${{ env.API_LOCATION }}
+ app_artifact_location: ${{ env.APP_ARTIFACT_LOCATION }}
+ ###### End of Repository/Build Configurations ######
+ close_pull_request_job:
+ permissions:
+ contents: none
+ if: github.event_name == 'pull_request' && github.event.action == 'closed'
+ runs-on: ubuntu-latest
+ name: Close Pull Request Job
+ steps:
+ - name: Close Pull Request
+ id: closepullrequest
+ uses: Azure/static-web-apps-deploy@v1
+ with:
+ azure_static_web_apps_api_token: ${{ env.AZURE_STATIC_WEB_APPS_API_TOKEN }} # secret containing api token for app
+ action: "close"
diff --git a/.github/workflows/azure-webapps-java-jar.yml b/.github/workflows/azure-webapps-java-jar.yml
new file mode 100644
index 0000000..244562b
--- /dev/null
+++ b/.github/workflows/azure-webapps-java-jar.yml
@@ -0,0 +1,96 @@
+
+zonenubia
+/
+zonenubia.github.io
+Public
+Code
+Issues
+Pull requests
+1
+Actions
+Projects
+Wiki
+Security
+36
+Insights
+Settings
+Breadcrumbszonenubia.github.io/.github/workflows
+/azure-webapps-java-jar.yml
+Latest commit
+zonenubia
+zonenubia
+8 hours ago
+History
+79 lines (67 loc) · 2.85 KB
+File metadata and controls
+
+Code
+
+Blame
+# This workflow will build and push a Java application to an Azure Web App when a commit is pushed to your default branch.
+#
+# This workflow assumes you have already created the target Azure App Service web app.
+# For instructions see https://docs.microsoft.com/en-us/azure/app-service/quickstart-java?tabs=javase&pivots=platform-linux
+#
+# To configure this workflow:
+#
+# 1. Download the Publish Profile for your Azure Web App. You can download this file from the Overview page of your Web App in the Azure Portal.
+# For more information: https://docs.microsoft.com/en-us/azure/app-service/deploy-github-actions?tabs=applevel#generate-deployment-credentials
+#
+# 2. Create a secret in your repository named AZURE_WEBAPP_PUBLISH_PROFILE, paste the publish profile contents as the value of the secret.
+# For instructions on obtaining the publish profile see: https://docs.microsoft.com/azure/app-service/deploy-github-actions#configure-the-github-secret
+#
+# 3. Change the value for the AZURE_WEBAPP_NAME. Optionally, change the JAVA_VERSION environment variable below.
+#
+# For more information on GitHub Actions for Azure: https://github.com/Azure/Actions
+# For more information on the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
+# For more samples to get started with GitHub Action workflows to deploy to Azure: https://github.com/Azure/actions-workflow-samples
+name: Build and deploy JAR app to Azure Web App
+env:
+ AZURE_WEBAPP_NAME: your-app-name # set this to the name of your Azure Web App
+ JAVA_VERSION: '11' # set this to the Java version to use
+ DISTRIBUTION: zulu # set this to the Java distribution
+on:
+ push:
+ branches: [ "main" ]
+ workflow_dispatch:
+permissions:
+ contents: read
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up Java version
+ uses: actions/setup-java@v3.0.0
+ with:
+ java-version: ${{ env.JAVA_VERSION }}
+ distribution: ${{ env.DISTRIBUTION }}
+ cache: 'maven'
+ - name: Build with Maven
+ run: mvn clean install
+ - name: Upload artifact for deployment job
+ uses: actions/upload-artifact@v3
+ with:
+ name: java-app
+ path: '${{ github.workspace }}/target/*.jar'
+ deploy:
+ permissions:
+ contents: none
+ runs-on: ubuntu-latest
+ needs: build
+ environment:
+ name: 'Development'
+ url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
+ steps:
+ - name: Download artifact from build job
+ uses: actions/download-artifact@v3
+ with:
+ name: java-app
+ - name: Deploy to Azure Web App
+ id: deploy-to-webapp
+ uses: azure/webapps-deploy@v2
+ with:
+ app-name: ${{ env.AZURE_WEBAPP_NAME }}
+ publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
+ package: '*.jar'
diff --git a/.github/workflows/azure-webapps-node.yml b/.github/workflows/azure-webapps-node.yml
new file mode 100644
index 0000000..f8d41d9
--- /dev/null
+++ b/.github/workflows/azure-webapps-node.yml
@@ -0,0 +1,78 @@
+# This workflow will build and push a node.js application to an Azure Web App when a commit is pushed to your default branch.
+#
+# This workflow assumes you have already created the target Azure App Service web app.
+# For instructions see https://docs.microsoft.com/en-us/azure/app-service/quickstart-nodejs?tabs=linux&pivots=development-environment-cli
+#
+# To configure this workflow:
+#
+# 1. Download the Publish Profile for your Azure Web App. You can download this file from the Overview page of your Web App in the Azure Portal.
+# For more information: https://docs.microsoft.com/en-us/azure/app-service/deploy-github-actions?tabs=applevel#generate-deployment-credentials
+#
+# 2. Create a secret in your repository named AZURE_WEBAPP_PUBLISH_PROFILE, paste the publish profile contents as the value of the secret.
+# For instructions on obtaining the publish profile see: https://docs.microsoft.com/azure/app-service/deploy-github-actions#configure-the-github-secret
+#
+# 3. Change the value for the AZURE_WEBAPP_NAME. Optionally, change the AZURE_WEBAPP_PACKAGE_PATH and NODE_VERSION environment variables below.
+#
+# For more information on GitHub Actions for Azure: https://github.com/Azure/Actions
+# For more information on the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
+# For more samples to get started with GitHub Action workflows to deploy to Azure: https://github.com/Azure/actions-workflow-samples
+
+on:
+ push:
+ branches: [ "main" ]
+ workflow_dispatch:
+
+env:
+ AZURE_WEBAPP_NAME: your-app-name # set this to your application's name
+ AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root
+ NODE_VERSION: '14.x' # set this to the node version to use
+
+permissions:
+ contents: read
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Set up Node.js
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ env.NODE_VERSION }}
+ cache: 'npm'
+
+ - name: npm install, build, and test
+ run: |
+ npm install
+ npm run build --if-present
+ npm run test --if-present
+
+ - name: Upload artifact for deployment job
+ uses: actions/upload-artifact@v3
+ with:
+ name: node-app
+ path: .
+
+ deploy:
+ permissions:
+ contents: none
+ runs-on: ubuntu-latest
+ needs: build
+ environment:
+ name: 'Development'
+ url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
+
+ steps:
+ - name: Download artifact from build job
+ uses: actions/download-artifact@v3
+ with:
+ name: node-app
+
+ - name: 'Deploy to Azure WebApp'
+ id: deploy-to-webapp
+ uses: azure/webapps-deploy@v2
+ with:
+ app-name: ${{ env.AZURE_WEBAPP_NAME }}
+ publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
+ package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}
diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml
new file mode 100644
index 0000000..687eb10
--- /dev/null
+++ b/.github/workflows/deploy-preview.yml
@@ -0,0 +1,19 @@
+name: Deploy to Preview Channel
+on:
+ pull_request:
+ # Optionally configure to run only for specific files. For example:
+ # paths:
+ # - "website/**"
+jobs:
+ build_and_preview:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ # Add any build steps here. For example:
+ # - run: npm ci && npm run build
+ - uses: FirebaseExtended/action-hosting-deploy@v0
+ with:
+ repoToken: "${{ secrets.GITHUB_TOKEN }}"
+ firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}"
+ expires: 30d
+ projectId: your-Firebase-project-ID
diff --git a/.github/workflows/jekyll-gh-pages.ymly b/.github/workflows/jekyll-gh-pages.ymly
new file mode 100644
index 0000000..02e9695
--- /dev/null
+++ b/.github/workflows/jekyll-gh-pages.ymly
@@ -0,0 +1,45 @@
+# Sample workflow for building and deploying a Jekyll site to GitHub Pages
+name: Deploy Jekyll with GitHub Pages dependencies preinstalled
+on:
+ # Runs on pushes targeting the default branch
+ push:
+ branches: ["main"]
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
+# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
+concurrency:
+ group: "pages"
+ cancel-in-progress: false
+jobs:
+ # Build job
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Pages
+ uses: actions/configure-pages@v3
+ - name: Build with Jekyll
+ uses: actions/jekyll-build-pages@v1
+ with:
+ source: ./
+ destination: ./_site
+ - name: Upload artifact
+ uses: actions/upload-pages-artifact@v1
+ # Deployment job
+ deploy:
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: ubuntu-latest
+ needs: build
+ steps:
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v2
diff --git a/.github/workflows/replace.io b/.github/workflows/replace.io
new file mode 100644
index 0000000..c9d81ff
--- /dev/null
+++ b/.github/workflows/replace.io
@@ -0,0 +1 @@
+window.location.replace(‘https://www.awdev.my.id/’);
diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml
new file mode 100644
index 0000000..716f8ce
--- /dev/null
+++ b/.github/workflows/static.yml
@@ -0,0 +1,38 @@
+# Simple workflow for deploying static content to GitHub Pages
+name: Deploy static content to Pages
+on:
+ # Runs on pushes targeting the default branch
+ push:
+ branches: ["main"]
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
+# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
+concurrency:
+ group: "pages"
+ cancel-in-progress: false
+jobs:
+ # Single deploy job since we're just deploying
+ deploy:
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Pages
+ uses: actions/configure-pages@v3
+ - name: Upload artifact
+ uses: actions/upload-pages-artifact@v1
+ with:
+ # Upload entire repository
+ path: '.'
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v2
diff --git a/.vscode /launch.json b/.vscode /launch.json
new file mode 100644
index 0000000..4c5e0ec
--- /dev/null
+++ b/.vscode /launch.json
@@ -0,0 +1,133 @@
+{
+ "version": "1.0.0",
+ "configurations": [
+ {
+ "name": "Next.js: debug server-side",
+ "type": "node-terminal",
+ "request": "launch",
+ "command": "npm run dev"
+ },
+ {
+ "name": "Next.js: debug client-side",
+ "type": "chrome",
+ "request": "launch",
+ "url": "http://localhost:3000"
+ },
+ {
+ "name": "Next.js: debug full stack",
+ "type": "node-terminal",
+ "request": "launch",
+ "command": "npm run dev",
+ "serverReadyAction": {
+ "pattern": "started server on .+, url: (https?://.+)",
+ "uriFormat": "%s",
+ "action": "debugWithChrome"
+ }
+ }
+ ]
+}
+// A launch configuration that compiles the extension and then opens it inside a new window
+{
+ "version": "0.1.0",
+ "configurations": [
+ {
+ "name": "Launch Extension",
+ "type": "extensionHost",
+ "request": "launch",
+ "runtimeExecutable": "${execPath}",
+ "args": [
+ "--extensionDevelopmentPath=${workspaceRoot}"
+ ],
+ "stopOnEntry": false,
+ "sourceMaps": true,
+ "outFiles": [
+ "${workspaceRoot}/out/src/**/*.js"
+ ],
+ "preLaunchTask": "build"
+ },
+ {
+ "name": "Launch Tests",
+ "type": "extensionHost",
+ "request": "launch",
+ "runtimeExecutable": "${execPath}",
+ "args": [
+ "--extensionDevelopmentPath=${workspaceRoot}",
+ "--extensionTestsPath=${workspaceRoot}/out/test"
+ ],
+ "stopOnEntry": false,
+ "sourceMaps": true,
+ "outFiles": [
+ "${workspaceRoot}/out/test/**/*.js"
+ ],
+ "preLaunchTask": "build"
+ }
+ ]
+}
+{
+ "version": "0.1.0",
+ "configurations": [
+ {
+ "name": "Launch Extension",
+ "type": "extensionHost",
+ "request": "launch",
+ "runtimeExecutable": "${execPath}",
+ "args": [
+ "--extensionDevelopmentPath=${workspaceFolder}"
+ ],
+ "stopOnEntry": false,
+ "sourceMaps": true,
+ "outFiles": [
+ "${workspaceFolder}/out/**/*.js"
+ ],
+ "preLaunchTask": "npm: build"
+ },
+ {
+ "name": "Launch Extension Edge Watch",
+ "type": "extensionHost",
+ "request": "launch",
+ "runtimeExecutable": "${execPath}",
+ "args": [
+ "--extensionDevelopmentPath=${workspaceFolder}"
+ ],
+ "stopOnEntry": false,
+ "sourceMaps": true,
+ "outFiles": [
+ "${workspaceFolder}/out/**/*.js"
+ ],
+ "preLaunchTask": "npm: build-edge-watch"
+ },
+ {
+ "name": "Launch Extension Without Build",
+ "type": "extensionHost",
+ "request": "launch",
+ "runtimeExecutable": "${execPath}",
+ "args": [
+ "--extensionDevelopmentPath=${workspaceFolder}"
+ ],
+ "stopOnEntry": false,
+ "sourceMaps": true,
+ "outFiles": [
+ "${workspaceFolder}/out/**/*.js"
+ ],
+ },
+ {
+ "name": "Launch Tests",
+ "type": "node",
+ "request": "launch",
+ "program": "${workspaceRoot}/node_modules/jest/bin/jest.js",
+ "args": [
+ "--config",
+ "package.json",
+ "--runInBand"
+ ],
+ "runtimeArgs": [
+ "--nolazy"
+ ],
+ "console": "internalConsole",
+ "env": {
+ "NODE_ENV": "test"
+ },
+ "smartStep": false
+ }
+ ]
+}
diff --git a/CNAME b/CNAME
deleted file mode 100644
index a7bbdf8..0000000
--- a/CNAME
+++ /dev/null
@@ -1 +0,0 @@
-awdev.my.id
\ No newline at end of file
diff --git a/app/AWDEV.apk b/app/AWDEV.apk
deleted file mode 100644
index 8e09e84..0000000
Binary files a/app/AWDEV.apk and /dev/null differ
diff --git a/app/app2626488-e48vt5.apk b/app/app2626488-e48vt5.apk
deleted file mode 100644
index 99344ef..0000000
Binary files a/app/app2626488-e48vt5.apk and /dev/null differ
diff --git a/app/app2626910-e48vt5.apk b/app/app2626910-e48vt5.apk
deleted file mode 100644
index 6f548ac..0000000
Binary files a/app/app2626910-e48vt5.apk and /dev/null differ
diff --git a/app/awdev-2-2.aab.zip b/app/awdev-2-2.aab.zip
deleted file mode 100644
index 4bf9ec0..0000000
Binary files a/app/awdev-2-2.aab.zip and /dev/null differ
diff --git a/app/awdev-2-2.apk b/app/awdev-2-2.apk
deleted file mode 100644
index d66a7d5..0000000
Binary files a/app/awdev-2-2.apk and /dev/null differ
diff --git a/app/awdev-pro.apk b/app/awdev-pro.apk
deleted file mode 100644
index 065cc23..0000000
Binary files a/app/awdev-pro.apk and /dev/null differ
diff --git a/app/htmleditor-2-1.aab.zip b/app/htmleditor-2-1.aab.zip
deleted file mode 100644
index 2c2463e..0000000
Binary files a/app/htmleditor-2-1.aab.zip and /dev/null differ
diff --git a/app/htmleditor-2-1.apk b/app/htmleditor-2-1.apk
deleted file mode 100644
index e4ee5b6..0000000
Binary files a/app/htmleditor-2-1.apk and /dev/null differ
diff --git a/app/islami.apk b/app/islami.apk
deleted file mode 100644
index b3a0046..0000000
Binary files a/app/islami.apk and /dev/null differ
diff --git a/assets/img/education/ASU.jpg b/assets/img/education/ASU.jpg
index 86059e6..e437eff 100644
Binary files a/assets/img/education/ASU.jpg and b/assets/img/education/ASU.jpg differ
diff --git a/assets/img/education/au.png b/assets/img/education/au.png
index 0358524..b8f17f2 100644
Binary files a/assets/img/education/au.png and b/assets/img/education/au.png differ
diff --git a/index.html b/index.html
index 2af1b7d..dc3caea 100644
--- a/index.html
+++ b/index.html
@@ -4,6 +4,11 @@