Skip to content

Commit

Permalink
AR7881: Dashboard Branding Update (#390)
Browse files Browse the repository at this point in the history
* Manage Page Updated

* Manage + ConfigureHome Implemented

* Dashboard Design System Implemented

* Dashboard Design Dev Changes

* Dashboard Design Dev Changes

* Dashboard Design Dev Changes

* Reviewed Changes

* Minor Changes

* Minor Changes

* QA Fix Push

* App Login Updated

* QA Fixes

* QA Fixes

* Create App Bug Fixes

* QA Fixes

* Notification QA Fixes

* Fix login page issues

* OTP and Login QA Fixes

* OTP and Login QA Fixes

* OTP and Login QA Fixes

* Fix vue routing issue

- Remove unused imports
- Fix component naming
- Avoid multiroot page components, so transition gets only 1 root to play with
- fix get-mau

* OTP and Login QA Fixes

* Windows Flow Improved

* Design Tweaks

* Design Tweaks

* Made Headings and Text Field Consistent

* Social Auth Page Rebranded

* Rebranded Create App Form

* Fixed AR-8118 & 8119 (Create App Form and Add Chain Form Layout Rebranded

---------

Co-authored-by: shrinathprabhu <[email protected]>
  • Loading branch information
muktanshumishra24 and shrinathprabhu authored Jun 3, 2024
1 parent 12f9914 commit 584d055
Show file tree
Hide file tree
Showing 104 changed files with 1,196 additions and 824 deletions.
17 changes: 6 additions & 11 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts" setup>
import { onBeforeMount, ref } from 'vue'
import { useRouter } from 'vue-router'
import { useRouter, RouterView } from 'vue-router'
import FullScreenLoader from '@/components/FullScreenLoader.vue'
import VToast from '@/components/lib/VToast/VToast.vue'
Expand Down Expand Up @@ -39,15 +39,11 @@ onBeforeMount(async () => {

<template>
<div class="root">
<router-view
v-if="isAuthLoaded"
v-slot="{ Component }"
style="min-height: 100vh"
>
<transition name="fade" mode="out-in">
<component :is="Component" />
</transition>
</router-view>
<RouterView v-if="isAuthLoaded" v-slot="{ Component }" class="min-h-screen">
<Transition name="fade" mode="out-in">
<Component :is="Component" />
</Transition>
</RouterView>
<FullScreenLoader
v-if="loaderStore.isLoading || !isAuthLoaded"
:message="loaderStore.message"
Expand Down Expand Up @@ -79,7 +75,6 @@ onBeforeMount(async () => {
display: inline-block;
font-size: 1.125rem;
font-weight: 600;
text-transform: uppercase;
}
.banner h5 {
Expand Down
26 changes: 14 additions & 12 deletions src/assets/arcana-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/biconomy-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 11 additions & 4 deletions src/assets/dapp-fallback.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/fonts/nohemi/Nohemi-Bold.woff2
Binary file not shown.
Binary file added src/assets/fonts/nohemi/Nohemi-Medium.woff2
Binary file not shown.
Binary file added src/assets/fonts/nohemi/Nohemi-Regular.woff2
Binary file not shown.
Binary file added src/assets/fonts/nohemi/Nohemi-SemiBold.woff2
Binary file not shown.
3 changes: 3 additions & 0 deletions src/assets/iconography/arrow-right-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/assets/iconography/arrow-right.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/iconography/arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/assets/iconography/back.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/iconography/bug.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions src/assets/iconography/close.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/assets/iconography/copy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/assets/iconography/dashboard.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/assets/iconography/delete.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/assets/iconography/docs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/assets/iconography/invoices.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/assets/iconography/manage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/assets/iconography/notification.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 584d055

Please sign in to comment.