ci(release): publish latest release

parent a4628152
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmXVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w` - CIDv0: `QmUBdzrLg5h8kHRC9XFen4a7RC23X23H5Bqo3489vw4Rpe`
- CIDv1: `bafybeieidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea` - CIDv1: `bafybeicw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...@@ -10,10 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,10 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs. Your Uniswap settings are never remembered across different URLs.
IPFS gateways: IPFS gateways:
- https://bafybeieidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea.ipfs.dweb.link/ - https://bafybeicw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um.ipfs.dweb.link/
- https://bafybeieidmvwvcchexlp33ze5o6465qj23rff2w6yjriyehazikji2ojea.ipfs.cf-ipfs.com/ - https://bafybeicw24lqwbfycignaoktl4b46e2bboqkbmu5hem2kjbxh7n5hbm2um.ipfs.cf-ipfs.com/
- [ipfs://QmXVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w/](ipfs://QmXVxBhofYSQo7Jxn46t9UxWwyRE4owjbGxuA3Bhtppt8w/) - [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
web/5.25.5 web/5.25.6
\ No newline at end of file \ No newline at end of file
import { motion } from 'framer-motion' import { motion } from 'framer-motion'
import styled, { css, keyframes } from 'styled-components' import styled, { css, keyframes } from 'styled-components'
type RiseInProps = {
delay?: number
children?: React.ReactNode
}
const riseInAnimation = keyframes` const riseInAnimation = keyframes`
0% { 0% {
opacity: 0; opacity: 0;
...@@ -41,24 +36,20 @@ export const RiseIn = styled.span<{ delay?: number }>` ...@@ -41,24 +36,20 @@ export const RiseIn = styled.span<{ delay?: number }>`
${RiseInStyles} ${RiseInStyles}
` `
export const Hover = (props: RiseInProps) => { const hoverAnimation = keyframes`
return ( 0% { transform: translateY(-4px); opacity: 0.5; }
<motion.div 50% { transform: translateY(4px); opacity: 1; }
animate={{ 100% { transform: translateY(-4px); opacity: 0.5; }
y: ['-4px', '4px', '-4px'], `
opacity: [0.5, 1, 0.5],
}} export const Hover = styled.div`
transition={{ position: relative;
duration: 2, display: inline-block;
repeat: Infinity, // repeat animation forever animation-name: ${hoverAnimation};
ease: 'easeInOut', animation-duration: 2s;
}} animation-iteration-count: infinite;
style={{ display: 'inline-block', position: 'relative' }} animation-timing-function: ease-in-out;
> `
{props.children}
</motion.div>
)
}
export function Wiggle({ ...props }) { export function Wiggle({ ...props }) {
const variants = { const variants = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment