-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Add appzi script * chore: Add survey link * chore: Add button on all preview modals * chore: Undo change * chore: Update feedback card in tx flows * Appzi UI tweaks * Updated 3rd party services * Fixed bug to make nav action buttons square * Better pattern matching for a consistent modal bg * Updated policies --------- Co-authored-by: pkattera <[email protected]>
- Loading branch information
1 parent
77ba717
commit c825160
Showing
29 changed files
with
353 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<template> | ||
<svg | ||
width="24" | ||
height="24" | ||
xmlns="http://www.w3.org/2000/svg" | ||
fill="none" | ||
viewBox="0 0 25 25" | ||
> | ||
<g clip-path="url(#a)"> | ||
<path | ||
fill="url(#b)" | ||
fill-rule="evenodd" | ||
d="M15.406 4.01a3 3 0 0 0-5.058 2.183v1l-.007.202a2.997 2.997 0 0 1-1.492 2.397 1 1 0 0 0-.5.866l-.001 9.536.007.117a1 1 0 0 0 .993.883h8l.164.008c1.308.015 2.429-1.155 2.81-2.78l1.006-5.033.02-.195-.005-.177-.015-.173a3 3 0 0 0-2.98-2.65h-2v-4l-.005-.177a3 3 0 0 0-.937-2.006Zm-9.394 6.436a1 1 0 0 0-.664-.252h-1l-.15.004a2 2 0 0 0-1.85 1.995v7l.005.15a2 2 0 0 0 1.995 1.85h1l.117-.007a1 1 0 0 0 .883-.992v-9l-.007-.118a1 1 0 0 0-.329-.63Z" | ||
clip-rule="evenodd" | ||
/> | ||
</g> | ||
<defs> | ||
<linearGradient | ||
id="b" | ||
x1="11.848" | ||
x2="11.848" | ||
y1="3.193" | ||
y2="21.202" | ||
gradientUnits="userSpaceOnUse" | ||
> | ||
<stop stop-color="#F21BF6" /> | ||
<stop offset="1" stop-color="#BF51F3" /> | ||
</linearGradient> | ||
<clipPath id="a"><path fill="#fff" d="M.348.193h24v24h-24z" /></clipPath> | ||
</defs> | ||
</svg> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<script lang="ts" setup> | ||
import useBreakpoints from '@/composables/useBreakpoints'; | ||
import { useAppzi } from '@/composables/useAppzi'; | ||
/** | ||
* COMPOSABLES | ||
*/ | ||
const { isMobile } = useBreakpoints(); | ||
const { openNpsModal } = useAppzi(); | ||
</script> | ||
|
||
<template> | ||
<BalBtn | ||
color="white" | ||
:size="isMobile ? 'md' : 'sm'" | ||
:circle="isMobile" | ||
class="w-9 !px-0" | ||
@click="openNpsModal" | ||
> | ||
<ThumbsUpIcon /> | ||
</BalBtn> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<script lang="ts" setup> | ||
import { useAppzi } from '@/composables/useAppzi'; | ||
import useDarkMode from '@/composables/useDarkMode'; | ||
const { darkMode } = useDarkMode(); | ||
const { openNpsModal } = useAppzi(); | ||
</script> | ||
|
||
<template> | ||
<BalHStack | ||
class="p-2 bg-gray-100 dark:bg-gray-800 rounded-lg" | ||
justify="between" | ||
align="center" | ||
> | ||
<BalHStack align="center" spacing="sm"> | ||
<BalIcon name="thumbs-up" size="sm" /> | ||
<span class="text-xs font-bold">How did we do?</span> | ||
</BalHStack> | ||
|
||
<BalBtn size="xs" :color="darkMode ? 'gray' : 'white'" @click="openNpsModal" | ||
>Give feedback</BalBtn | ||
> | ||
</BalHStack> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
c825160
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
beta-app-v2 – ./
beta-app-v2.vercel.app
beta-app-v2-balancer.vercel.app
beta.balancer.fi
beta-app-v2-git-develop-balancer.vercel.app