Skip to content

Commit

Permalink
ci(release): publish latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-happy-puppy committed May 2, 2024
1 parent a462815 commit 7e5fa89
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 30 deletions.
17 changes: 11 additions & 6 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
IPFS hash of the deployment:
- CIDv0: `QmXVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w`
- CIDv1: `bafybeieidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea`
- CIDv0: `QmUBdzrLg5h8kHRC9XFen4a7RC23X23H5Bqo3489vw4Rpe`
- CIDv1: `bafybeicw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um`

The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).

Expand All @@ -10,10 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs.

IPFS gateways:
- https://bafybeieidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea.ipfs.dweb.link/
- https://bafybeieidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea.ipfs.cf-ipfs.com/
- [ipfs://QmXVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w/](ipfs://QmXVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w/)
- https://bafybeicw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um.ipfs.dweb.link/
- https://bafybeicw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um.ipfs.cf-ipfs.com/
- [ipfs://QmUBdzrLg5h8kHRC9XFen4a7RC23X23H5Bqo3489vw4Rpe/](ipfs://QmUBdzrLg5h8kHRC9XFen4a7RC23X23H5Bqo3489vw4Rpe/)

### 5.25.5 (2024-04-30)
### 5.25.6 (2024-05-02)


### Bug Fixes

* **web:** hotfix performance issue with floating text on homepage (#7952) eca0be7


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.25.5
web/5.25.6
37 changes: 14 additions & 23 deletions apps/web/src/pages/Landing/components/animations.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
import { motion } from 'framer-motion'
import styled, { css, keyframes } from 'styled-components'

type RiseInProps = {
delay?: number
children?: React.ReactNode
}

const riseInAnimation = keyframes`
0% {
opacity: 0;
Expand Down Expand Up @@ -41,24 +36,20 @@ export const RiseIn = styled.span<{ delay?: number }>`
${RiseInStyles}
`

export const Hover = (props: RiseInProps) => {
return (
<motion.div
animate={{
y: ['-4px', '4px', '-4px'],
opacity: [0.5, 1, 0.5],
}}
transition={{
duration: 2,
repeat: Infinity, // repeat animation forever
ease: 'easeInOut',
}}
style={{ display: 'inline-block', position: 'relative' }}
>
{props.children}
</motion.div>
)
}
const hoverAnimation = keyframes`
0% { transform: translateY(-4px); opacity: 0.5; }
50% { transform: translateY(4px); opacity: 1; }
100% { transform: translateY(-4px); opacity: 0.5; }
`

export const Hover = styled.div`
position: relative;
display: inline-block;
animation-name: ${hoverAnimation};
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
`

export function Wiggle({ ...props }) {
const variants = {
Expand Down

0 comments on commit 7e5fa89

Please sign in to comment.